@varunindiit/create-rn-starter 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +93 -0
  3. package/bin/index.js +270 -0
  4. package/lib/prompt.js +63 -0
  5. package/lib/rename.js +239 -0
  6. package/lib/scaffold.js +110 -0
  7. package/lib/utils.js +122 -0
  8. package/package.json +38 -0
  9. package/template/.eslintrc.js +4 -0
  10. package/template/.prettierrc.js +5 -0
  11. package/template/.watchmanconfig +1 -0
  12. package/template/App.tsx +100 -0
  13. package/template/Gemfile +17 -0
  14. package/template/README.md +97 -0
  15. package/template/__tests__/App.test.tsx +13 -0
  16. package/template/_gitignore +75 -0
  17. package/template/android/app/build.gradle +119 -0
  18. package/template/android/app/debug.keystore +0 -0
  19. package/template/android/app/proguard-rules.pro +10 -0
  20. package/template/android/app/src/main/AndroidManifest.xml +45 -0
  21. package/template/android/app/src/main/assets/fonts/MonaSans-Black.ttf +0 -0
  22. package/template/android/app/src/main/assets/fonts/MonaSans-BlackItalic.ttf +0 -0
  23. package/template/android/app/src/main/assets/fonts/MonaSans-Bold.ttf +0 -0
  24. package/template/android/app/src/main/assets/fonts/MonaSans-BoldItalic.ttf +0 -0
  25. package/template/android/app/src/main/assets/fonts/MonaSans-ExtraBold.ttf +0 -0
  26. package/template/android/app/src/main/assets/fonts/MonaSans-ExtraBoldItalic.ttf +0 -0
  27. package/template/android/app/src/main/assets/fonts/MonaSans-ExtraLight.ttf +0 -0
  28. package/template/android/app/src/main/assets/fonts/MonaSans-ExtraLightItalic.ttf +0 -0
  29. package/template/android/app/src/main/assets/fonts/MonaSans-Italic.ttf +0 -0
  30. package/template/android/app/src/main/assets/fonts/MonaSans-Light.ttf +0 -0
  31. package/template/android/app/src/main/assets/fonts/MonaSans-LightItalic.ttf +0 -0
  32. package/template/android/app/src/main/assets/fonts/MonaSans-Medium.ttf +0 -0
  33. package/template/android/app/src/main/assets/fonts/MonaSans-MediumItalic.ttf +0 -0
  34. package/template/android/app/src/main/assets/fonts/MonaSans-Regular.ttf +0 -0
  35. package/template/android/app/src/main/assets/fonts/MonaSans-SemiBold.ttf +0 -0
  36. package/template/android/app/src/main/assets/fonts/MonaSans-SemiBoldItalic.ttf +0 -0
  37. package/template/android/app/src/main/java/com/awesomeproject/MainActivity.kt +22 -0
  38. package/template/android/app/src/main/java/com/awesomeproject/MainApplication.kt +27 -0
  39. package/template/android/app/src/main/res/drawable/launch_screen.png +0 -0
  40. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  41. package/template/android/app/src/main/res/layout/launch_screen.xml +12 -0
  42. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  43. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  44. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  45. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  46. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  47. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  48. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  49. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  50. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  51. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  52. package/template/android/app/src/main/res/values/colors.xml +3 -0
  53. package/template/android/app/src/main/res/values/strings.xml +3 -0
  54. package/template/android/app/src/main/res/values/styles.xml +11 -0
  55. package/template/android/build.gradle +21 -0
  56. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  57. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  58. package/template/android/gradle.properties +44 -0
  59. package/template/android/gradlew +248 -0
  60. package/template/android/gradlew.bat +98 -0
  61. package/template/android/link-assets-manifest.json +69 -0
  62. package/template/android/settings.gradle +6 -0
  63. package/template/app.json +4 -0
  64. package/template/babel.config.js +4 -0
  65. package/template/declarations.d.ts +6 -0
  66. package/template/env.example +20 -0
  67. package/template/index.js +10 -0
  68. package/template/ios/.xcode.env +11 -0
  69. package/template/ios/.xcode.env.local +1 -0
  70. package/template/ios/AwesomeProject/AppDelegate.swift +60 -0
  71. package/template/ios/AwesomeProject/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  72. package/template/ios/AwesomeProject/Images.xcassets/Contents.json +6 -0
  73. package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Contents.json +23 -0
  74. package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@1x.png +0 -0
  75. package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@2x.png +0 -0
  76. package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@3x.png +0 -0
  77. package/template/ios/AwesomeProject/Info.plist +89 -0
  78. package/template/ios/AwesomeProject/LaunchScreen.storyboard +40 -0
  79. package/template/ios/AwesomeProject/PrivacyInfo.xcprivacy +38 -0
  80. package/template/ios/AwesomeProject.xcodeproj/project.pbxproj +576 -0
  81. package/template/ios/AwesomeProject.xcodeproj/xcshareddata/xcschemes/AwesomeProject.xcscheme +88 -0
  82. package/template/ios/AwesomeProject.xcworkspace/contents.xcworkspacedata +10 -0
  83. package/template/ios/Podfile +68 -0
  84. package/template/ios/link-assets-manifest.json +69 -0
  85. package/template/jest.config.js +3 -0
  86. package/template/metro.config.js +24 -0
  87. package/template/package.json +68 -0
  88. package/template/react-native.config.js +7 -0
  89. package/template/src/assets/fonts/MonaSans-Black.ttf +0 -0
  90. package/template/src/assets/fonts/MonaSans-BlackItalic.ttf +0 -0
  91. package/template/src/assets/fonts/MonaSans-Bold.ttf +0 -0
  92. package/template/src/assets/fonts/MonaSans-BoldItalic.ttf +0 -0
  93. package/template/src/assets/fonts/MonaSans-ExtraBold.ttf +0 -0
  94. package/template/src/assets/fonts/MonaSans-ExtraBoldItalic.ttf +0 -0
  95. package/template/src/assets/fonts/MonaSans-ExtraLight.ttf +0 -0
  96. package/template/src/assets/fonts/MonaSans-ExtraLightItalic.ttf +0 -0
  97. package/template/src/assets/fonts/MonaSans-Italic.ttf +0 -0
  98. package/template/src/assets/fonts/MonaSans-Light.ttf +0 -0
  99. package/template/src/assets/fonts/MonaSans-LightItalic.ttf +0 -0
  100. package/template/src/assets/fonts/MonaSans-Medium.ttf +0 -0
  101. package/template/src/assets/fonts/MonaSans-MediumItalic.ttf +0 -0
  102. package/template/src/assets/fonts/MonaSans-Regular.ttf +0 -0
  103. package/template/src/assets/fonts/MonaSans-SemiBold.ttf +0 -0
  104. package/template/src/assets/fonts/MonaSans-SemiBoldItalic.ttf +0 -0
  105. package/template/src/assets/image/BackGroundAuth.png +0 -0
  106. package/template/src/assets/image/BackgroundVerification.png +0 -0
  107. package/template/src/assets/image/logo.png +0 -0
  108. package/template/src/assets/svg/add-circle.svg +5 -0
  109. package/template/src/assets/svg/airConditioning.svg +12 -0
  110. package/template/src/assets/svg/apple.svg +3 -0
  111. package/template/src/assets/svg/arrowDown.svg +3 -0
  112. package/template/src/assets/svg/back.svg +10 -0
  113. package/template/src/assets/svg/bag.svg +11 -0
  114. package/template/src/assets/svg/calender.svg +5 -0
  115. package/template/src/assets/svg/car.svg +10 -0
  116. package/template/src/assets/svg/carConfirm.svg +60 -0
  117. package/template/src/assets/svg/chatActive.svg +3 -0
  118. package/template/src/assets/svg/chatUnActive.svg +3 -0
  119. package/template/src/assets/svg/document-text.svg +6 -0
  120. package/template/src/assets/svg/gender.svg +11 -0
  121. package/template/src/assets/svg/google.svg +6 -0
  122. package/template/src/assets/svg/headphone.svg +3 -0
  123. package/template/src/assets/svg/homeActive.svg +3 -0
  124. package/template/src/assets/svg/homeUnActive.svg +3 -0
  125. package/template/src/assets/svg/logo.svg +18 -0
  126. package/template/src/assets/svg/logout.svg +5 -0
  127. package/template/src/assets/svg/maxBack.svg +4 -0
  128. package/template/src/assets/svg/message-text.svg +7 -0
  129. package/template/src/assets/svg/music.svg +5 -0
  130. package/template/src/assets/svg/noSmoking.svg +10 -0
  131. package/template/src/assets/svg/notification.svg +5 -0
  132. package/template/src/assets/svg/passenger.svg +4 -0
  133. package/template/src/assets/svg/phone.svg +3 -0
  134. package/template/src/assets/svg/rightArrow.svg +3 -0
  135. package/template/src/assets/svg/security-user.svg +5 -0
  136. package/template/src/assets/svg/star.svg +3 -0
  137. package/template/src/assets/svg/tick-circle.svg +4 -0
  138. package/template/src/assets/svg/trafficLight.svg +41 -0
  139. package/template/src/assets/svg/tripActive.svg +10 -0
  140. package/template/src/assets/svg/tripUnActive.svg +10 -0
  141. package/template/src/assets/svg/usbChargers.svg +3 -0
  142. package/template/src/assets/svg/user.svg +4 -0
  143. package/template/src/assets/svg/userActive.svg +3 -0
  144. package/template/src/assets/svg/userPlaceholder.svg +3 -0
  145. package/template/src/assets/svg/userUnActive.svg +3 -0
  146. package/template/src/components/AuthLayout/AuthLayout.tsx +170 -0
  147. package/template/src/components/AuthLayout/index.ts +1 -0
  148. package/template/src/components/BottomSheet/BottomSheet.tsx +73 -0
  149. package/template/src/components/BottomSheet/BottomSheetAlert.tsx +100 -0
  150. package/template/src/components/BottomSheet/CenterAlert.tsx +153 -0
  151. package/template/src/components/BottomSheet/index.ts +2 -0
  152. package/template/src/components/BottomTabBar/index.tsx +145 -0
  153. package/template/src/components/Button/RNButton.tsx +152 -0
  154. package/template/src/components/Button/index.ts +2 -0
  155. package/template/src/components/Common/Avatar.tsx +80 -0
  156. package/template/src/components/Common/Card.tsx +49 -0
  157. package/template/src/components/Common/CardBrandLogo.tsx +66 -0
  158. package/template/src/components/Common/Checkbox.tsx +65 -0
  159. package/template/src/components/Common/Chip.tsx +79 -0
  160. package/template/src/components/Common/CommonStyles.tsx +594 -0
  161. package/template/src/components/Common/Divider.tsx +33 -0
  162. package/template/src/components/Common/DriverTripCard.tsx +308 -0
  163. package/template/src/components/Common/Dropdown.tsx +161 -0
  164. package/template/src/components/Common/EmptyState.tsx +52 -0
  165. package/template/src/components/Common/FAB.tsx +68 -0
  166. package/template/src/components/Common/HeaderLocation.tsx +108 -0
  167. package/template/src/components/Common/Loader.tsx +23 -0
  168. package/template/src/components/Common/RatingStars.tsx +103 -0
  169. package/template/src/components/Common/RouteDots.tsx +98 -0
  170. package/template/src/components/Common/SegmentedControl.tsx +126 -0
  171. package/template/src/components/Common/SosButton.tsx +80 -0
  172. package/template/src/components/Common/SosSheet.tsx +344 -0
  173. package/template/src/components/Common/StarRating.tsx +58 -0
  174. package/template/src/components/Common/StatusBadge.tsx +56 -0
  175. package/template/src/components/Common/Toggle.tsx +66 -0
  176. package/template/src/components/Common/TripCard.tsx +247 -0
  177. package/template/src/components/Common/UploadBox.tsx +106 -0
  178. package/template/src/components/Container/MainContainer.tsx +76 -0
  179. package/template/src/components/Container/index.ts +1 -0
  180. package/template/src/components/Header/index.tsx +143 -0
  181. package/template/src/components/Icon/SvgIcons.tsx +1991 -0
  182. package/template/src/components/ImagePickerSheet/ImagePickerSheet.tsx +233 -0
  183. package/template/src/components/ImagePickerSheet/index.ts +2 -0
  184. package/template/src/components/Input/CountryDropdown.tsx +71 -0
  185. package/template/src/components/Input/OtpInput.tsx +117 -0
  186. package/template/src/components/Input/RNInput.tsx +138 -0
  187. package/template/src/components/Input/index.ts +4 -0
  188. package/template/src/components/Picker/DatePickerSheet.tsx +393 -0
  189. package/template/src/components/Picker/PassengerPickerSheet.tsx +237 -0
  190. package/template/src/components/Text/RNText.tsx +62 -0
  191. package/template/src/components/Text/index.ts +1 -0
  192. package/template/src/components/index.ts +44 -0
  193. package/template/src/hooks/useCurrentLocation.ts +72 -0
  194. package/template/src/localization/i18n.ts +29 -0
  195. package/template/src/localization/i18next.d.ts +11 -0
  196. package/template/src/localization/index.ts +4 -0
  197. package/template/src/localization/languageStorage.ts +27 -0
  198. package/template/src/localization/languages.ts +62 -0
  199. package/template/src/localization/resources/en.ts +703 -0
  200. package/template/src/localization/resources/fr.ts +703 -0
  201. package/template/src/localization/useLanguage.ts +42 -0
  202. package/template/src/navigation/AuthNavigation.tsx +23 -0
  203. package/template/src/navigation/BottomTabs.tsx +24 -0
  204. package/template/src/navigation/RootNavigation.tsx +27 -0
  205. package/template/src/navigation/RouteKey.ts +22 -0
  206. package/template/src/navigation/StackNavigation.tsx +52 -0
  207. package/template/src/navigation/paramLists.ts +25 -0
  208. package/template/src/redux/slice/app.ts +66 -0
  209. package/template/src/redux/slice/auth.ts +40 -0
  210. package/template/src/redux/slice/userProfile.ts +124 -0
  211. package/template/src/redux/store.ts +17 -0
  212. package/template/src/screen/auth/Login.tsx +69 -0
  213. package/template/src/screen/onboarding/LanguageSelection.tsx +231 -0
  214. package/template/src/screen/root/home/index.tsx +36 -0
  215. package/template/src/screen/root/profile/index.tsx +69 -0
  216. package/template/src/screen/shared/Chat.tsx +308 -0
  217. package/template/src/screen/shared/EditProfile.tsx +407 -0
  218. package/template/src/screen/shared/HelpSupport.tsx +678 -0
  219. package/template/src/screen/shared/LocationSearch.tsx +362 -0
  220. package/template/src/screen/shared/Messages.tsx +115 -0
  221. package/template/src/screen/shared/Notifications.tsx +86 -0
  222. package/template/src/screen/shared/PrivacyPolicy.tsx +297 -0
  223. package/template/src/screen/shared/Profile.tsx +118 -0
  224. package/template/src/screen/shared/Ratings.tsx +170 -0
  225. package/template/src/screen/shared/TermsConditions.tsx +315 -0
  226. package/template/src/screen/shared/profile/DriverProfile.tsx +262 -0
  227. package/template/src/screen/shared/profile/PassengerProfile.tsx +123 -0
  228. package/template/src/screen/shared/profile/ProfileParts.tsx +219 -0
  229. package/template/src/services/Config.ts +37 -0
  230. package/template/src/services/api.ts +37 -0
  231. package/template/src/services/index.ts +4 -0
  232. package/template/src/services/places.ts +320 -0
  233. package/template/src/services/storage.ts +33 -0
  234. package/template/src/theme/fonts.ts +30 -0
  235. package/template/src/theme/index.ts +3 -0
  236. package/template/src/theme/spacing.ts +66 -0
  237. package/template/src/theme/theme.ts +58 -0
  238. package/template/src/types/env.d.ts +8 -0
  239. package/template/src/types/index.ts +3 -0
  240. package/template/src/utils/card.ts +101 -0
  241. package/template/src/utils/constants.ts +39 -0
  242. package/template/src/utils/functions.ts +24 -0
  243. package/template/tsconfig.json +8 -0
@@ -0,0 +1,68 @@
1
+ # Resolve react_native_pods.rb with node to allow for hoisting
2
+ # Transform this into a `node_require` generic function:
3
+ def node_require(script)
4
+ # Resolve script with node to allow for hoisting
5
+ require Pod::Executable.execute_command('node', ['-p',
6
+ "require.resolve(
7
+ '#{script}',
8
+ {paths: [process.argv[1]]},
9
+ )", __dir__]).strip
10
+ end
11
+
12
+ # Use it to require both react-native's and this package's scripts:
13
+ node_require('react-native/scripts/react_native_pods.rb')
14
+ node_require('react-native-permissions/scripts/setup.rb')
15
+
16
+ platform :ios, min_ios_version_supported
17
+ prepare_react_native_project!
18
+
19
+ # Uncomment the permissions you need
20
+ setup_permissions([
21
+ # 'AppTrackingTransparency',
22
+ # 'Bluetooth',
23
+ # 'Calendars',
24
+ # 'CalendarsWriteOnly',
25
+ 'Camera',
26
+ # 'Contacts',
27
+ # 'FaceID',
28
+ # 'LocationAccuracy',
29
+ # 'LocationAlways',
30
+ # 'LocationWhenInUse',
31
+ 'MediaLibrary',
32
+ # 'Microphone',
33
+ # 'Motion',
34
+ 'Notifications',
35
+ 'PhotoLibrary',
36
+ 'PhotoLibraryAddOnly',
37
+ # 'Reminders',
38
+ # 'Siri',
39
+ # 'SpeechRecognition',
40
+ # 'StoreKit',
41
+ ])
42
+
43
+ linkage = ENV['USE_FRAMEWORKS']
44
+ if linkage != nil
45
+ Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
46
+ use_frameworks! :linkage => linkage.to_sym
47
+ end
48
+
49
+ target 'AwesomeProject' do
50
+ config = use_native_modules!
51
+
52
+ use_react_native!(
53
+ :path => config[:reactNativePath],
54
+ # An absolute path to your application root.
55
+ :app_path => "#{Pod::Config.instance.installation_root}/..",
56
+ # ✅ ADD THIS (IMPORTANT)
57
+ :fabric_enabled => true
58
+ )
59
+
60
+ post_install do |installer|
61
+ react_native_post_install(
62
+ installer,
63
+ config[:reactNativePath],
64
+ :mac_catalyst_enabled => false,
65
+ # :ccache_enabled => true
66
+ )
67
+ end
68
+ end
@@ -0,0 +1,69 @@
1
+ {
2
+ "migIndex": 1,
3
+ "data": [
4
+ {
5
+ "path": "src/assets/fonts/MonaSans-Black.ttf",
6
+ "sha1": "75f7e1e1e069f539547a458418899df6652b1d2a"
7
+ },
8
+ {
9
+ "path": "src/assets/fonts/MonaSans-BlackItalic.ttf",
10
+ "sha1": "0a3684b5f269299ebcbf9070e99653722e8857c3"
11
+ },
12
+ {
13
+ "path": "src/assets/fonts/MonaSans-Bold.ttf",
14
+ "sha1": "c3b9802dcf48ac9ab8ce2bbf018797f90a6a04c0"
15
+ },
16
+ {
17
+ "path": "src/assets/fonts/MonaSans-BoldItalic.ttf",
18
+ "sha1": "9998bd29ee75d2444ce833f012241fe7192a48c3"
19
+ },
20
+ {
21
+ "path": "src/assets/fonts/MonaSans-ExtraBold.ttf",
22
+ "sha1": "9889945de5431204797518e2b47f3f9943e05ebb"
23
+ },
24
+ {
25
+ "path": "src/assets/fonts/MonaSans-ExtraBoldItalic.ttf",
26
+ "sha1": "a863a42f0a6b8d4027a225baa54586772ef94bb2"
27
+ },
28
+ {
29
+ "path": "src/assets/fonts/MonaSans-ExtraLight.ttf",
30
+ "sha1": "99954aad1238d2a30c901d037d73740097c32096"
31
+ },
32
+ {
33
+ "path": "src/assets/fonts/MonaSans-ExtraLightItalic.ttf",
34
+ "sha1": "e1eff64be2f4674f23f58a9c7d89b91532d995bd"
35
+ },
36
+ {
37
+ "path": "src/assets/fonts/MonaSans-Italic.ttf",
38
+ "sha1": "5d402013548b1f43fee563491c369e2972a5e734"
39
+ },
40
+ {
41
+ "path": "src/assets/fonts/MonaSans-Light.ttf",
42
+ "sha1": "3bee5ba8f953424e6fa113960b904873b31f4de3"
43
+ },
44
+ {
45
+ "path": "src/assets/fonts/MonaSans-LightItalic.ttf",
46
+ "sha1": "9b2b721296a76441cac29faa419a7d531deb0657"
47
+ },
48
+ {
49
+ "path": "src/assets/fonts/MonaSans-Medium.ttf",
50
+ "sha1": "ccd209ca1e4237925f3e4a6b0cf37391958add54"
51
+ },
52
+ {
53
+ "path": "src/assets/fonts/MonaSans-MediumItalic.ttf",
54
+ "sha1": "f342c671e70e118a4e7a3102e574751e8061ba92"
55
+ },
56
+ {
57
+ "path": "src/assets/fonts/MonaSans-Regular.ttf",
58
+ "sha1": "5f4faf0a2f9a7deb46f46bf3381f8ff13f743b6c"
59
+ },
60
+ {
61
+ "path": "src/assets/fonts/MonaSans-SemiBold.ttf",
62
+ "sha1": "95a5be61d20315481ea8fa4429a30a8bbc48b1eb"
63
+ },
64
+ {
65
+ "path": "src/assets/fonts/MonaSans-SemiBoldItalic.ttf",
66
+ "sha1": "f88bc31eb1fb170654aea9375d05eb996cb7f085"
67
+ }
68
+ ]
69
+ }
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ preset: '@react-native/jest-preset',
3
+ };
@@ -0,0 +1,24 @@
1
+ const { getDefaultConfig, mergeConfig } = require("@react-native/metro-config");
2
+
3
+ const defaultConfig = getDefaultConfig(__dirname);
4
+
5
+ /**
6
+ * Metro configuration
7
+ * https://reactnative.dev/docs/metro
8
+ * SVG support via react-native-svg-transformer
9
+ *
10
+ * @type {import('@react-native/metro-config').MetroConfig}
11
+ */
12
+ const config = {
13
+ transformer: {
14
+ ...defaultConfig.transformer,
15
+ babelTransformerPath: require.resolve("react-native-svg-transformer"),
16
+ },
17
+ resolver: {
18
+ ...defaultConfig.resolver,
19
+ assetExts: defaultConfig.resolver.assetExts.filter((ext) => ext !== "svg"),
20
+ sourceExts: [...defaultConfig.resolver.sourceExts, "svg"],
21
+ },
22
+ };
23
+
24
+ module.exports = mergeConfig(defaultConfig, config);
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "AwesomeProject",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "scripts": {
6
+ "android": "react-native run-android",
7
+ "ios": "react-native run-ios",
8
+ "lint": "eslint .",
9
+ "start": "react-native start",
10
+ "test": "jest"
11
+ },
12
+ "dependencies": {
13
+ "@react-native/new-app-screen": "0.85.3",
14
+ "@react-navigation/bottom-tabs": "7.16.2",
15
+ "@react-navigation/native": "7.2.5",
16
+ "@react-navigation/native-stack": "7.16.0",
17
+ "@reduxjs/toolkit": "2.12.0",
18
+ "axios": "1.16.1",
19
+ "i18next": "23.16.8",
20
+ "moment": "2.30.1",
21
+ "react": "19.2.3",
22
+ "react-i18next": "14.1.3",
23
+ "react-native": "0.85.3",
24
+ "react-native-flash-message": "0.4.2",
25
+ "react-native-gesture-handler": "2.31.2",
26
+ "react-native-get-location": "6.0.1",
27
+ "react-native-image-crop-picker": "0.51.1",
28
+ "react-native-keyboard-controller": "1.21.5",
29
+ "react-native-linear-gradient": "2.8.3",
30
+ "react-native-mmkv": "4.3.1",
31
+ "react-native-nitro-modules": "0.35.7",
32
+ "react-native-permissions": "^5.5.2",
33
+ "react-native-reanimated": "4.3.1",
34
+ "react-native-reanimated-modal": "1.2.5",
35
+ "react-native-safe-area-context": "5.8.0",
36
+ "react-native-screens": "4.25.2",
37
+ "react-native-size-matters": "0.4.2",
38
+ "react-native-splash-view": "0.0.21",
39
+ "react-native-svg": "15.15.5",
40
+ "react-native-worklets": "0.8.3",
41
+ "react-redux": "9.3.0"
42
+ },
43
+ "devDependencies": {
44
+ "@babel/core": "^7.25.2",
45
+ "@babel/preset-env": "^7.25.3",
46
+ "@babel/runtime": "^7.25.0",
47
+ "@react-native-community/cli": "20.1.0",
48
+ "@react-native-community/cli-platform-android": "20.1.0",
49
+ "@react-native-community/cli-platform-ios": "20.1.0",
50
+ "@react-native/babel-preset": "0.85.3",
51
+ "@react-native/eslint-config": "0.85.3",
52
+ "@react-native/jest-preset": "0.85.3",
53
+ "@react-native/metro-config": "0.85.3",
54
+ "@react-native/typescript-config": "0.85.3",
55
+ "@types/jest": "^29.5.13",
56
+ "@types/react": "^19.2.0",
57
+ "@types/react-test-renderer": "^19.1.0",
58
+ "eslint": "^8.19.0",
59
+ "jest": "^29.6.3",
60
+ "prettier": "2.8.8",
61
+ "react-native-svg-transformer": "^1.5.3",
62
+ "react-test-renderer": "19.2.3",
63
+ "typescript": "^5.8.3"
64
+ },
65
+ "engines": {
66
+ "node": ">= 22.11.0"
67
+ }
68
+ }
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ project: {
3
+ ios: {},
4
+ android: {},
5
+ },
6
+ assets: ['./src/assets/fonts'],
7
+ };
@@ -0,0 +1,5 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.5 9C16.5 4.875 13.125 1.5 9 1.5C4.875 1.5 1.5 4.875 1.5 9C1.5 13.125 4.875 16.5 9 16.5C13.125 16.5 16.5 13.125 16.5 9Z" stroke="#E87C3E" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6 9H12" stroke="#E87C3E" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M9 12V6" stroke="#E87C3E" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_136_1788)">
3
+ <path d="M6.66667 13.3334L5.83333 11.6667L4 12.0001M6.66667 2.66675L5.83333 4.33341L4 4.00008M9.33333 13.3334L10.1667 11.6667L12 12.0001M9.33333 2.66675L10.1667 4.33341L12 4.00008" stroke="#C4521A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.3334 14L9.33337 10H6.66671M11.3334 2L9.33337 6L10.3334 8M1.33337 8H5.66671L6.66671 6M13.3334 6.66667L12.3334 8L13.3334 9.33333" stroke="#C4521A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M14.6666 8H10.3333L9.33329 10M2.66663 6.66667L3.66663 8L2.66663 9.33333M4.66663 14L6.66663 10L5.66663 8M4.66663 2L6.66663 6H9.33329" stroke="#C4521A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_136_1788">
9
+ <rect width="16" height="16" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M24.437 11.8217C24.3388 11.8774 22.0005 13.0531 22.0005 15.6598C22.1107 18.6326 24.9513 19.6752 25 19.6752C24.9513 19.7309 24.5712 21.0954 23.4452 22.5257C22.5515 23.7578 21.5597 25 20.0536 25C18.6209 25 18.1066 24.1788 16.4536 24.1788C14.6783 24.1788 14.176 25 12.8168 25C11.3107 25 10.2454 23.6912 9.30307 22.4707C8.07884 20.8732 7.03829 18.3664 7.00155 15.9593C6.97679 14.6838 7.24672 13.43 7.9319 12.3651C8.89898 10.8783 10.6255 9.86905 12.511 9.83577C13.9556 9.79164 15.2413 10.7343 16.123 10.7343C16.9679 10.7343 18.5475 9.83577 20.3347 9.83577C21.1061 9.83649 23.1633 10.047 24.437 11.8217ZM16.0008 9.5811C15.7436 8.41629 16.4536 7.25148 17.1148 6.50846C17.9597 5.6099 19.2941 5 20.4449 5C20.5184 6.16481 20.0528 7.30719 19.2207 8.1392C18.474 9.03777 17.1883 9.71422 16.0008 9.5811Z" fill="black"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.83334 8.33337L10 12.5L14.1667 8.33337" stroke="#2C1A0E" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_156_12562)">
3
+ <path d="M18.3333 9.16669H3.67832L8.08915 4.75586C8.16874 4.67899 8.23223 4.58703 8.2759 4.48536C8.31958 4.38369 8.34257 4.27434 8.34353 4.16369C8.34449 4.05305 8.3234 3.94331 8.2815 3.8409C8.2396 3.73848 8.17772 3.64544 8.09948 3.5672C8.02124 3.48895 7.92819 3.42708 7.82578 3.38518C7.72337 3.34327 7.61363 3.32219 7.50298 3.32315C7.39233 3.32411 7.28298 3.3471 7.18131 3.39078C7.07964 3.43445 6.98769 3.49794 6.91082 3.57753L1.07748 9.41086C0.921259 9.56713 0.833496 9.77906 0.833496 10C0.833496 10.221 0.921259 10.4329 1.07748 10.5892L6.91082 16.4225C7.06799 16.5743 7.27849 16.6583 7.49699 16.6564C7.71548 16.6545 7.92449 16.5669 8.079 16.4124C8.23351 16.2579 8.32115 16.0489 8.32305 15.8304C8.32495 15.6119 8.24095 15.4014 8.08915 15.2442L3.67832 10.8334H18.3333C18.5543 10.8334 18.7663 10.7456 18.9226 10.5893C19.0789 10.433 19.1667 10.221 19.1667 10C19.1667 9.77901 19.0789 9.56705 18.9226 9.41077C18.7663 9.25449 18.5543 9.16669 18.3333 9.16669Z" fill="black"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_156_12562">
7
+ <rect width="20" height="20" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_136_1757)">
3
+ <path d="M10.6667 13.3333V2.66659C10.6667 1.9307 10.0693 1.33325 9.33337 1.33325H6.66671C5.93082 1.33325 5.33337 1.9307 5.33337 2.66659V13.3333" stroke="#C4521A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2.66671 4H13.3334C14.0693 4 14.6667 4.59745 14.6667 5.33333V12C14.6667 12.7359 14.0693 13.3333 13.3334 13.3333H2.66671C1.93082 13.3333 1.33337 12.7359 1.33337 12V5.33333C1.33337 4.59745 1.93082 4 2.66671 4V4" stroke="#C4521A" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_136_1757">
8
+ <rect width="16" height="16" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 1.5V4.5M12 1.5V4.5" stroke="#E87C3E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M3.75 3H14.25C15.0779 3 15.75 3.67213 15.75 4.5V15C15.75 15.8279 15.0779 16.5 14.25 16.5H3.75C2.92213 16.5 2.25 15.8279 2.25 15V4.5C2.25 3.67213 2.92213 3 3.75 3V3" stroke="#E87C3E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2.25 7.5H15.75" stroke="#E87C3E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.3675 2.12256C4.5 2.12256 4.0875 3.05256 3.8475 4.19256L3 8.25006H15L14.1525 4.19256C13.9125 3.05256 13.5 2.12256 11.6325 2.12256H6.3675Z" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.97 16.5H13.56C12.75 16.5 12.6375 16.155 12.495 15.7275L12.345 15.2775C12.135 14.6625 12 14.25 10.92 14.25H7.07998C5.99998 14.25 5.84248 14.715 5.65498 15.2775L5.50499 15.7275C5.36249 16.155 5.24999 16.5 4.43999 16.5H3.02999C2.12999 16.5 1.42499 15.7425 1.50749 14.865L1.92749 10.2975C2.03249 9.1725 2.24999 8.25 4.21499 8.25H13.785C15.75 8.25 15.9675 9.1725 16.0725 10.2975L16.4925 14.865C16.575 15.7425 15.87 16.5 14.97 16.5Z" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M3 6H2.25" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M15.75 6H15" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M9 2.25V3.75" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M7.875 3.75H10.125" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M4.5 11.25H6.75" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M11.25 11.25H13.5" stroke="#FF8944" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,60 @@
1
+ <svg width="248" height="88" viewBox="0 0 248 88" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M123.677 87.9185C191.982 87.9185 247.354 86.5359 247.354 84.8305C247.354 83.125 191.982 81.7424 123.677 81.7424C55.3721 81.7424 0 83.125 0 84.8305C0 86.5359 55.3721 87.9185 123.677 87.9185Z" fill="#FDE8D8"/>
3
+ <path d="M105.352 84.1952C113.891 84.1952 120.813 75.2369 120.813 64.1861C120.813 53.1354 113.891 44.177 105.352 44.177C96.8125 44.177 89.8901 53.1354 89.8901 64.1861C89.8901 75.2369 96.8125 84.1952 105.352 84.1952Z" fill="black"/>
4
+ <path d="M114.05 84.1952H105.352L96.4602 75.3037L105.352 44.177H114.05V84.1952Z" fill="black"/>
5
+ <path d="M114.049 84.1952C122.589 84.1952 129.511 75.2369 129.511 64.1861C129.511 53.1354 122.589 44.177 114.049 44.177C105.51 44.177 98.5879 53.1354 98.5879 64.1861C98.5879 75.2369 105.51 84.1952 114.049 84.1952Z" fill="#2C1A0E"/>
6
+ <path d="M115.118 73.8875C119.241 73.8875 122.583 69.3554 122.583 63.7648C122.583 58.1742 119.241 53.6421 115.118 53.6421C110.996 53.6421 107.654 58.1742 107.654 63.7648C107.654 69.3554 110.996 73.8875 115.118 73.8875Z" fill="black"/>
7
+ <mask id="mask0_145_1104" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="107" y="53" width="16" height="21">
8
+ <path d="M115.118 73.8875C119.241 73.8875 122.583 69.3554 122.583 63.7648C122.583 58.1742 119.241 53.6421 115.118 53.6421C110.996 53.6421 107.654 58.1742 107.654 63.7648C107.654 69.3554 110.996 73.8875 115.118 73.8875Z" fill="white"/>
9
+ </mask>
10
+ <g mask="url(#mask0_145_1104)">
11
+ <path d="M111.643 73.8875C115.765 73.8875 119.107 69.3554 119.107 63.7648C119.107 58.1742 115.765 53.6421 111.643 53.6421C107.52 53.6421 104.178 58.1742 104.178 63.7648C104.178 69.3554 107.52 73.8875 111.643 73.8875Z" fill="white"/>
12
+ </g>
13
+ <path d="M53.6525 44.177H44.9547C36.4157 44.177 29.4932 53.1355 29.4932 64.1861C29.4932 75.2367 36.4157 84.1952 44.9547 84.1952H53.6525C62.1915 84.1952 69.1141 75.2367 69.1141 64.1861C69.1137 53.1352 62.1915 44.177 53.6525 44.177Z" fill="black"/>
14
+ <path d="M206.365 84.1952C214.904 84.1952 221.826 75.2369 221.826 64.1861C221.826 53.1354 214.904 44.177 206.365 44.177C197.825 44.177 190.903 53.1354 190.903 64.1861C190.903 75.2369 197.825 84.1952 206.365 84.1952Z" fill="black"/>
15
+ <path d="M215.062 84.1952H206.365L197.473 75.3037L206.365 44.177H215.062V84.1952Z" fill="black"/>
16
+ <path d="M215.062 84.1952C223.602 84.1952 230.524 75.2369 230.524 64.1861C230.524 53.1354 223.602 44.177 215.062 44.177C206.523 44.177 199.601 53.1354 199.601 64.1861C199.601 75.2369 206.523 84.1952 215.062 84.1952Z" fill="#2C1A0E"/>
17
+ <path d="M216.131 73.8875C220.254 73.8875 223.596 69.3554 223.596 63.7648C223.596 58.1742 220.254 53.6421 216.131 53.6421C212.009 53.6421 208.667 58.1742 208.667 63.7648C208.667 69.3554 212.009 73.8875 216.131 73.8875Z" fill="black"/>
18
+ <mask id="mask1_145_1104" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="208" y="53" width="16" height="21">
19
+ <path d="M216.131 73.8875C220.254 73.8875 223.596 69.3554 223.596 63.7648C223.596 58.1742 220.254 53.6421 216.131 53.6421C212.009 53.6421 208.667 58.1742 208.667 63.7648C208.667 69.3554 212.009 73.8875 216.131 73.8875Z" fill="white"/>
20
+ </mask>
21
+ <g mask="url(#mask1_145_1104)">
22
+ <path d="M212.656 73.8875C216.778 73.8875 220.12 69.3554 220.12 63.7648C220.12 58.1742 216.778 53.6421 212.656 53.6421C208.533 53.6421 205.191 58.1742 205.191 63.7648C205.191 69.3554 208.533 73.8875 212.656 73.8875Z" fill="white"/>
23
+ </g>
24
+ <path d="M154.781 43.7556H146.084C137.545 43.7556 130.622 52.7141 130.622 63.7647C130.622 74.8153 137.545 83.7739 146.084 83.7739H154.781C163.32 83.7739 170.243 74.8153 170.243 63.7647C170.243 52.7138 163.321 43.7556 154.781 43.7556Z" fill="black"/>
25
+ <path d="M103.532 0.188477H182.427C185.711 0.188556 188.939 1.04769 191.789 2.68066L222.819 28.5879L222.871 28.6309L222.938 28.6318L227.052 28.668C230.198 28.6958 233.264 30.0246 235.175 32.5049C236.521 34.2527 237.298 36.4158 237.298 38.8145V57.6748L232.118 66.2012C231.929 66.5118 231.592 66.7012 231.228 66.7012C230.646 66.7012 230.179 66.2293 230.188 65.6475C230.224 63.288 230.029 57.9753 227.895 53.2461C226.827 50.8791 225.271 48.6508 223.008 47.0146C220.742 45.3772 217.781 44.3409 213.92 44.3408C209.881 44.3408 206.721 45.5175 204.253 47.4199C201.787 49.3202 200.02 51.9366 198.749 54.8037C196.208 60.5338 195.628 67.3015 195.417 71.4678C195.352 72.7402 194.314 73.7324 193.042 73.7324C182.885 73.732 144.145 73.7324 132.553 73.7324C130.903 73.7324 129.592 72.3879 129.641 70.7393C129.756 66.9182 129.575 60.3112 127.493 54.6533C126.451 51.8228 124.93 49.2181 122.721 47.3203C120.509 45.4195 117.618 44.2373 113.858 44.2373C106.156 44.2374 101.552 48.0536 98.8445 53.0332C96.1442 57.9996 95.3289 64.1216 95.1707 68.7695C95.0766 71.534 92.8365 73.7324 90.074 73.7324H14.6931C11.7316 73.7324 9.33081 71.3317 9.33081 68.3701V51.373C9.33081 42.5661 15.3718 34.908 23.9373 32.8594L59.6062 26.8398L59.6482 26.833L59.6824 26.8096L95.5261 1.95605L96.2322 1.66016C98.5431 0.688553 101.025 0.188477 103.532 0.188477Z" fill="#E87C3E" stroke="#2C1A0E" stroke-width="0.376267"/>
26
+ <mask id="mask2_145_1104" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="9" y="0" width="229" height="74">
27
+ <path d="M103.532 0.188477H182.427C185.711 0.188556 188.939 1.04769 191.789 2.68066L222.819 28.5879L222.871 28.6309L222.938 28.6318L227.052 28.668C230.198 28.6958 233.264 30.0246 235.175 32.5049C236.521 34.2527 237.298 36.4158 237.298 38.8145V57.6748L232.118 66.2012C231.929 66.5118 231.592 66.7012 231.228 66.7012C230.646 66.7012 230.179 66.2293 230.188 65.6475C230.224 63.288 230.029 57.9753 227.895 53.2461C226.827 50.8791 225.271 48.6508 223.008 47.0146C220.742 45.3772 217.781 44.3409 213.92 44.3408C209.881 44.3408 206.721 45.5175 204.253 47.4199C201.787 49.3202 200.02 51.9366 198.749 54.8037C196.208 60.5338 195.628 67.3015 195.417 71.4678C195.352 72.7402 194.314 73.7324 193.042 73.7324C182.885 73.732 144.145 73.7324 132.553 73.7324C130.903 73.7324 129.592 72.3879 129.641 70.7393C129.756 66.9182 129.575 60.3112 127.493 54.6533C126.451 51.8228 124.93 49.2181 122.721 47.3203C120.509 45.4195 117.618 44.2373 113.858 44.2373C106.156 44.2374 101.552 48.0536 98.8445 53.0332C96.1442 57.9996 95.3289 64.1216 95.1707 68.7695C95.0766 71.534 92.8365 73.7324 90.074 73.7324H14.6931C11.7316 73.7324 9.33081 71.3317 9.33081 68.3701V51.373C9.33081 42.5661 15.3718 34.908 23.9373 32.8594L59.6062 26.8398L59.6482 26.833L59.6824 26.8096L95.5261 1.95605L96.2322 1.66016C98.5431 0.688553 101.025 0.188477 103.532 0.188477Z" fill="white" stroke="white" stroke-width="0.376267"/>
28
+ </mask>
29
+ <g mask="url(#mask2_145_1104)">
30
+ <path d="M114.285 26.6023L103.858 31.5779C97.6757 34.5278 90.9125 36.0593 84.0627 36.0593H13.8625C15.9031 34.4073 19.0997 32.9996 22.8079 31.8152C26.7531 30.5551 31.254 29.5548 35.5042 28.782C39.7532 28.0093 43.748 27.4641 46.6809 27.1121C48.1472 26.936 49.348 26.8081 50.1819 26.7244C50.5985 26.6825 50.9239 26.652 51.1448 26.6316C51.2552 26.6214 51.34 26.6141 51.3967 26.6091C51.4251 26.6066 51.4469 26.6045 51.4612 26.6033C51.4641 26.603 51.4667 26.6025 51.469 26.6023H114.285Z" fill="#E87C3E" stroke="#2C1A0E" stroke-width="0.376267"/>
31
+ </g>
32
+ <mask id="mask3_145_1104" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="9" y="0" width="229" height="74">
33
+ <path d="M103.532 0.188477H182.427C185.711 0.188556 188.939 1.04769 191.789 2.68066L222.819 28.5879L222.871 28.6309L222.938 28.6318L227.052 28.668C230.198 28.6958 233.264 30.0246 235.175 32.5049C236.521 34.2527 237.298 36.4158 237.298 38.8145V57.6748L232.118 66.2012C231.929 66.5118 231.592 66.7012 231.228 66.7012C230.646 66.7012 230.179 66.2293 230.188 65.6475C230.224 63.288 230.029 57.9753 227.895 53.2461C226.827 50.8791 225.271 48.6508 223.008 47.0146C220.742 45.3772 217.781 44.3409 213.92 44.3408C209.881 44.3408 206.721 45.5175 204.253 47.4199C201.787 49.3202 200.02 51.9366 198.749 54.8037C196.208 60.5338 195.628 67.3015 195.417 71.4678C195.352 72.7402 194.314 73.7324 193.042 73.7324C182.885 73.732 144.145 73.7324 132.553 73.7324C130.903 73.7324 129.592 72.3879 129.641 70.7393C129.756 66.9182 129.575 60.3112 127.493 54.6533C126.451 51.8228 124.93 49.2181 122.721 47.3203C120.509 45.4195 117.618 44.2373 113.858 44.2373C106.156 44.2374 101.552 48.0536 98.8445 53.0332C96.1442 57.9996 95.3289 64.1216 95.1707 68.7695C95.0766 71.534 92.8365 73.7324 90.074 73.7324H14.6931C11.7316 73.7324 9.33081 71.3317 9.33081 68.3701V51.373C9.33081 42.5661 15.3718 34.908 23.9373 32.8594L59.6062 26.8398L59.6482 26.833L59.6824 26.8096L95.5261 1.95605L96.2322 1.66016C98.5431 0.688553 101.025 0.188477 103.532 0.188477Z" fill="white" stroke="white" stroke-width="0.376267"/>
34
+ </mask>
35
+ <g mask="url(#mask3_145_1104)">
36
+ <path d="M235.381 32.6074C238.377 33.583 240.124 34.9681 241.075 36.4824C242.037 38.0163 242.199 39.7074 241.979 41.293C241.759 42.8801 241.157 44.3516 240.607 45.4297C240.332 45.9679 240.072 46.4068 239.88 46.71C239.794 46.8468 239.72 46.9548 239.667 47.0332L234.28 43.665C231.389 41.8581 230.796 37.8968 233.029 35.3213L235.381 32.6074Z" fill="white" stroke="#2C1A0E" stroke-width="0.376267"/>
37
+ </g>
38
+ <path d="M96.1265 61.3618V69.4155C96.1262 71.7816 94.2084 73.6997 91.8423 73.6997H12.4517C9.33376 73.6995 6.80615 71.1711 6.80615 68.0532V61.3618H96.1265Z" fill="#2C1A0E" stroke="#2C1A0E" stroke-width="0.376267"/>
39
+ <path d="M42.1848 61.3618V67.3423H24.259V61.3618H42.1848Z" fill="white" stroke="#2C1A0E" stroke-width="0.376267"/>
40
+ <path d="M53.7354 39.3354H76.708C77.8422 39.3357 78.7617 40.2552 78.7617 41.3892V48.4077C78.7619 49.5419 77.8422 50.4614 76.708 50.4614H51.6582C50.303 50.4613 49.3186 49.1708 49.6768 47.8638L51.7539 40.8491L51.7549 40.8462C51.9996 39.9538 52.8102 39.3355 53.7354 39.3354Z" fill="#2C1A0E" stroke="#2C1A0E" stroke-width="0.376267"/>
41
+ <path d="M21.0613 39.3879C22.2394 39.388 23.2322 40.4726 23.2322 41.8586V47.4006C23.2322 48.7867 22.2394 49.8712 21.0613 49.8713H9.36011C9.83779 46.567 10.89 43.9469 11.8328 42.1438C12.3143 41.2229 12.7663 40.5146 13.0974 40.0383C13.2629 39.8003 13.3986 39.6205 13.4919 39.5002C13.5282 39.4535 13.5588 39.4164 13.5818 39.3879H21.0613Z" fill="#2C1A0E" stroke="#2C1A0E" stroke-width="0.376267"/>
42
+ <path d="M21.1777 39.7551H53.7357" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
43
+ <path d="M21.1777 42.0955H53.7357" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
44
+ <path d="M21.1777 44.4355H53.7357" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
45
+ <path d="M21.1777 46.7759H53.7357" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
46
+ <path d="M21.1777 49.1453H53.7357" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
47
+ <path d="M53.7358 39.3879H74.4653C75.5997 39.3879 76.52 40.3073 76.52 41.4417V46.1155C76.5199 47.2498 75.5996 48.1692 74.4653 48.1692H52.4546C51.0993 48.1692 50.1157 46.8795 50.4741 45.5725L51.7554 40.8987C52.0001 40.0062 52.8107 39.3879 53.7358 39.3879Z" fill="white" stroke="#2C1A0E" stroke-width="0.376267"/>
48
+ <path d="M21.1782 39.3879C22.3124 39.3882 23.2319 40.3074 23.2319 41.4417V46.1155C23.2319 47.2495 22.3126 48.1691 21.1782 48.1692H9.6001C10.0554 45.4064 11.0438 43.2144 11.9292 41.7034C12.3834 40.9283 12.8095 40.3327 13.1216 39.9319C13.2776 39.7315 13.4057 39.5798 13.4937 39.4788C13.5261 39.4414 13.5536 39.4113 13.5747 39.3879H21.1782Z" fill="white" stroke="#2C1A0E" stroke-width="0.376267"/>
49
+ <path d="M140.039 2.11475C140.82 2.11719 141.139 3.11976 140.503 3.57275L140.491 3.58057L140.48 3.59033L118.885 24.5552C117.134 25.7985 115.04 26.4663 112.893 26.4663H60.1758L95.4902 1.98096L140.039 2.11475Z" fill="black" stroke="#2C1A0E" stroke-width="0.376267"/>
50
+ <path d="M117.546 2.04883L90.667 26.4668H76.4629L105.602 2.01367L117.546 2.04883Z" fill="#282828" stroke="#2C1A0E" stroke-width="0.376267"/>
51
+ <path d="M128.29 2.04688L103.285 26.4668H98.3091L124.148 2.01367L128.29 2.04688Z" fill="#282828" stroke="#2C1A0E" stroke-width="0.376267"/>
52
+ <path d="M127.416 28.7837C127.416 28.7837 132.949 30.5875 132.639 37.7159C132.329 44.8443 132.639 66.3942 132.639 66.3942" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
53
+ <path d="M175.673 28.3621C175.673 28.3621 182.341 30.2031 182.034 37.7157C181.742 44.8448 182.034 66.394 182.034 66.394" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
54
+ <path d="M167.681 34.7395H175.114C175.947 34.7395 176.622 35.4144 176.623 36.2473C176.623 37.0803 175.947 37.7561 175.114 37.7561H167.681C166.848 37.7559 166.173 37.0802 166.173 36.2473C166.174 35.4142 166.848 34.7397 167.681 34.7395Z" fill="black" stroke="#2C1A0E" stroke-width="0.376267"/>
55
+ <path d="M196.021 66.394H129.511" stroke="#2C1A0E" stroke-width="0.627613" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
56
+ <path d="M154.397 1.98096H174.999C175.896 1.98116 176.623 2.70814 176.623 3.60498V26.6587C176.623 27.5732 175.881 28.3139 174.967 28.314H127.42C126.477 28.314 126.11 27.0885 126.897 26.5698L126.914 26.5591L126.928 26.5454L149.93 3.31396C151.257 2.44434 152.81 1.98099 154.397 1.98096Z" fill="black" stroke="#2C1A0E" stroke-width="0.376267"/>
57
+ <path d="M182.298 1.9812H183.01C184.578 1.98129 186.113 2.43344 187.43 3.28394L213.82 26.8582L213.831 26.8679L213.844 26.8757C214.497 27.2993 214.197 28.3146 213.418 28.3152H182.298C181.536 28.3152 180.918 27.6972 180.918 26.9353V3.36108C180.918 2.5992 181.536 1.9812 182.298 1.9812Z" fill="black" stroke="#2C1A0E" stroke-width="0.376267"/>
58
+ <path d="M204.439 18.4778L193.742 28.3147H185.539L200.064 14.5686L204.439 18.4778Z" fill="#282828" stroke="#2C1A0E" stroke-width="0.376267"/>
59
+ <path d="M195.585 10.582L180.918 24.9043V20.6416L193.515 8.71973L195.585 10.582Z" fill="#282828" stroke="#2C1A0E" stroke-width="0.376267"/>
60
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4859 19.7285L11.9915 20.564C11.5509 21.3083 10.4499 21.3083 10.0084 20.564L9.51404 19.7285C9.13093 19.0808 8.93938 18.7561 8.63107 18.5773C8.32275 18.3976 7.93508 18.3912 7.15974 18.3775C6.01406 18.3584 5.29618 18.2881 4.69415 18.0382C4.1408 17.809 3.63802 17.4731 3.2145 17.0495C2.79099 16.626 2.45503 16.1232 2.22583 15.5699C1.8783 14.7325 1.8783 13.6698 1.8783 11.5445V10.6323C1.8783 7.6468 1.8783 6.15358 2.55056 5.05716C2.92641 4.44345 3.44216 3.9274 4.05564 3.55117C5.15297 2.87891 6.6471 2.87891 9.63171 2.87891H12.3682C15.3537 2.87891 16.847 2.87891 17.9443 3.55117C18.5577 3.92714 19.0734 4.44287 19.4494 5.05625C20.1216 6.15358 20.1216 7.64771 20.1216 10.6323V11.5445C20.1216 13.6698 20.1216 14.7325 19.775 15.5699C19.5457 16.1233 19.2096 16.6262 18.7859 17.0497C18.3623 17.4732 17.8593 17.8091 17.3058 18.0382C16.7037 18.2881 15.9859 18.3575 14.8402 18.3775C14.0648 18.3912 13.6772 18.3976 13.3689 18.5773C13.0605 18.7561 12.869 19.0799 12.4859 19.7285ZM7.3513 11.7725C7.16986 11.7725 6.99584 11.8446 6.86755 11.9729C6.73925 12.1012 6.66717 12.2752 6.66717 12.4567C6.66717 12.6381 6.73925 12.8121 6.86755 12.9404C6.99584 13.0687 7.16986 13.1408 7.3513 13.1408H12.3682C12.5497 13.1408 12.7237 13.0687 12.852 12.9404C12.9803 12.8121 13.0523 12.6381 13.0523 12.4567C13.0523 12.2752 12.9803 12.1012 12.852 11.9729C12.7237 11.8446 12.5497 11.7725 12.3682 11.7725H7.3513ZM6.66717 9.26407C6.66717 9.08263 6.73925 8.90862 6.86755 8.78032C6.99584 8.65203 7.16986 8.57995 7.3513 8.57995H14.6486C14.8301 8.57995 15.0041 8.65203 15.1324 8.78032C15.2607 8.90862 15.3328 9.08263 15.3328 9.26407C15.3328 9.44551 15.2607 9.61952 15.1324 9.74782C15.0041 9.87612 14.8301 9.9482 14.6486 9.9482H7.3513C7.16986 9.9482 6.99584 9.87612 6.86755 9.74782C6.73925 9.61952 6.66717 9.44551 6.66717 9.26407Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.4859 19.7285L11.9915 20.564C11.551 21.3083 10.45 21.3083 10.0085 20.564L9.5141 19.7285C9.13099 19.0808 8.93944 18.7561 8.63113 18.5773C8.32281 18.3976 7.93514 18.3912 7.1598 18.3775C6.01412 18.3584 5.29625 18.2881 4.69422 18.0382C4.14086 17.809 3.63808 17.4731 3.21456 17.0495C2.79105 16.626 2.4551 16.1232 2.22589 15.5699C1.87836 14.7325 1.87836 13.6698 1.87836 11.5445V10.6323C1.87836 7.6468 1.87836 6.15358 2.55062 5.05716C2.92647 4.44345 3.44222 3.9274 4.0557 3.55117C5.15304 2.87891 6.64716 2.87891 9.63177 2.87891H12.3683C15.3538 2.87891 16.847 2.87891 17.9443 3.55117C18.5577 3.92714 19.0735 4.44287 19.4494 5.05625C20.1217 6.15358 20.1217 7.64771 20.1217 10.6323V11.5445C20.1217 13.6698 20.1217 14.7325 19.7751 15.5699C19.5458 16.1233 19.2097 16.6262 18.786 17.0497C18.3623 17.4732 17.8594 17.8091 17.3058 18.0382C16.7038 18.2881 15.9859 18.3575 14.8402 18.3775C14.0649 18.3912 13.6772 18.3976 13.3689 18.5773C13.0606 18.7561 12.8691 19.0799 12.4859 19.7285ZM7.35136 11.7725C7.16992 11.7725 6.99591 11.8446 6.86761 11.9729C6.73931 12.1012 6.66723 12.2752 6.66723 12.4567C6.66723 12.6381 6.73931 12.8121 6.86761 12.9404C6.99591 13.0687 7.16992 13.1408 7.35136 13.1408H12.3683C12.5497 13.1408 12.7237 13.0687 12.852 12.9404C12.9803 12.8121 13.0524 12.6381 13.0524 12.4567C13.0524 12.2752 12.9803 12.1012 12.852 11.9729C12.7237 11.8446 12.5497 11.7725 12.3683 11.7725H7.35136ZM6.66723 9.26407C6.66723 9.08263 6.73931 8.90862 6.86761 8.78032C6.99591 8.65203 7.16992 8.57995 7.35136 8.57995H14.6487C14.8301 8.57995 15.0041 8.65203 15.1324 8.78032C15.2607 8.90862 15.3328 9.08263 15.3328 9.26407C15.3328 9.44551 15.2607 9.61952 15.1324 9.74782C15.0041 9.87612 14.8301 9.9482 14.6487 9.9482H7.35136C7.16992 9.9482 6.99591 9.87612 6.86761 9.74782C6.73931 9.61952 6.66723 9.44551 6.66723 9.26407Z" fill="#C9C9C9"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.66667 18.9582C3.625 18.9582 1.875 17.2082 1.875 14.1665V5.83317C1.875 2.7915 3.625 1.0415 6.66667 1.0415H13.3333C16.375 1.0415 18.125 2.7915 18.125 5.83317V14.1665C18.125 17.2082 16.375 18.9582 13.3333 18.9582H6.66667ZM3.125 5.83317V14.1665C3.125 16.5498 4.28333 17.7082 6.66667 17.7082H13.3333C15.7167 17.7082 16.875 16.5498 16.875 14.1665V5.83317C16.875 3.44984 15.7167 2.2915 13.3333 2.2915H6.66667C4.28333 2.2915 3.125 3.44984 3.125 5.83317Z" fill="#292D32"/>
3
+ <path d="M13.75 7.70833C12.4833 7.70833 11.4583 6.68333 11.4583 5.41667V3.75C11.4583 3.40833 11.7417 3.125 12.0833 3.125C12.425 3.125 12.7083 3.40833 12.7083 3.75V5.41667C12.7083 5.99167 13.175 6.45833 13.75 6.45833H15.4167C15.7583 6.45833 16.0417 6.74167 16.0417 7.08333C16.0417 7.425 15.7583 7.70833 15.4167 7.70833H13.75Z" fill="#292D32"/>
4
+ <path d="M6.66667 11.4585C6.325 11.4585 6.04167 11.1752 6.04167 10.8335C6.04167 10.4918 6.325 10.2085 6.66667 10.2085H10C10.3417 10.2085 10.625 10.4918 10.625 10.8335C10.625 11.1752 10.3417 11.4585 10 11.4585H6.66667Z" fill="#292D32"/>
5
+ <path d="M6.66667 14.7915C6.325 14.7915 6.04167 14.5082 6.04167 14.1665C6.04167 13.8248 6.325 13.5415 6.66667 13.5415H13.3333C13.675 13.5415 13.9583 13.8248 13.9583 14.1665C13.9583 14.5082 13.675 14.7915 13.3333 14.7915H6.66667Z" fill="#292D32"/>
6
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_152_8465)">
3
+ <path d="M8.4375 13.125C11.3715 13.125 13.75 10.7465 13.75 7.8125C13.75 4.87849 11.3715 2.5 8.4375 2.5C5.50349 2.5 3.125 4.87849 3.125 7.8125C3.125 10.7465 5.50349 13.125 8.4375 13.125Z" stroke="#2C1A0E" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.4375 13.75V18.75M10.625 16.25H6.25M13.75 1.25H16.875V4.375M16.875 1.25L13.0969 5.02813" stroke="#2C1A0E" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_152_8465">
8
+ <rect width="20" height="20" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.501 12.2332C22.501 11.3699 22.4296 10.7399 22.2748 10.0865H12.2153V13.9832H18.12C18.001 14.9515 17.3582 16.4099 15.9296 17.3898L15.9096 17.5203L19.0902 19.935L19.3106 19.9565C21.3343 18.1249 22.501 15.4298 22.501 12.2332Z" fill="#4285F4"/>
3
+ <path d="M12.214 22.5C15.1068 22.5 17.5353 21.5666 19.3092 19.9567L15.9282 17.3899C15.0235 18.0083 13.8092 18.4399 12.214 18.4399C9.38069 18.4399 6.97596 16.6083 6.11874 14.0766L5.99309 14.0871L2.68583 16.5954L2.64258 16.7132C4.40446 20.1433 8.0235 22.5 12.214 22.5Z" fill="#34A853"/>
4
+ <path d="M6.12046 14.0767C5.89428 13.4234 5.76337 12.7233 5.76337 12C5.76337 11.2767 5.89428 10.5767 6.10856 9.92337L6.10257 9.78423L2.75386 7.2356L2.64429 7.28667C1.91814 8.71002 1.50146 10.3084 1.50146 12C1.50146 13.6917 1.91814 15.29 2.64429 16.7133L6.12046 14.0767Z" fill="#FBBC05"/>
5
+ <path d="M12.2141 5.55997C14.2259 5.55997 15.583 6.41163 16.3569 7.12335L19.3807 4.23C17.5236 2.53834 15.1069 1.5 12.2141 1.5C8.02353 1.5 4.40447 3.85665 2.64258 7.28662L6.10686 9.92332C6.97598 7.39166 9.38073 5.55997 12.2141 5.55997Z" fill="#EB4335"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.55004 15.408V12.9747C4.55004 12.1663 5.18337 11.4413 6.08337 11.4413C6.89171 11.4413 7.61671 12.0747 7.61671 12.9747V15.3163C7.61671 16.9413 6.26671 18.2913 4.64171 18.2913C3.01671 18.2913 1.66671 16.933 1.66671 15.3163V10.183C1.57504 5.49967 5.27504 1.70801 9.95837 1.70801C14.6417 1.70801 18.3334 5.49967 18.3334 10.0913V15.2247C18.3334 16.8497 16.9834 18.1997 15.3584 18.1997C13.7334 18.1997 12.3834 16.8497 12.3834 15.2247V12.883C12.3834 12.0747 13.0167 11.3497 13.9167 11.3497C14.725 11.3497 15.45 11.983 15.45 12.883V15.408" stroke="#292D32" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.2273 1.47318C10.4325 1.26806 10.7107 1.15283 11.0009 1.15283C11.291 1.15283 11.5692 1.26806 11.7744 1.47318L18.3393 8.03806L20.5276 10.2263C20.7269 10.4327 20.8372 10.7091 20.8347 10.996C20.8322 11.2829 20.7171 11.5573 20.5142 11.7601C20.3114 11.963 20.037 12.0781 19.7501 12.0806C19.4632 12.0831 19.1868 11.9728 18.9805 11.7735L18.6599 11.4529V18.6589C18.6599 19.2393 18.4293 19.7959 18.0189 20.2063C17.6086 20.6167 17.052 20.8472 16.4716 20.8472H13.1891C12.899 20.8472 12.6207 20.7319 12.4155 20.5268C12.2103 20.3216 12.095 20.0433 12.095 19.7531V16.4706H9.90671V19.7531C9.90671 20.0433 9.79143 20.3216 9.58624 20.5268C9.38105 20.7319 9.10275 20.8472 8.81257 20.8472H5.53013C4.94976 20.8472 4.39316 20.6167 3.98277 20.2063C3.57239 19.7959 3.34184 19.2393 3.34184 18.6589V11.4529L3.02125 11.7735C2.81489 11.9728 2.53851 12.0831 2.25163 12.0806C1.96475 12.0781 1.69032 11.963 1.48746 11.7601C1.2846 11.5573 1.16953 11.2829 1.16703 10.996C1.16454 10.7091 1.27482 10.4327 1.47413 10.2263L3.66242 8.03806L10.2273 1.47318Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.2273 1.47318C10.4325 1.26806 10.7107 1.15283 11.0009 1.15283C11.291 1.15283 11.5692 1.26806 11.7744 1.47318L18.3393 8.03806L20.5276 10.2263C20.7269 10.4327 20.8372 10.7091 20.8347 10.996C20.8322 11.2829 20.7171 11.5573 20.5142 11.7601C20.3114 11.963 20.037 12.0781 19.7501 12.0806C19.4632 12.0831 19.1868 11.9728 18.9805 11.7735L18.6599 11.4529V18.6589C18.6599 19.2393 18.4293 19.7959 18.0189 20.2063C17.6086 20.6167 17.052 20.8472 16.4716 20.8472H13.1891C12.899 20.8472 12.6207 20.7319 12.4155 20.5268C12.2103 20.3216 12.095 20.0433 12.095 19.7531V16.4706H9.90671V19.7531C9.90671 20.0433 9.79143 20.3216 9.58624 20.5268C9.38105 20.7319 9.10275 20.8472 8.81257 20.8472H5.53013C4.94976 20.8472 4.39316 20.6167 3.98277 20.2063C3.57239 19.7959 3.34184 19.2393 3.34184 18.6589V11.4529L3.02125 11.7735C2.81489 11.9728 2.53851 12.0831 2.25163 12.0806C1.96475 12.0781 1.69032 11.963 1.48746 11.7601C1.2846 11.5573 1.16953 11.2829 1.16703 10.996C1.16454 10.7091 1.27482 10.4327 1.47413 10.2263L3.66242 8.03806L10.2273 1.47318Z" fill="#C9C9C9"/>
3
+ </svg>