diff --git a/.env b/.env index cacce79..8356b6a 100644 --- a/.env +++ b/.env @@ -58,6 +58,7 @@ sss_encryptionSalt=zg-vklie-2l1ZlpxiLJ6wQOvbb4TnC9XrxgUEyVQIu6TID4qP4FUUqoS5XrXl addd=BlBlNl getLocationAreaLinks =https://api.tripz-egypt.com/tripz/ride/location/get_location_area_links.php allowed=mobile-app: +allowedWallet=TripzWallet: passnpassenger=hbgbitbXrXrBr newId=new a=q diff --git a/lib/constant/api_key.dart b/lib/constant/api_key.dart index be41de2..e4ce2dc 100644 --- a/lib/constant/api_key.dart +++ b/lib/constant/api_key.dart @@ -9,6 +9,7 @@ class AK { X.r(X.r(X.r(Env.stripePublishableKe, cn), cC), cs); static final String sss_pass = X.r(X.r(X.r(Env.sss_pass, cn), cC), cs); static final String allowed = Env.allowed; + static final String allowedWallet = Env.allowedWallet; static final String passnpassenger = X .r(X.r(X.r(Env.passnpassenger, cn), cC), cs) .toString() diff --git a/lib/controller/auth/login_controller.dart b/lib/controller/auth/login_controller.dart index 55467c3..76d781d 100644 --- a/lib/controller/auth/login_controller.dart +++ b/lib/controller/auth/login_controller.dart @@ -114,8 +114,11 @@ class LoginController extends GetxController { if (response.statusCode == 200) { final decoded = jsonDecode(response.body); - final String? jwt = - decoded['data'] != null ? decoded['data']['jwt'] : (decoded['message'] != null ? decoded['message']['jwt'] : decoded['jwt']); + final String? jwt = decoded['data'] != null + ? decoded['data']['jwt'] + : (decoded['message'] != null + ? decoded['message']['jwt'] + : decoded['jwt']); if (jwt != null) { // نشفر الـ JWT بالتشفير الثلاثي قبل التخزين في GetStorage @@ -144,8 +147,11 @@ class LoginController extends GetxController { Log.print('response: ${response.body}'); if (response.statusCode == 200) { final decoded = jsonDecode(response.body); - final String? jwt = - decoded['data'] != null ? decoded['data']['jwt'] : (decoded['message'] != null ? decoded['message']['jwt'] : decoded['jwt']); + final String? jwt = decoded['data'] != null + ? decoded['data']['jwt'] + : (decoded['message'] != null + ? decoded['message']['jwt'] + : decoded['jwt']); if (jwt != null) { box.write(BoxName.jwt, c(jwt)); @@ -216,13 +222,12 @@ class LoginController extends GetxController { Future getJwtWallet() async { dev = Platform.isAndroid ? 'android' : 'ios'; - // await DeviceHelper.initAndStore(); final String fp = box.read(BoxName.deviceFpEncrypted) ?? ''; var payload = { 'id': box.read(BoxName.passengerID), 'password': AK.passnpassenger, - 'aud': '${AK.allowed}$dev', + 'aud': '${AK.allowedWallet}$dev', 'fingerPrint': fp, }; @@ -230,23 +235,26 @@ class LoginController extends GetxController { Uri.parse(AppLink.loginJwtWalletRider), body: payload, ); - Log.print('AppLink.loginJwtWalletRider: ${AppLink.loginJwtWalletRider}'); - // Log.print('payload: ${payload}'); + Log.print('AppLink.loginJwtWalletRider: ${AppLink.loginJwtWalletRider}'); Log.print('response wallet: ${response.body}'); + if (response.statusCode == 200) { final decoded = jsonDecode(response.body); - final String? jwt = - decoded['data'] != null ? decoded['data']['jwt'] : decoded['jwt']; - final String? hmac = - decoded['data'] != null ? decoded['data']['hmac'] : decoded['hmac']; + + // ← الإصلاح: نقرأ من message أو data أو root + final inner = decoded['data'] ?? decoded['message'] ?? decoded; + + final String? jwt = inner['jwt']; + final String? hmac = inner['hmac']; + + Log.print('jwt extracted: $jwt'); + Log.print('hmac extracted: $hmac'); if (hmac != null) { - // نخزن الـ hmac للاستخدام في X-HMAC-Auth header box.write(BoxName.hmac, hmac); } - // wallet JWT يُرجَع مباشرة دون تشفير ثلاثي return jwt; } diff --git a/lib/controller/functions/crud.dart b/lib/controller/functions/crud.dart index 5864dfa..e94c176 100644 --- a/lib/controller/functions/crud.dart +++ b/lib/controller/functions/crud.dart @@ -54,7 +54,8 @@ class CRUD { final phone = box.read(BoxName.phone) ?? box.read(BoxName.phoneDriver); // طباعة الخطأ في الكونسول للمطور للمتابعة الفورية - Log.print("🚨 [ADD_ERROR] Where: $where | Error: $error | Details: $details"); + Log.print( + "🚨 [ADD_ERROR] Where: $where | Error: $error | Details: $details"); // Fire-and-forget call to prevent infinite loops if the logger itself fails. CRUD().post( @@ -114,6 +115,9 @@ class CRUD { final body = response.body; Log.print('request: ${response.request}'); Log.print('body: $body'); + // Log.print('link: $link'); + Log.print('headers: $headers'); + Log.print('payload: $payload'); // 2xx if (sc >= 200 && sc < 300) { @@ -212,29 +216,34 @@ class CRUD { if (jsonData['error'] == 'Token expired') { print("CRUD.get: Token expired, refreshing and retrying once..."); await Get.put(LoginController()).getJWT(); - + // إعادة المحاولة مرة واحدة فقط بتوكن جديد var retryResponse = await http.post( url, body: payload, headers: { 'Content-Type': 'application/x-www-form-urlencoded', - 'Authorization': 'Bearer ${r(box.read(BoxName.jwt)).toString().split(Env.addd)[0]}', + 'Authorization': + 'Bearer ${r(box.read(BoxName.jwt)).toString().split(Env.addd)[0]}', 'X-Device-FP': _getFpHeader(), }, ); - + if (retryResponse.statusCode == 200) { - return retryResponse.body; + return retryResponse.body; } - return jsonEncode({'status': 'failure', 'message': 'token_expired_retry_failed'}); + return jsonEncode( + {'status': 'failure', 'message': 'token_expired_retry_failed'}); } else { return jsonEncode({'status': 'failure', 'message': '401_unauthorized'}); } } else { addError('Non-200 response code: ${response.statusCode}', 'crud().get - Other', url.toString()); - return jsonEncode({'status': 'failure', 'message': 'server_error_${response.statusCode}'}); + return jsonEncode({ + 'status': 'failure', + 'message': 'server_error_${response.statusCode}' + }); } } @@ -257,6 +266,10 @@ class CRUD { 'X-HMAC-Auth': hmac.toString(), 'X-Device-FP': _getFpHeader(), // ← إثبات الجهاز }; + // add print debug + Log.print('headers: $headers'); + Log.print('payload: $payload'); + Log.print('link: $link'); return await _makeRequest( link: link, @@ -711,7 +724,8 @@ class CRUD { if (response.statusCode == 200 || response.statusCode == 201) { return jsonDecode(response.body); } - Log.print('MapSaas Post Error: ${response.statusCode} - ${response.body}'); + Log.print( + 'MapSaas Post Error: ${response.statusCode} - ${response.body}'); return null; } catch (e) { Log.print('MapSaas Post Exception: $e'); diff --git a/lib/controller/home/map_passenger_controller.dart b/lib/controller/home/map_passenger_controller.dart index 483211b..235d10f 100644 --- a/lib/controller/home/map_passenger_controller.dart +++ b/lib/controller/home/map_passenger_controller.dart @@ -210,8 +210,7 @@ class MapPassengerController extends GetxController { bool rideConfirm = false; bool isMarkersShown = false; bool isMainBottomMenuMap = true; - Timer? markerReloadingTimer2 = Timer(Duration.zero, () {}); - Timer? markerReloadingTimer1 = Timer(Duration.zero, () {}); + int durationToPassenger = 0; bool isWayPointSheet = false; bool isWayPointStopsSheet = false; @@ -228,7 +227,7 @@ class MapPassengerController extends GetxController { var dataCarsLocationByPassenger; var datadriverCarsLocationToPassengerAfterApplied; CarLocation? nearestCar; - late Timer? markerReloadingTimer = Timer(Duration.zero, () {}); + bool shouldFetch = true; // Flag to determine if fetch should be executed int selectedPassengerCount = 1; double progress = 0; @@ -335,12 +334,17 @@ class MapPassengerController extends GetxController { // لتخزين نقاط مسار السائق الحالية للمقارنة List _currentDriverRoutePoints = []; +// متغير لتتبع مصدر القبول — Socket أم غيره + String _rideAcceptedViaSource = "Unknown"; +// عدّاد تحديثات الموقع المستلمة من السوكيت (لقياس الصحة) + int _socketLocationUpdatesCount = 0; + final Map _pollingIntervals = { RideState.noRide: 6, - RideState.searching: 5, + RideState.searching: 8, RideState.driverApplied: 10, - RideState.driverArrived: 8, - RideState.inProgress: 6, + RideState.driverArrived: 15, + RideState.inProgress: 15, RideState.cancelled: 3600, RideState.finished: 3600, RideState.preCheckReview: 3600, @@ -485,6 +489,49 @@ class MapPassengerController extends GetxController { currentRideState.value == RideState.inProgress; } + /// فحص سريع: هل السوكيت يعمل ويرسل بيانات؟ + bool _isSocketHealthy() { + if (!isSocketConnected) return false; + if (_lastSocketLocationTime == null) return false; + final diff = DateTime.now().difference(_lastSocketLocationTime!).inSeconds; + return diff < 20; // إذا آخر تحديث قبل أقل من 20 ثانية + } + + /// 🧠 خوارزمية ذكية: حساب أقصر مسافة بين موقع السائق والـ Polyline (بدون API) + double _calculateDistanceToPolyline(LatLng point, List polyline) { + if (polyline.isEmpty) return 999.0; + double minDistance = double.infinity; + + for (int i = 0; i < polyline.length - 1; i++) { + double d = _distToSegment(point, polyline[i], polyline[i + 1]); + if (d < minDistance) minDistance = d; + } + return minDistance; + } + + double _distToSegment(LatLng p, LatLng v, LatLng w) { + double l2 = _dist2(v, w); + if (l2 == 0) return _distanceBetween(p, v); + double t = ((p.latitude - v.latitude) * (w.latitude - v.latitude) + + (p.longitude - v.longitude) * (w.longitude - v.longitude)) / + l2; + t = max(0, min(1, t)); + return _distanceBetween( + p, + LatLng(v.latitude + t * (w.latitude - v.latitude), + v.longitude + t * (w.longitude - v.longitude))); + } + + double _dist2(LatLng v, LatLng w) { + return pow(v.latitude - w.latitude, 2).toDouble() + + pow(v.longitude - w.longitude, 2).toDouble(); + } + + double _distanceBetween(LatLng p1, LatLng p2) { + return Geolocator.distanceBetween( + p1.latitude, p1.longitude, p2.latitude, p2.longitude); + } + // ============================================================================== // 2. العقل المدبر: توجيه الحالات // ============================================================================== @@ -841,7 +888,7 @@ class MapPassengerController extends GetxController { title: "We apologize 😔".tr, middleText: "No drivers found at the moment.\nPlease try again later.".tr, confirm: ElevatedButton( - onPressed: () => Get.back(), + onPressed: () => Navigator.pop(Get.context!), child: Text("Ok".tr), ), ); @@ -976,6 +1023,11 @@ class MapPassengerController extends GetxController { driverArrivePassengerDialoge(); startTimerDriverWaitPassenger5Minute(); + // 4. إزالة مسار السائق واستعادة مسار الراكب للوجهة + if (polylineCoordinates.isNotEmpty) { + _playRouteAnimation(polylineCoordinates, lastComputedBounds); + } + update(); } @@ -1083,6 +1135,13 @@ class MapPassengerController extends GetxController { if (!isSocketConnected || data == null) return; // 🔥 1. تسجيل وقت استلام البيانات (تغذية الـ Watchdog) _lastSocketLocationTime = DateTime.now(); + _socketLocationUpdatesCount++; + + // 🧠 إذا وصلتنا 3 تحديثات ناجحة من السوكيت، أوقف البولينج (إن كان يعمل) + if (_socketLocationUpdatesCount >= 3 && _locationPollingTimer != null) { + Log.print("✅ Socket delivering locations reliably. Stopping polling."); + _stopDriverLocationPolling(); + } try { double lat = double.tryParse(data['latitude']?.toString() ?? '0') ?? 0; double lng = double.tryParse(data['longitude']?.toString() ?? '0') ?? 0; @@ -1101,6 +1160,19 @@ class MapPassengerController extends GetxController { currentLocationOfDrivers = newPos; // ------------------------------------------------------------------ + // 🔥 2. Smart Rerouting Logic ( deviation > 50m ) + // ------------------------------------------------------------------ + if (_currentDriverRoutePoints.isNotEmpty) { + double deviation = + _calculateDistanceToPolyline(newPos, _currentDriverRoutePoints); + if (deviation > 50.0) { + Log.print( + "⚠️ Driver deviated by ${deviation.toStringAsFixed(1)}m. Smart Rerouting triggered."); + // إعادة رسم المسار محلياً (لا يتم استدعاؤه إلا عند الانحراف الحقيقي) + calculateDriverToPassengerRoute(newPos, passengerLocation); + } + } + // 🔥 تحديث الكاميرا: ضمان بقاء السيارة في منتصف الخريطة // ------------------------------------------------------------------ // ملاحظة: تأكد من أن mapController قد تم تهيئته (initialized) @@ -1277,6 +1349,9 @@ class MapPassengerController extends GetxController { return; } + _rideAcceptedViaSource = source; + _socketLocationUpdatesCount = 0; + _isAcceptanceProcessed = true; // قفل الباب Log.print("🚀 Winner: $source triggered acceptance! Processing..."); @@ -1321,7 +1396,7 @@ class MapPassengerController extends GetxController { // 5. 🔥 العمليات الجغرافية (المسار والوقت) 🔥 // أ) جلب موقع السائق الأولي - // await getDriverCarsLocationToPassengerAfterApplied();// stop this to use socket update + await getDriverCarsLocationToPassengerAfterApplied(); _startSocketWatchdog(); // ب) رسم المسار وحساب الوقت if (driverCarsLocationToPassengerAfterApplied.isNotEmpty) { @@ -1336,63 +1411,63 @@ class MapPassengerController extends GetxController { final int timeToPassengerSeconds = timeToPassengerFromDriverAfterApplied; // مثلاً من السيرفر final double distanceDriverToPassengerMeters = - double.parse(distanceByPassenger); - // [PiP] تم تعطيل الإشعار المستمر القديم (Foreground Service) واستبداله بـ PiP - // await RideTrackingNative.updateRideTracking( - // driverName: driverName, - // driverPhone: driverPhone, - // carDetails: '$make • $carColor • $licensePlate', - // driverLat: driverCarsLocationToPassengerAfterApplied.last.latitude, - // driverLng: driverCarsLocationToPassengerAfterApplied.last.longitude, - // passengerLat: passengerLocation.latitude, - // passengerLng: passengerLocation.longitude, - // destLat: myDestination.latitude, - // destLng: myDestination.longitude, - // rideState: 'waiting', - // estimatedTimeMinutes: (timeToPassengerSeconds / 60).round(), - // totalDistanceMeters: distanceDriverToPassengerMeters, - // ); + double.tryParse(distanceByPassenger.toString()) ?? 0.0; // [PiP] تفعيل PiP عند بدء الرحلة (سيدخل وضع النافذة العائمة عند خروج المستخدم) PipService.enablePip(); - // 6. بدء تتبع الموقع الدوري (Polling Backup + Smart Rerouting) - // سيبدأ العمل بعد 6 ثواني - _startDriverLocationPollingWithTimer(); + // 6. 🔥 القرار الذكي: هل نبدأ البولينج أم نعتمد على السوكيت؟ 🔥 + if (source == "Socket" && isSocketConnected) { + // ✅ السوكيت هو من أخبرنا بالقبول — نثق به ولا نشغل البولينج + Log.print( + "🧠 Smart Mode: Socket accepted ride. Skipping polling, relying on WebSocket."); + // الـ watchdog وحده يكفي كشبكة أمان + } else { + // ⚠️ القبول من FCM أو Polling — نشغل البولينج كالمعتاد + Log.print("🔄 Fallback Mode: $source accepted ride. Starting polling."); + _startDriverLocationPollingWithTimer(); + } } Timer? _watchdogTimer; void _startSocketWatchdog() { _watchdogTimer?.cancel(); - Log.print("👀 Starting Socket Watchdog (Hybrid Mode)..."); - // نفحص كل 5 ثواني _watchdogTimer = Timer.periodic(const Duration(seconds: 5), (timer) async { - // شروط إيقاف الحارس (إذا انتهت الرحلة) if (currentRideState.value != RideState.driverApplied && + currentRideState.value != RideState.driverArrived && currentRideState.value != RideState.inProgress) { timer.cancel(); return; } - // 1. حساب الزمن المنقضي منذ آخر تحديث سوكيت final lastTime = _lastSocketLocationTime ?? DateTime.now().subtract(const Duration(minutes: 1)); final difference = DateTime.now().difference(lastTime).inSeconds; - // 2. القرار if (difference < 15 && isSocketConnected) { - // ✅ الوضع ممتاز: وصلنا تحديث في آخر 10 ثواني والسوكيت متصل - // لا تفعل شيئاً (وفر السيرفر والبطارية) - // Log.print("✅ Socket is healthy. Skipping API poll."); - } else { - // ⚠️ الوضع حرج: السوكيت معلق أو مفصول لأكثر من 10 ثواني - Log.print("⚠️ Socket silent for ${difference}s. Forcing API Poll..."); - - // استدعاء دالة البولينغ (لمرة واحدة) + // ✅ السوكيت صحي — تأكد أن البولينج متوقف إذا كنا في وضع السوكيت + if (_locationPollingTimer != null && + _rideAcceptedViaSource == "Socket") { + Log.print("✅ Socket recovered. Stopping polling fallback."); + _stopDriverLocationPolling(); + } + } else if (difference >= 15 && difference < 30) { + // ⚠️ تأخر متوسط — جلب واحد فقط + Log.print("⚠️ Socket silent for ${difference}s. Single API Poll..."); await getDriverCarsLocationToPassengerAfterApplied(); + } else if (difference >= 30) { + // 🔴 السوكيت ميت — تفعيل البولينج الكامل كـ fallback + if (_locationPollingTimer == null) { + Log.print( + "🔴 Socket dead for ${difference}s. Activating polling fallback!"); + _startDriverLocationPollingWithTimer(); + } else { + // البولينج يعمل بالفعل، فقط أكمل + await getDriverCarsLocationToPassengerAfterApplied(); + } } }); } @@ -1441,9 +1516,7 @@ class MapPassengerController extends GetxController { _uiCountdownTimer?.cancel(); // 3. إيقاف مؤقتات الخريطة - markerReloadingTimer?.cancel(); - markerReloadingTimer1?.cancel(); - markerReloadingTimer2?.cancel(); + _animationTimers.forEach((key, timer) => timer.cancel()); _animationTimers.clear(); @@ -1518,17 +1591,18 @@ class MapPassengerController extends GetxController { break; case RideState.searching: - // 1. التحقق من حالة الطلب (هل قبله أحد؟) عبر البولينج فقط إذا كان السوكيت غير متصل - if (!isSocketConnected) { - try { - String statusFromServer = await getRideStatus(rideId); - if (statusFromServer == 'Apply' || statusFromServer == 'Applied') { - await processRideAcceptance(source: "Polling"); - break; - } - } catch (e) { - Log.print('Error polling getRideStatus: $e'); + // Guard: Don't poll if ride is not registered yet + if (rideId == 'yet' || rideId.isEmpty) break; + + // 1. التحقق من حالة الطلب (هل قبله أحد؟) عبر البولينج كشبكة أمان + try { + String statusFromServer = await getRideStatus(rideId); + if (statusFromServer == 'Apply' || statusFromServer == 'Applied') { + await processRideAcceptance(source: "Polling"); + break; } + } catch (e) { + Log.print('Error polling getRideStatus: $e'); } final now = DateTime.now(); @@ -1604,7 +1678,10 @@ class MapPassengerController extends GetxController { Log.print('Error polling for Arrived/Begin status: $e'); } } - getDriverCarsLocationToPassengerAfterApplied(); + // 🧠 جلب الموقع فقط إذا السوكيت غير صحي + if (!_isSocketHealthy()) { + getDriverCarsLocationToPassengerAfterApplied(); + } break; case RideState.driverArrived: @@ -1653,7 +1730,10 @@ class MapPassengerController extends GetxController { _isRideBeginLogicExecuted = true; _executeBeginRideLogic(); } - getDriverCarsLocationToPassengerAfterApplied(); + // 🧠 جلب الموقع فقط إذا السوكيت غير صحي + if (!_isSocketHealthy()) { + getDriverCarsLocationToPassengerAfterApplied(); + } break; case RideState.finished: tripFinishedFromDriver(); @@ -1975,40 +2055,6 @@ class MapPassengerController extends GetxController { _stopWaitPassengerTimer(); // 1) بيانات السائق والرحلة - final driverName = this.driverName ?? 'السائق'; - final driverPhone = this.driverPhone ?? ''; - final carBrand = this.make ?? ''; - final carColor = this.carColor ?? ''; - final carPlate = this.licensePlate ?? ''; - final carDetails = '$carBrand • $carColor • $carPlate'; - final driverLat = driverCarsLocationToPassengerAfterApplied.last.latitude; - final driverLng = driverCarsLocationToPassengerAfterApplied.last.longitude; - final passengerLat = passengerLocation.latitude; - final passengerLng = passengerLocation.longitude; - final destLat = myDestination.latitude ?? 0.0; - final destLng = myDestination.longitude ?? 0.0; - - final int timeToDestinationSeconds = - durationToRide; // موجود عندك من التايمر - final double totalDistanceMeters = double.parse(distanceByPassenger); - - // [PiP] تم تعطيل الإشعار المستمر القديم (Foreground Service) واستبداله بـ PiP - // await RideTrackingNative.updateRideTracking( - // driverName: driverName, - // driverPhone: driverPhone, - // carDetails: carDetails, - // driverLat: driverLat, - // driverLng: driverLng, - // passengerLat: passengerLat, - // passengerLng: passengerLng, - // destLat: destLat, - // destLng: destLng, - // rideState: 'inProgress', - // estimatedTimeMinutes: (timeToDestinationSeconds / 60).round(), - // totalDistanceMeters: totalDistanceMeters, - // ); - - // 3) بدء التايمر الداخلي الخاص بك (للـ ETA داخل التطبيق نفسه) rideIsBeginPassengerTimer(); update(); } @@ -2095,28 +2141,6 @@ class MapPassengerController extends GetxController { update(); } - void convertHintTextStartNewPlaces(int index) { - if (placesStart.isEmpty) { - hintTextStartPoint = 'Search for your Start point'.tr; - update(); - } else { - var res = placesStart[index]; - - hintTextStartPoint = res['displayName']?['text'] ?? - res['formattedAddress'] ?? - 'Unknown Place'; - - double? lat = res['location']?['latitude']; - double? lng = res['location']?['longitude']; - - if (lat != null && lng != null) { - newStartPointLocation = LatLng(lat, lng); - } - - update(); - } - } - void convertHintTextPlaces(int index, var res) { if (placeListResponseAll[index].isEmpty) { placeListResponseAll[index] = res; @@ -2137,62 +2161,6 @@ class MapPassengerController extends GetxController { } } - void convertHintTextPlaces1(int index) { - if (wayPoint1.isEmpty) { - hintTextwayPoint1 = 'Search for your Start point'.tr; - update(); - } else { - hintTextwayPoint1 = wayPoint1[index]['name']; - currentLocationString1 = wayPoint1[index]['name']; - double lat = wayPoint1[index]['geometry']['location']['lat']; - double lng = wayPoint1[index]['geometry']['location']['lng']; - newPointLocation1 = LatLng(lat, lng); - update(); - } - } - - void convertHintTextPlaces2(int index) { - if (wayPoint1.isEmpty) { - hintTextwayPoint2 = 'Search for your Start point'.tr; - update(); - } else { - hintTextwayPoint2 = wayPoint2[index]['name']; - currentLocationString2 = wayPoint1[index]['name']; - double lat = wayPoint2[index]['geometry']['location']['lat']; - double lng = wayPoint2[index]['geometry']['location']['lng']; - newPointLocation2 = LatLng(lat, lng); - update(); - } - } - - void convertHintTextPlaces3(int index) { - if (wayPoint1.isEmpty) { - hintTextwayPoint3 = 'Search for your Start point'.tr; - update(); - } else { - hintTextwayPoint3 = wayPoint3[index]['name']; - currentLocationString3 = wayPoint1[index]['name']; - double lat = wayPoint3[index]['geometry']['location']['lat']; - double lng = wayPoint3[index]['geometry']['location']['lng']; - newPointLocation3 = LatLng(lat, lng); - update(); - } - } - - void convertHintTextPlaces4(int index) { - if (wayPoint1.isEmpty) { - hintTextwayPoint4 = 'Search for your Start point'.tr; - update(); - } else { - hintTextwayPoint4 = wayPoint4[index]['name']; - currentLocationString4 = wayPoint1[index]['name']; - double lat = wayPoint4[index]['geometry']['location']['lat']; - double lng = wayPoint4[index]['geometry']['location']['lng']; - newPointLocation4 = LatLng(lat, lng); - update(); - } - } - void convertHintTextDestinationNewPlaces(int index) { if (placesDestination.isEmpty) { hintTextDestinationPoint = 'Search for your destination'.tr; @@ -3004,30 +2972,6 @@ class MapPassengerController extends GetxController { update(); } - void clearPlaces1() { - wayPoint1 = []; - hintTextwayPoint1 = 'Search for waypoint'.tr; - update(); - } - - void clearPlaces2() { - wayPoint2 = []; - hintTextwayPoint2 = 'Search for waypoint'.tr; - update(); - } - - void clearPlaces3() { - wayPoint3 = []; - hintTextwayPoint3 = 'Search for waypoint'.tr; - update(); - } - - void clearPlaces4() { - wayPoint4 = []; - hintTextwayPoint4 = 'Search for waypoint'.tr; - update(); - } - int selectedReason = -1; String? cancelNote; void selectReason0(int index, String note) { @@ -3675,118 +3619,6 @@ class MapPassengerController extends GetxController { late LatLng currentDriverLocation; late double headingList; - // Future getCarsLocationByPassengerAndReloadMarker() async { - // if (statusRide == 'wait') { - // carsLocationByPassenger = []; - // LatLngBounds bounds = calculateBounds( - // passengerLocation.latitude, passengerLocation.longitude, 7000); - // var res; - // if (box.read(BoxName.carType) == 'Lady') { - // res = await CRUD() - // .get(link: AppLink.getFemalDriverLocationByPassenger, payload: { - // 'southwestLat': bounds.southwest.latitude.toString(), - // 'southwestLon': bounds.southwest.longitude.toString(), - // 'northeastLat': bounds.northeast.latitude.toString(), - // 'northeastLon': bounds.northeast.longitude.toString(), - // }); - // } else if (box.read(BoxName.carType) == 'Speed') { - // res = await CRUD().get( - // link: AppLink.getCarsLocationByPassengerSpeed, - // payload: { - // 'southwestLat': bounds.southwest.latitude.toString(), - // 'southwestLon': bounds.southwest.longitude.toString(), - // 'northeastLat': bounds.northeast.latitude.toString(), - // 'northeastLon': bounds.northeast.longitude.toString(), - // }, - // ); - // } else if (box.read(BoxName.carType) == 'Delivery') { - // res = await CRUD().get( - // link: AppLink.getCarsLocationByPassengerDelivery, - // payload: { - // 'southwestLat': bounds.southwest.latitude.toString(), - // 'southwestLon': bounds.southwest.longitude.toString(), - // 'northeastLat': bounds.northeast.latitude.toString(), - // 'northeastLon': bounds.northeast.longitude.toString(), - // }, - // ); - // } else { - // res = await CRUD() - // .get(link: AppLink.getCarsLocationByPassenger, payload: { - // 'southwestLat': bounds.southwest.latitude.toString(), - // 'southwestLon': bounds.southwest.longitude.toString(), - // 'northeastLat': bounds.northeast.latitude.toString(), - // 'northeastLon': bounds.northeast.longitude.toString(), - // }); - // } - // if (res == 'failure') { - // noCarString = true; - // dataCarsLocationByPassenger = res; - // update(); - // } else { - // // Get.snackbar('no car', 'message'); - // noCarString = false; - // dataCarsLocationByPassenger = jsonDecode(res); - // // if (dataCarsLocationByPassenger.length > carsOrder) { - // driverId = dataCarsLocationByPassenger['message'][carsOrder] - // ['driver_id'] - // .toString(); - // gender = dataCarsLocationByPassenger['message'][carsOrder]['gender'] - // .toString(); - // // } - - // carsLocationByPassenger.clear(); // Clear existing markers - - // // late LatLng lastDriverLocation; // Initialize a variable for last location - - // for (var i = 0; - // i < dataCarsLocationByPassenger['message'].length; - // i++) { - // var json = dataCarsLocationByPassenger['message'][i]; - // // CarLocationModel model = CarLocationModel.fromJson(json); - // if (carLocationsModels.length < i + 1) { - // // carLocationsModels.add(model); - // markers.add( - // Marker( - // markerId: MarkerId(json['latitude']), - // position: LatLng( - // double.parse(json['latitude']), - // double.parse(json['longitude']), - // ), - // rotation: double.parse(json['heading']), - // icon: json['model'].toString().contains('دراجة') - // ? motoIcon - // : json['gender'] == 'Male'.tr - // ? carIcon - // : ladyIcon, - // ), - // ); - // driversToken.add(json['token']); - // // driversToken = json['token']; - // } else { - // // carLocationsModels[i] = model; - // markers[i] = Marker( - // markerId: MarkerId(json['latitude']), - // position: LatLng( - // double.parse(json['latitude']), - // double.parse(json['longitude']), - // ), - // rotation: double.parse(json['heading']), - // icon: json['model'].contains('دراجة') - // ? motoIcon - // : json['gender'] == 'Male'.tr - // ? carIcon - // : ladyIcon, - // ); - // // driversToken = json['token']; - // driversToken.add(json['token']); - // } - // } - // } - - // update(); - // } - // } - Map _animationTimers = {}; final int updateIntervalMs = 100; // Update every 100ms final double minMovementThreshold = @@ -3808,14 +3640,6 @@ class MapPassengerController extends GetxController { // After 4 attempts, stop the search t.cancel(); - // No cars found after 4 attempts - // MyDialog().getDialog( - // "No Car or Driver Found in your area.".tr, - // "No Car or Driver Found in your area.".tr, - // () { - // Get.back(); - // }, - // ); if (!foundCars) { noCarString = true; dataCarsLocationByPassenger = 'failure'; @@ -3876,43 +3700,6 @@ class MapPassengerController extends GetxController { }); } - // String getLocationArea(double latitude, double longitude) { - // final locations = box.read(BoxName.locationName) ?? []; - // for (final location in locations) { - // final locationData = location as Map; - - // // Debugging: Print location data - // // Log.print('Location Data: $locationData'); - - // // Convert string values to double - // final minLatitude = - // double.tryParse(locationData['min_latitude'].toString()) ?? 0.0; - // final maxLatitude = - // double.tryParse(locationData['max_latitude'].toString()) ?? 0.0; - // final minLongitude = - // double.tryParse(locationData['min_longitude'].toString()) ?? 0.0; - // final maxLongitude = - // double.tryParse(locationData['max_longitude'].toString()) ?? 0.0; - - // // Debugging: Print converted values - // Log.print( - // 'Converted Values: minLatitude=$minLatitude, maxLatitude=$maxLatitude, minLongitude=$minLongitude, maxLongitude=$maxLongitude'); - - // if (latitude >= minLatitude && - // latitude <= maxLatitude && - // longitude >= minLongitude && - // longitude <= maxLongitude) { - // box.write(BoxName.serverChosen, (locationData['server_link'])); - // // Log.print( - // // 'locationData----server_link: ${(locationData['server_link'])}'); - // return locationData['name']; - // } - // } - - // // Default case - // box.write(BoxName.serverChosen, AppLink.IntaleqSyriaServer); - // return 'Cairo'; - // } String getLocationArea(double latitude, double longitude) { LatLng passengerPoint = LatLng(latitude, longitude); @@ -4762,9 +4549,7 @@ Intaleq Team'''; "--- MapPassengerController: Closing and cleaning up all resources. ---"); // 1. إلغاء المؤقتات الفردية (باستخدام ?. الآمن) - markerReloadingTimer?.cancel(); - markerReloadingTimer1?.cancel(); - markerReloadingTimer2?.cancel(); + timerToPassengerFromDriverAfterApplied?.cancel(); _timer?.cancel(); _masterTimer?.cancel(); // (أضف المؤقت الرئيسي) @@ -6039,55 +5824,73 @@ Intaleq Team'''; if (context == null) return; WidgetsBinding.instance.addPostFrameCallback((_) { - // إغلاق أي سناك بار مفتوح حالياً لتجنب التكرار - ScaffoldMessenger.of(context).hideCurrentSnackBar(); + // Close any existing open dialogs first + if (Get.isDialogOpen == true) { + Get.back(); + } - ScaffoldMessenger.of(context).showSnackBar( - SnackBar( - content: Row( - children: [ - const SizedBox( - width: 24, - height: 24, - child: MyCircularProgressIndicator(), - ), - const SizedBox(width: 16), - Expanded( - child: Column( - mainAxisSize: MainAxisSize.min, - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text( - 'Drawing route on map...'.tr, - style: const TextStyle( - color: Colors.white, - fontWeight: FontWeight.bold, - fontSize: 14, - ), - ), - const SizedBox(height: 4), - Text( - 'Please wait while we prepare your trip.'.tr, - style: const TextStyle( - color: Colors.white70, - fontSize: 12, - ), - ), - ], + Get.dialog( + Dialog( + backgroundColor: Colors.transparent, + elevation: 0, + child: Container( + padding: const EdgeInsets.all(24), + width: 180, + decoration: BoxDecoration( + color: Colors.white.withOpacity(0.95), + borderRadius: BorderRadius.circular(24), + boxShadow: [ + BoxShadow( + color: Colors.black.withOpacity(0.15), + blurRadius: 20, + spreadRadius: 5, + ) + ], + ), + child: Column( + mainAxisSize: MainAxisSize.min, + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + // App Logo + Image.asset( + 'assets/images/logo.gif', + height: 64, + errorBuilder: (context, error, stackTrace) => const Icon( + Icons.map, + size: 64, + color: AppColor.primaryColor, + ), ), - ), - ], + const SizedBox(height: 16), + const SizedBox( + width: 24, + height: 24, + child: MyCircularProgressIndicator(), + ), + const SizedBox(height: 16), + Text( + 'Drawing route on map...'.tr, + style: const TextStyle( + fontWeight: FontWeight.bold, + fontSize: 14, + color: AppColor.primaryColor, + ), + textAlign: TextAlign.center, + ), + ], + ), ), - backgroundColor: AppColor.primaryColor.withOpacity(0.95), - duration: const Duration(seconds: 3), - behavior: SnackBarBehavior.floating, - margin: const EdgeInsets.fromLTRB(16, 0, 16, 110), - shape: RoundedRectangleBorder( - borderRadius: BorderRadius.circular(16), - ), - elevation: 8, ), + barrierDismissible: false, ); + + // Auto-dismiss after exactly 2 seconds + Future.delayed(const Duration(seconds: 2), () { + if (Get.isDialogOpen == true) { + Get.back(); + } + }); }); } @@ -7007,9 +6810,23 @@ Intaleq Team'''; // --- ⬇️ الإضافة الجديدة: التحقق من سياق حدود المطار ⬇️ --- // !! ⚠️ تأكد من أن هذه هي المتغيرات الصحيحة لإحداثيات نقطة النهاية !! + double destLat = 0.0; + double destLng = 0.0; + try { + destLat = myDestination.latitude; + destLng = myDestination.longitude; + } catch (_) { + if (coordinatesWithoutEmpty.isNotEmpty) { + destLat = + double.tryParse(coordinatesWithoutEmpty.last.split(',')[0]) ?? 0.0; + destLng = + double.tryParse(coordinatesWithoutEmpty.last.split(',')[1]) ?? 0.0; + } + } + final bool damascusAirportBoundCtx = _isInsideDamascusAirportBounds( - myDestination.latitude.toDouble(), // <-- ⚠️ غيّر هذا للمتغير الصحيح - myDestination.longitude.toDouble(), // <-- ⚠️ غيّر هذا للمتغير الصحيح + destLat, + destLng, ); final bool isInDamascusAirportBoundCtx = _isInsideDamascusAirportBounds( newMyLocation.latitude.toDouble(), // <-- ⚠️ غيّر هذا للمتغير الصحيح @@ -7494,10 +7311,6 @@ Intaleq Team'''; } late List recentPlaces = []; - getFavioratePlaces0() async { - recentPlaces = await sql.getCustomQuery( - 'SELECT DISTINCT latitude, longitude, name, rate FROM ${TableName.recentLocations}'); - } getFavioratePlaces() async { recentPlaces = await sql.getCustomQuery( diff --git a/lib/env/env.dart b/lib/env/env.dart index 74eaf48..e1f44cc 100644 --- a/lib/env/env.dart +++ b/lib/env/env.dart @@ -32,6 +32,9 @@ abstract class Env { @EnviedField(varName: 'allowed', obfuscate: true) static final String allowed = _Env.allowed; + @EnviedField(varName: 'allowedWallet', obfuscate: true) + static final String allowedWallet = _Env.allowedWallet; + @EnviedField(varName: 'apiKeyHere', obfuscate: true) static final String apiKeyHere = _Env.apiKeyHere; diff --git a/lib/env/env.g.dart b/lib/env/env.g.dart index 23468f1..577c551 100644 --- a/lib/env/env.g.dart +++ b/lib/env/env.g.dart @@ -11,71 +11,71 @@ part of 'env.dart'; // generated_from: .env final class _Env { static const List _enviedkeybasicAuthCredentials = [ - 3837261320, - 3456125979, - 1917600015, - 710308164, - 2927704784, - 2160778693, - 2627436253, - 3458762491, - 397503065, - 2023504910, - 3091204722, - 3467204274, - 53907986, - 368544904, - 2387185697, - 4020003818, - 2675668869, - 3613105003, - 2164051626, - 18682308, - 3970574669, - 2516952901, - 3079121021, - 2434424315, - 771177407, - 719052446, - 3455331488, - 3265184970, - 1160866039, - 4033700804, - 3792569216, + 3519153949, + 3419152788, + 2912845944, + 3909856071, + 102024447, + 714276509, + 2069783984, + 849211503, + 2977836317, + 3699699576, + 2402219875, + 961575679, + 1650865858, + 1046325856, + 2964222366, + 449603406, + 2379104822, + 1146955300, + 3842537471, + 2541483040, + 4132204505, + 2003530930, + 1891068029, + 2946800660, + 1310424808, + 107780630, + 1852540733, + 3263688512, + 2685353940, + 2468261221, + 2642652816, ]; static const List _envieddatabasicAuthCredentials = [ - 3837261439, - 3456126058, - 1917600097, - 710308137, - 2927704737, - 2160778676, - 2627436206, - 3458762385, - 397503008, - 2023505016, - 3091204613, - 3467204312, - 53908068, - 368544946, - 2387185743, - 4020003739, - 2675668983, - 3613104946, - 2164051680, - 18682260, - 3970574605, - 2516952948, - 3079120970, - 2434424264, - 771177352, - 719052486, - 3455331538, - 3265184914, - 1160865947, - 4033700742, - 3792569324, + 3519154026, + 3419152869, + 2912845846, + 3909856042, + 102024334, + 714276588, + 2069784003, + 849211397, + 2977836388, + 3699699470, + 2402219796, + 961575573, + 1650865844, + 1046325850, + 2964222448, + 449603391, + 2379104836, + 1146955389, + 3842537397, + 2541483120, + 4132204441, + 2003530883, + 1891067978, + 2946800679, + 1310424799, + 107780686, + 1852540751, + 3263688472, + 2685353912, + 2468261159, + 2642652924, ]; static final String basicAuthCredentials = String.fromCharCodes( @@ -88,65 +88,65 @@ final class _Env { _enviedkeybasicAuthCredentials[i])); static const List _enviedkeybasicCompareFaces = [ - 97773212, - 3881033111, - 3131560037, - 3287324460, - 3086959530, - 657060085, - 2662201855, - 1680509931, - 2889839936, - 1532323549, - 3640169262, - 28372938, - 3829005220, - 3541377810, - 2931230014, - 2720971578, - 4098761753, - 2156583449, - 3226632152, - 1411031081, - 974205341, - 1396421124, - 251182569, - 635988345, - 1942175627, - 71200262, - 3274684547, - 3131663023, + 4286381358, + 2783755385, + 465264259, + 646224493, + 3681737418, + 3919080937, + 3622237151, + 225254801, + 1532412247, + 1873959070, + 585270922, + 2964749190, + 1898668606, + 1946995781, + 264559813, + 1278770603, + 3920666442, + 165926944, + 3650929431, + 3625515193, + 2649951911, + 3267881446, + 1914765737, + 2920899768, + 1763024911, + 2963930330, + 724492366, + 4039544587, ]; static const List _envieddatabasicCompareFaces = [ - 97773286, - 3881033213, - 3131559952, - 3287324486, - 3086959558, - 657059968, - 2662201742, - 1680509837, - 2889839920, - 1532323511, - 3640169236, - 28372900, - 3829005269, - 3541377888, - 2931230055, - 2720971600, - 4098761833, - 2156583513, - 3226632169, - 1411031070, - 974205358, - 1396421171, - 251182513, - 635988235, - 1942175699, - 71200362, - 3274684609, - 3131663043, + 4286381396, + 2783755283, + 465264374, + 646224391, + 3681737382, + 3919080860, + 3622237102, + 225254903, + 1532412199, + 1873959156, + 585270960, + 2964749288, + 1898668623, + 1946995767, + 264559772, + 1278770625, + 3920666426, + 165927008, + 3650929446, + 3625515150, + 2649951892, + 3267881425, + 1914765809, + 2920899786, + 1763024983, + 2963930294, + 724492300, + 4039544679, ]; static final String basicCompareFaces = String.fromCharCodes( @@ -158,49 +158,49 @@ final class _Env { _envieddatabasicCompareFaces[i] ^ _enviedkeybasicCompareFaces[i])); static const List _enviedkeymapKeyOsm = [ - 3811484145, - 2507132489, - 2078979297, - 3565855515, - 1445127087, - 1682374107, - 2570098914, - 2096975692, - 1502142601, - 689337542, - 2449606499, - 455615466, - 37181565, - 3807707900, - 3157537847, - 1242684670, - 1499274885, - 1654406761, - 2569792339, - 456992007, + 3060640001, + 346960127, + 3314294098, + 1030012865, + 1437698263, + 3190131666, + 2624192467, + 2853195809, + 1233109344, + 1470699485, + 411546398, + 3054601556, + 1444666290, + 616257806, + 978664394, + 1949900018, + 224395886, + 1412872648, + 3712784326, + 3736141696, ]; static const List _envieddatamapKeyOsm = [ - 3811484060, - 2507132456, - 2078979213, - 3565855615, - 1445127114, - 1682374061, - 2570098850, - 2096975678, - 1502142694, - 689337523, - 2449606423, - 455615375, - 37181520, - 3807707800, - 3157537880, - 1242684562, - 1499274985, - 1654406664, - 2569792289, - 456992116, + 3060640108, + 346960030, + 3314294078, + 1030012837, + 1437698226, + 3190131620, + 2624192403, + 2853195859, + 1233109263, + 1470699432, + 411546474, + 3054601521, + 1444666271, + 616257898, + 978664357, + 1949899934, + 224395778, + 1412872617, + 3712784308, + 3736141811, ]; static final String mapKeyOsm = String.fromCharCodes(List.generate( @@ -210,135 +210,135 @@ final class _Env { ).map((int i) => _envieddatamapKeyOsm[i] ^ _enviedkeymapKeyOsm[i])); static const List _enviedkeysss_encryptionSalt = [ - 2792056900, - 1051218994, - 1428984555, - 3689595383, - 1786405914, - 3884580517, - 2204178519, - 3499694993, - 3829383412, - 3528239435, - 1779996853, - 3559132512, - 825648909, - 3703007563, - 695197410, - 894729284, - 778776224, - 1789582884, - 3125618836, - 2294451666, - 1888223422, - 3893224549, - 1298519475, - 3364439804, - 3566810975, - 2959307989, - 2631677914, - 3180364789, - 2093759427, - 2792710365, - 2723305008, - 812198291, - 3695409908, - 1364539165, - 2487905162, - 2983617386, - 3395740110, - 2371223717, - 1314469098, - 4159372355, - 2737666436, - 1438099005, - 862044450, - 1138063578, - 212964137, - 2777103230, - 674574408, - 3703494148, - 3031963759, - 3337483479, - 119070148, - 2082707392, - 1487727338, - 4140429617, - 172469316, - 2874561429, - 2596327772, - 3916163953, - 4056654810, - 225441445, - 498683728, - 1384602059, - 3072397479, + 902995399, + 2082203168, + 608200472, + 3584549682, + 3526956967, + 1881872666, + 2714911356, + 369459796, + 127644444, + 1211822634, + 3470051956, + 3046171699, + 2291535080, + 1755988754, + 3700187058, + 3030591870, + 3224275007, + 1031599735, + 1059479386, + 866222866, + 2494005963, + 1360770546, + 1386678821, + 1686614589, + 2607926240, + 3793974732, + 2823271241, + 706783331, + 3090213729, + 2477052953, + 3922184543, + 3219031649, + 2592858459, + 355801982, + 1028727755, + 1182572517, + 538643747, + 2531875289, + 3113120603, + 2462836846, + 1940765394, + 3268088823, + 1377490059, + 2529292059, + 66366670, + 3350175850, + 636154059, + 1013090096, + 3452064708, + 3630448218, + 1330216132, + 2199017650, + 2506020598, + 3057880454, + 2847145832, + 845501714, + 747272912, + 4125075200, + 1691612427, + 705354137, + 4101017401, + 2138745081, + 1362275669, ]; static const List _envieddatasss_encryptionSalt = [ - 2792056894, - 1051219029, - 1428984518, - 3689595265, - 1786406001, - 3884580553, - 2204178494, - 3499695092, - 3829383385, - 3528239481, - 1779996889, - 3559132497, - 825648983, - 3703007527, - 695197330, - 894729276, - 778776265, - 1789582952, - 3125618910, - 2294451684, - 1888223433, - 3893224500, - 1298519548, - 3364439690, - 3566810941, - 2959307959, - 2631677934, - 3180364705, - 2093759405, - 2792710302, - 2723304969, - 812198347, - 3695409798, - 1364539237, - 2487905261, - 2983617343, - 3395740043, - 2371223772, - 1314469052, - 4159372306, - 2737666509, - 1438099016, - 862044436, - 1138063502, - 212964192, - 2777103162, - 674574460, - 3703494261, - 3031963711, - 3337483491, - 119070082, - 2082707349, - 1487727295, - 4140429632, - 172469291, - 2874561478, - 2596327785, - 3916163881, - 4056654760, - 225441533, - 498683708, - 1384601993, - 3072397515, + 902995389, + 2082203207, + 608200501, + 3584549700, + 3526957004, + 1881872758, + 2714911253, + 369459761, + 127644465, + 1211822616, + 3470051864, + 3046171650, + 2291535026, + 1755988862, + 3700187074, + 3030591750, + 3224275030, + 1031599675, + 1059479312, + 866222884, + 2494005948, + 1360770467, + 1386678890, + 1686614603, + 2607926146, + 3793974702, + 2823271293, + 706783287, + 3090213647, + 2477053018, + 3922184550, + 3219031609, + 2592858409, + 355801862, + 1028727724, + 1182572464, + 538643814, + 2531875232, + 3113120525, + 2462836799, + 1940765339, + 3268088706, + 1377490109, + 2529292111, + 66366599, + 3350175790, + 636154111, + 1013090113, + 3452064660, + 3630448238, + 1330216066, + 2199017703, + 2506020515, + 3057880567, + 2847145735, + 845501761, + 747272933, + 4125075288, + 1691612537, + 705354177, + 4101017429, + 2138745019, + 1362275641, ]; static final String sss_encryptionSalt = String.fromCharCodes( @@ -350,73 +350,73 @@ final class _Env { _envieddatasss_encryptionSalt[i] ^ _enviedkeysss_encryptionSalt[i])); static const List _enviedkeysss_pass = [ - 2022439002, - 3887436976, - 4211615252, - 985961152, - 4292335043, - 1005958769, - 103150686, - 153524746, - 252465366, - 3625210849, - 551924819, - 3829271205, - 1699491627, - 4200919204, - 3622793210, - 1737816315, - 1391044485, - 3328741798, - 3152559021, - 1910460551, - 3364389921, - 3006957399, - 977618487, - 2320632034, - 1926510715, - 2582280439, - 3275342824, - 3236741325, - 1715961908, - 2846821611, - 1861745886, - 360157065, + 1893471899, + 2349608271, + 2983057176, + 42644819, + 2638824772, + 4026985743, + 2374941959, + 584830455, + 3974535578, + 4215338506, + 3545242246, + 2709426585, + 1043321232, + 3404331437, + 3575242362, + 202302309, + 2996236292, + 405843549, + 2047297606, + 2588784733, + 3390222770, + 1144256972, + 87840572, + 1548393091, + 3763518616, + 1813426160, + 221621844, + 3288149861, + 3473079977, + 2136666060, + 2384050155, + 3175739836, ]; static const List _envieddatasss_pass = [ - 2022438957, - 3887436993, - 4211615354, - 985961133, - 4292335026, - 1005958656, - 103150637, - 153524832, - 252465327, - 3625210775, - 551924772, - 3829271251, - 1699491601, - 4200919242, - 3622793099, - 1737816201, - 1391044584, - 3328741887, - 3152559079, - 1910460631, - 3364389985, - 3006957414, - 977618432, - 2320632017, - 1926510668, - 2582280399, - 3275342768, - 3236741311, - 1715961964, - 2846821511, - 1861745820, - 360157157, + 1893471980, + 2349608254, + 2983057270, + 42644798, + 2638824757, + 4026985854, + 2374942068, + 584830365, + 3974535651, + 4215338620, + 3545242353, + 2709426671, + 1043321258, + 3404331459, + 3575242251, + 202302231, + 2996236393, + 405843460, + 2047297548, + 2588784653, + 3390222834, + 1144257021, + 87840523, + 1548393136, + 3763518639, + 1813426120, + 221621772, + 3288149783, + 3473080049, + 2136666016, + 2384050089, + 3175739856, ]; static final String sss_pass = String.fromCharCodes(List.generate( @@ -426,21 +426,21 @@ final class _Env { ).map((int i) => _envieddatasss_pass[i] ^ _enviedkeysss_pass[i])); static const List _enviedkeyaddd = [ - 1381860224, - 1112094863, - 1125627927, - 1266720373, - 2795179442, - 3682357505, + 1709166897, + 714388966, + 2668633056, + 3742156675, + 2560938715, + 734197165, ]; static const List _envieddataaddd = [ - 1381860290, - 1112094947, - 1125627989, - 1266720281, - 2795179516, - 3682357613, + 1709166963, + 714388874, + 2668632994, + 3742156783, + 2560938645, + 734197185, ]; static final String addd = String.fromCharCodes(List.generate( @@ -450,35 +450,35 @@ final class _Env { ).map((int i) => _envieddataaddd[i] ^ _enviedkeyaddd[i])); static const List _enviedkeypassnpassenger = [ - 2557921723, - 4074847843, - 2165011994, - 3911279724, - 1299667658, - 3115592011, - 1254652432, - 957247731, - 3731470866, - 3226069384, - 2661589901, - 1492393694, - 1705133225, + 846546532, + 687274896, + 1685022243, + 427065348, + 779427125, + 3173652022, + 3882681850, + 2203988661, + 1380572535, + 703673650, + 561238537, + 1739009496, + 228518013, ]; static const List _envieddatapassnpassenger = [ - 2557921747, - 4074847745, - 2165012093, - 3911279630, - 1299667619, - 3115591999, - 1254652530, - 957247659, - 3731470944, - 3226069456, - 2661590015, - 1492393628, - 1705133275, + 846546444, + 687274994, + 1685022276, + 427065446, + 779427164, + 3173652034, + 3882681752, + 2203988717, + 1380572421, + 703673706, + 561238651, + 1739009434, + 228517903, ]; static final String passnpassenger = String.fromCharCodes(List.generate( @@ -488,15 +488,15 @@ final class _Env { ).map((int i) => _envieddatapassnpassenger[i] ^ _enviedkeypassnpassenger[i])); static const List _enviedkeynewId = [ - 2953822769, - 3787559599, - 4083301531, + 3177290336, + 2883773472, + 1829415982, ]; static const List _envieddatanewId = [ - 2953822815, - 3787559626, - 4083301612, + 3177290254, + 2883773509, + 1829416025, ]; static final String newId = String.fromCharCodes(List.generate( @@ -506,31 +506,31 @@ final class _Env { ).map((int i) => _envieddatanewId[i] ^ _enviedkeynewId[i])); static const List _enviedkeyallowed = [ - 1499124622, - 3067649210, - 3982964952, - 350441958, - 4264566532, - 1455517601, - 2201944401, - 2956183256, - 4063742657, - 3054423063, - 3925888746, + 163381300, + 899410917, + 1297047114, + 1832468776, + 3165108443, + 4096998934, + 1490676685, + 1439973606, + 1048426519, + 3481102174, + 3456066742, ]; static const List _envieddataallowed = [ - 1499124707, - 3067649237, - 3982964922, - 350441871, - 4264566632, - 1455517636, - 2201944444, - 2956183225, - 4063742641, - 3054423143, - 3925888720, + 163381337, + 899410826, + 1297047080, + 1832468801, + 3165108407, + 4096999027, + 1490676704, + 1439973511, + 1048426599, + 3481102126, + 3456066700, ]; static final String allowed = String.fromCharCodes(List.generate( @@ -539,108 +539,144 @@ final class _Env { growable: false, ).map((int i) => _envieddataallowed[i] ^ _enviedkeyallowed[i])); + static const List _enviedkeyallowedWallet = [ + 1787088871, + 2569911000, + 2442601235, + 1064597121, + 3007662749, + 3522810039, + 3300121391, + 2570607599, + 635715896, + 1576453486, + 2027601924, + 1433393895, + ]; + + static const List _envieddataallowedWallet = [ + 1787088819, + 2569910954, + 2442601338, + 1064597233, + 3007662823, + 3522810080, + 3300121422, + 2570607491, + 635715924, + 1576453387, + 2027602032, + 1433393885, + ]; + + static final String allowedWallet = String.fromCharCodes(List.generate( + _envieddataallowedWallet.length, + (int i) => i, + growable: false, + ).map((int i) => _envieddataallowedWallet[i] ^ _enviedkeyallowedWallet[i])); + static const List _enviedkeyapiKeyHere = [ - 3521889084, - 3131151007, - 2443346482, - 2394277993, - 2311188700, - 2619049304, - 2516093529, - 2794126617, - 2953064871, - 1694731749, - 2975020675, - 3609741811, - 3847995843, - 4287998441, - 3399549787, - 1067428418, - 2763677564, - 357589786, - 1307648802, - 3549680218, - 3741130878, - 3203014405, - 273167034, - 1519204312, - 284516623, - 1022735666, - 1437750561, - 4267428899, - 4104148439, - 3242329381, - 301163957, - 4097730687, - 770563184, - 2441374669, - 102963424, - 1117376366, - 2563278983, - 1277325982, - 2536623022, - 2692967409, - 272991117, - 2893642321, - 1152758362, - 3441250261, - 3080798735, - 4280116166, - 2612499442, - 3797967993, - 2422356069, + 3593880178, + 4037354333, + 3115330823, + 3329221346, + 1285131282, + 2636057146, + 4122318862, + 1399352256, + 4202661619, + 196131400, + 424123635, + 87673298, + 2749725413, + 1375039539, + 377452600, + 3464350483, + 3865363635, + 1938149974, + 128348290, + 2825817234, + 2004248264, + 684762773, + 2349236384, + 1600339859, + 2291218709, + 107894378, + 3964540342, + 2834440759, + 2545967188, + 1492688522, + 1085528836, + 457442101, + 3456842820, + 3303081587, + 433115674, + 2105832970, + 505826677, + 3046221728, + 965857228, + 3181483455, + 3364668708, + 3344406113, + 2708986004, + 1134352949, + 3161263094, + 1094800141, + 1388977956, + 1664409105, + 1405638671, ]; static const List _envieddataapiKeyHere = [ - 3521889115, - 3131151040, - 2443346533, - 2394277927, - 2311188617, - 2619049274, - 2516093548, - 2794126677, - 2953064842, - 1694731665, - 2975020785, - 3609741722, - 3847995827, - 4287998355, - 3399549804, - 1067428463, - 2763677498, - 357589794, - 1307648845, - 3549680183, - 3741130806, - 3203014517, - 273167087, - 1519204277, - 284516712, - 1022735739, - 1437750619, - 4267428971, - 4104148448, - 3242329440, - 301164001, - 4097730586, - 770563128, - 2441374708, - 102963352, - 1117376308, - 2563279039, - 1277326028, - 2536623065, - 2692967350, - 272991178, - 2893642344, - 1152758277, - 3441250194, - 3080798775, - 4280116156, - 2612499370, - 3797967936, - 2422356004, + 3593880085, + 4037354242, + 3115330896, + 3329221292, + 1285131335, + 2636057176, + 4122318907, + 1399352204, + 4202661598, + 196131388, + 424123521, + 87673275, + 2749725333, + 1375039561, + 377452559, + 3464350526, + 3865363701, + 1938149998, + 128348397, + 2825817343, + 2004248192, + 684762853, + 2349236469, + 1600339966, + 2291218802, + 107894307, + 3964540364, + 2834440831, + 2545967203, + 1492688591, + 1085528912, + 457442128, + 3456842764, + 3303081546, + 433115746, + 2105833040, + 505826637, + 3046221810, + 965857211, + 3181483512, + 3364668771, + 3344406104, + 2708986059, + 1134353010, + 3161263054, + 1094800247, + 1388978044, + 1664409128, + 1405638734, ]; static final String apiKeyHere = String.fromCharCodes(List.generate( @@ -650,159 +686,159 @@ final class _Env { ).map((int i) => _envieddataapiKeyHere[i] ^ _enviedkeyapiKeyHere[i])); static const List _enviedkeygetLocationAreaLinks = [ - 2626270296, - 1741796673, - 518035337, - 3301641045, - 878093001, - 1427873372, - 918606978, - 2703373983, - 267746136, - 3731526489, - 3120474369, - 751393628, - 2530867291, - 3594063363, - 3144272056, - 422455027, - 843161705, - 196688524, - 2797711403, - 1921602924, - 3519145468, - 1569691350, - 50683386, - 2362676010, - 4215822204, - 3984041697, - 493046496, - 1666451100, - 294583716, - 2723229791, - 2346944873, - 4138756064, - 218489931, - 1202469687, - 1935357142, - 1346258518, - 281547117, - 4285357521, - 3072016472, - 1204583230, - 2247916969, - 119053379, - 3152312439, - 1828833598, - 1046910775, - 181531484, - 2906688197, - 3068435514, - 2579632210, - 4037962605, - 1104578010, - 897149386, - 2742571073, - 168964491, - 97672751, - 660351027, - 3677931830, - 4140331676, - 2191520785, - 851627041, - 1449538279, - 1403622450, - 3275153953, - 1147396234, - 3583567751, - 340926603, - 181622573, - 753233016, - 3073821743, - 4093193825, - 3217222748, - 3153619360, - 1197696673, - 1324094857, - 3596348852, + 1030983922, + 1830364909, + 4257635333, + 2070459031, + 2874292621, + 3209331280, + 3419006876, + 4108543843, + 2552056646, + 1917135110, + 1334924226, + 893905685, + 2788423083, + 340412531, + 4069627648, + 3309198037, + 3919220751, + 2102262303, + 2507660039, + 4214099604, + 2154338237, + 1832691520, + 4250994444, + 2295963708, + 1171285399, + 1996340564, + 72923603, + 3905128695, + 1174399797, + 2243956636, + 3444206530, + 2218631810, + 524164796, + 1238945992, + 3954227757, + 2187942734, + 1868459471, + 353049418, + 348793190, + 2570486058, + 1157308117, + 1607877570, + 540613580, + 4135556821, + 2689807102, + 1011590630, + 1193275234, + 2447038561, + 56196918, + 746761441, + 1870817297, + 2799609826, + 801490819, + 3321627056, + 3688403481, + 81886784, + 2611774327, + 570211596, + 993975372, + 1503632901, + 1042014144, + 538424138, + 2058773924, + 2531437694, + 2954615420, + 261974006, + 1020664114, + 3048633794, + 2032689135, + 3297900598, + 3176408977, + 455944069, + 2406241870, + 4203167376, + 62851156, ]; static const List _envieddatagetLocationAreaLinks = [ - 2626270256, - 1741796661, - 518035453, - 3301640997, - 878092986, - 1427873382, - 918607021, - 2703374000, - 267746105, - 3731526441, - 3120474472, - 751393650, - 2530867247, - 3594063473, - 3144272081, - 422454915, - 843161619, - 196688545, - 2797711438, - 1921602827, - 3519145349, - 1569691302, - 50683278, - 2362675972, - 4215822111, - 3984041614, - 493046413, - 1666451123, - 294583760, - 2723229741, - 2346944768, - 4138755984, - 218489905, - 1202469656, - 1935357092, - 1346258495, - 281547017, - 4285357492, - 3072016503, - 1204583250, - 2247916998, - 119053344, - 3152312342, - 1828833610, - 1046910814, - 181531443, - 2906688171, - 3068435477, - 2579632181, - 4037962504, - 1104577966, - 897149333, - 2742571053, - 168964580, - 97672780, - 660351058, - 3677931842, - 4140331765, - 2191520894, - 851627087, - 1449538232, - 1403622483, - 3275154003, - 1147396335, - 3583567846, - 340926676, - 181622593, - 753232913, - 3073821761, - 4093193738, - 3217222703, - 3153619342, - 1197696721, - 1324094945, - 3596348868, + 1030983834, + 1830364825, + 4257635441, + 2070459111, + 2874292734, + 3209331306, + 3419006899, + 4108543820, + 2552056615, + 1917135222, + 1334924203, + 893905723, + 2788423135, + 340412417, + 4069627753, + 3309197989, + 3919220853, + 2102262322, + 2507660130, + 4214099699, + 2154338244, + 1832691504, + 4250994552, + 2295963666, + 1171285492, + 1996340539, + 72923582, + 3905128664, + 1174399809, + 2243956718, + 3444206507, + 2218631922, + 524164806, + 1238946023, + 3954227807, + 2187942695, + 1868459435, + 353049391, + 348793161, + 2570486086, + 1157308090, + 1607877537, + 540613549, + 4135556769, + 2689806999, + 1011590537, + 1193275148, + 2447038542, + 56196945, + 746761348, + 1870817381, + 2799609789, + 801490927, + 3321627103, + 3688403578, + 81886753, + 2611774211, + 570211685, + 993975331, + 1503633003, + 1042014111, + 538424107, + 2058773974, + 2531437595, + 2954615325, + 261973929, + 1020664158, + 3048633771, + 2032689025, + 3297900637, + 3176409058, + 455944107, + 2406241854, + 4203167480, + 62851108, ]; static final String getLocationAreaLinks = String.fromCharCodes( @@ -815,53 +851,53 @@ final class _Env { _enviedkeygetLocationAreaLinks[i])); static const List _enviedkeyinitializationVector = [ - 3809728029, - 1998854863, - 975705545, - 679684171, - 2890087782, - 2110780016, - 2397941912, - 1328655466, - 1613395370, - 3422310848, - 3436599769, - 2672212147, - 1630898199, - 2737342975, - 4034234944, - 510948533, - 3796005112, - 1700072499, - 1588843190, - 1809798183, - 929450117, - 1793719613, + 3611405044, + 1380641868, + 1273467373, + 135561897, + 118679966, + 3614237367, + 1922052817, + 44719497, + 925787378, + 440289953, + 2851169437, + 323580025, + 1402542113, + 1981761193, + 3861396433, + 3368225369, + 4095292677, + 2919502404, + 1519960212, + 77225798, + 3334486119, + 42270059, ]; static const List _envieddatainitializationVector = [ - 3809728108, - 1998854839, - 975705519, - 679684146, - 2890087692, - 2110779909, - 2397942003, - 1328655389, - 1613395397, - 3422310821, - 3436599742, - 2672212161, - 1630898297, - 2737342877, - 4034234921, - 510948547, - 3796005024, - 1700072513, - 1588843246, - 1809798229, - 929450183, - 1793719631, + 3611404933, + 1380641844, + 1273467275, + 135561936, + 118680052, + 3614237378, + 1922052794, + 44719614, + 925787293, + 440289988, + 2851169530, + 323579915, + 1402542159, + 1981761227, + 3861396408, + 3368225327, + 4095292765, + 2919502390, + 1519960268, + 77225780, + 3334486053, + 42269977, ]; static final String initializationVector = String.fromCharCodes( @@ -874,129 +910,129 @@ final class _Env { _enviedkeyinitializationVector[i])); static const List _enviedkeybasicCompareFacesURL = [ - 472376205, - 1377101922, - 611096669, - 2027852492, - 2494886830, - 1683058442, - 316078402, - 3686133651, - 1189583663, - 3785088471, - 922934964, - 1863695961, - 1262851744, - 1027094393, - 71148704, - 4005104662, - 147204872, - 136985631, - 3433501480, - 2704139371, - 2033371242, - 1076055343, - 2138610470, - 3849653994, - 3496044858, - 84991795, - 29878619, - 1675038362, - 262168234, - 434652554, - 3531138445, - 144490339, - 2051876323, - 3399406505, - 3459652494, - 1955164246, - 355589863, - 769795884, - 58238227, - 878031001, - 1367294658, - 669691300, - 3442529320, - 3163488613, - 182851571, - 732351962, - 12198393, - 3652795788, - 1457520531, - 3779460099, - 4063734999, - 2833201384, - 3092800276, - 88450164, - 1591870821, - 183183123, - 537514855, - 1422889075, - 3817920137, - 857548906, + 2963278999, + 1231706159, + 1237829897, + 4164326574, + 1203544259, + 419803506, + 2563430362, + 1145147898, + 4266713877, + 1687422842, + 3789397071, + 2940343940, + 369248159, + 26053090, + 1032102515, + 3003665131, + 4209090589, + 169818371, + 3264705697, + 2683002705, + 1656427848, + 2918553424, + 3219753291, + 1325749876, + 59503219, + 3045734554, + 566252987, + 3551738816, + 618970155, + 3815690867, + 3857590562, + 3591437638, + 401634963, + 4087492929, + 3993538514, + 1037866011, + 4195104667, + 2387751973, + 2952442828, + 826838868, + 4252250418, + 2857196284, + 3186847572, + 1241236113, + 2515367635, + 1402161508, + 1350867777, + 2838494564, + 3444584791, + 496640011, + 3883749492, + 2097541549, + 3312862646, + 3542005587, + 2000363680, + 2764561888, + 1454472523, + 3973161279, + 3753781162, + 4282368754, ]; static const List _envieddatabasicCompareFacesURL = [ - 472376293, - 1377101846, - 611096617, - 2027852476, - 2494886877, - 1683058480, - 316078445, - 3686133692, - 1189583689, - 3785088438, - 922934999, - 1863695932, - 1262851725, - 1027094301, - 71148741, - 4005104738, - 147204973, - 136985724, - 3433501532, - 2704139334, - 2033371148, - 1076055321, - 2138610463, - 3849653976, - 3496044814, - 84991744, - 29878626, - 1675038376, - 262168265, - 434652606, - 3531138542, - 144490324, - 2051876301, - 3399406529, - 3459652587, - 1955164196, - 355589768, - 769795911, - 58238310, - 878031096, - 1367294642, - 669691348, - 3442529286, - 3163488518, - 182851484, - 732351927, - 12198358, - 3652795887, - 1457520636, - 3779460206, - 4063734951, - 2833201289, - 3092800358, - 88450065, - 1591870778, - 183183221, - 537514758, - 1422888976, - 3817920236, - 857548825, + 2963279103, + 1231706203, + 1237830013, + 4164326622, + 1203544240, + 419803464, + 2563430389, + 1145147861, + 4266713971, + 1687422747, + 3789397036, + 2940344033, + 369248178, + 26052998, + 1032102422, + 3003665055, + 4209090680, + 169818464, + 3264705749, + 2683002748, + 1656427822, + 2918553446, + 3219753330, + 1325749830, + 59503175, + 3045734569, + 566252930, + 3551738866, + 618970184, + 3815690823, + 3857590593, + 3591437681, + 401635005, + 4087492905, + 3993538487, + 1037866089, + 4195104756, + 2387752014, + 2952442809, + 826838837, + 4252250434, + 2857196172, + 3186847610, + 1241236210, + 2515367612, + 1402161417, + 1350867822, + 2838494471, + 3444584760, + 496640102, + 3883749380, + 2097541580, + 3312862660, + 3542005558, + 2000363775, + 2764561798, + 1454472490, + 3973161308, + 3753781199, + 4282368641, ]; static final String basicCompareFacesURL = String.fromCharCodes( @@ -1009,91 +1045,91 @@ final class _Env { _enviedkeybasicCompareFacesURL[i])); static const List _enviedkeyaccountSIDTwillo = [ - 31530117, - 2328403580, - 1645661572, - 2328363988, - 3333950332, - 1504047822, - 3450642241, - 1513185303, - 2294344700, - 1742580947, - 1338916511, - 934766452, - 2781384218, - 280989638, - 346786503, - 2657011592, - 1356070248, - 971920406, - 3897898351, - 4266863898, - 1026589170, - 3700632823, - 1721964984, - 2068378499, - 470195771, - 1203969691, - 2238204253, - 2176461753, - 3593126829, - 2744981135, - 484601721, - 2409512497, - 2407843644, - 2729348738, - 3466081330, - 3820154405, - 1245043275, - 1701705646, - 2163821175, - 863370699, - 3028171686, + 3421322762, + 2857483697, + 1955904938, + 1002131221, + 1252992660, + 3903676813, + 1638675655, + 3125190302, + 471338879, + 2533329970, + 4172061735, + 3395523882, + 262355352, + 1111191083, + 3582071858, + 4212909896, + 3262824484, + 3408108420, + 221460951, + 1865913905, + 2183473689, + 3314271961, + 2123442263, + 2285068125, + 950274046, + 3765122410, + 1820216594, + 3752290337, + 2150546053, + 2417151322, + 2200004699, + 2374999429, + 2513609130, + 3373568499, + 1051756201, + 38199397, + 1252504835, + 3155932201, + 1936810569, + 1914142812, + 3795479208, ]; static const List _envieddataaccountSIDTwillo = [ - 31530196, - 2328403514, - 1645661692, - 2328364004, - 3333950221, - 1504047799, - 3450642293, - 1513185314, - 2294344650, - 1742580921, - 1338916586, - 934766366, - 2781384233, - 280989694, - 346786548, - 2657011686, - 1356070225, - 971920494, - 3897898266, - 4266863971, - 1026589120, - 3700632774, - 1721964929, - 2068378551, - 470195786, - 1203969709, - 2238204271, - 2176461696, - 3593126876, - 2744981182, - 484601631, - 2409512539, - 2407843596, - 2729348859, - 3466081285, - 3820154493, - 1245043257, - 1701705718, - 2163821083, - 863370633, - 3028171722, + 3421322843, + 2857483767, + 1955904978, + 1002131237, + 1252992741, + 3903676916, + 1638675699, + 3125190315, + 471338825, + 2533330008, + 4172061778, + 3395523904, + 262355371, + 1111191059, + 3582071809, + 4212909862, + 3262824477, + 3408108540, + 221460898, + 1865913928, + 2183473707, + 3314271976, + 2123442286, + 2285068137, + 950273935, + 3765122396, + 1820216608, + 3752290328, + 2150546164, + 2417151339, + 2200004669, + 2374999535, + 2513609114, + 3373568394, + 1051756190, + 38199357, + 1252504945, + 3155932273, + 1936810533, + 1914142750, + 3795479236, ]; static final String accountSIDTwillo = String.fromCharCodes( @@ -1105,325 +1141,325 @@ final class _Env { _envieddataaccountSIDTwillo[i] ^ _enviedkeyaccountSIDTwillo[i])); static const List _enviedkeyserverAPI = [ - 580482895, - 1835442718, - 2941458900, - 4070451308, - 4065914616, - 2579847422, - 4182622756, - 3553339445, - 3369960000, - 3891346444, - 1726263968, - 4024888058, - 2184271837, - 2344502292, - 1974380436, - 1900142910, - 1312779586, - 802698776, - 2283986062, - 4291551414, - 2447586560, - 808841494, - 805636767, - 1974506729, - 2016315280, - 2533996102, - 2425357179, - 422838069, - 2110001392, - 1207993287, - 1959793221, - 2152394810, - 2411071930, - 3497919487, - 2209948908, - 3507353743, - 1589042464, - 884008329, - 2794089793, - 281361841, - 2669188740, - 165536921, - 989184014, - 1952540222, - 2393383661, - 2708933648, - 1769818508, - 3390863448, - 3974824415, - 3683153838, - 4028069432, - 2109066345, - 2733596039, - 923444966, - 393251148, - 2313614170, - 2022018841, - 873870991, - 1862858169, - 4266148470, - 3645844975, - 1853606740, - 2474688974, - 3625460306, - 2995745068, - 768828554, - 480285011, - 976082060, - 1854720541, - 2242983950, - 2858954671, - 1229048593, - 2357435126, - 3364394364, - 4245211661, - 2922439924, - 1307919361, - 3190184582, - 41880171, - 3746138171, - 2507170420, - 2449351474, - 3585605562, - 875352057, - 401513929, - 3216567822, - 2068851932, - 354947385, - 2137622900, - 3157301992, - 2384037197, - 838980749, - 597992101, - 1429540063, - 3019383895, - 2942813428, - 440929942, - 4228784785, - 2145679074, - 980274463, - 863554896, - 1966102648, - 3221914975, - 662114460, - 3976126858, - 1885069109, - 760348382, - 1662309788, - 2189817879, - 1766231192, - 1845029266, - 949075715, - 2378559660, - 3004302284, - 229974251, - 2121410184, - 2469892649, - 1727212608, - 483264031, - 4226386007, - 831862189, - 1068220491, - 506298360, - 3950019853, - 2517357539, - 1206327252, - 3607087926, - 263469195, - 1859825592, - 2886541109, - 2614404097, - 2474267975, - 1081440935, - 4010048091, - 1503805146, - 3912256730, - 2711779974, - 1801913802, - 2069581639, - 3493264938, - 2750338363, - 3503163551, - 3396860163, - 1453698333, - 3111251588, - 2079854471, - 2058765397, - 2239791226, - 1491293624, - 3648150745, - 665731026, - 3616211071, - 1530850752, - 3922932661, - 2652625887, - 1711555314, - 1811382376, - 735321266, + 3030481933, + 561731687, + 1532468078, + 1841881342, + 3767318582, + 2729953903, + 2148714654, + 715605698, + 3361375633, + 1580309697, + 3136913287, + 2879767580, + 4054265575, + 438717263, + 3463805833, + 3239706292, + 3199814531, + 1839544413, + 2332305922, + 285504926, + 3463188451, + 1995243562, + 1826351244, + 2233571696, + 2792829828, + 759113286, + 3865259689, + 661625175, + 2471558285, + 2389747341, + 2380997961, + 3079386356, + 2776300218, + 2908135291, + 384810040, + 2345532123, + 3322230495, + 4115556331, + 903800075, + 1697115129, + 815029601, + 4010386958, + 3042825640, + 2782017991, + 4190416181, + 3779270322, + 1152131118, + 3726609728, + 2617153740, + 141497699, + 1042108120, + 3991368088, + 2193296480, + 2292270379, + 2268330230, + 1982646414, + 719126335, + 1489335517, + 1039370592, + 3398934773, + 1468453387, + 44241409, + 2946069235, + 1084815681, + 4147598144, + 3333411372, + 3449275664, + 52122604, + 1203902763, + 3073124928, + 3598641133, + 3414445114, + 3662147358, + 4168900863, + 3346502965, + 3912207598, + 2712653385, + 1193782938, + 435958833, + 2117539689, + 3683582843, + 2970678956, + 1069484622, + 3682945222, + 4173875370, + 665857694, + 2080896536, + 931921475, + 3419181311, + 3783734052, + 2624902460, + 3021927546, + 1840830698, + 878242419, + 2643783826, + 577583084, + 3382465826, + 2988376195, + 4246655135, + 2413284050, + 902828880, + 1590761919, + 1401586537, + 20073247, + 475617636, + 4294289045, + 2355132819, + 2927711333, + 3749093655, + 709784377, + 666786023, + 1297361891, + 4135437155, + 289723421, + 3953242104, + 1491418928, + 3625744521, + 395040664, + 403841843, + 3997897032, + 2017814758, + 1440850690, + 1402305980, + 1206349808, + 1456809692, + 2878200037, + 4244717068, + 1298661842, + 3525663166, + 716070213, + 4165832518, + 2594039137, + 1620855140, + 2715611197, + 3944530774, + 3038387789, + 2919090311, + 1217557740, + 3002762851, + 1868403459, + 2876075962, + 2891020877, + 4054243556, + 4068284405, + 2339901513, + 2003545733, + 1254196169, + 3426796080, + 2576315786, + 2178899200, + 3834253677, + 3213527118, + 1676097518, + 4076564366, + 3577752839, + 3911289599, + 4055507396, + 4072059363, ]; static const List _envieddataserverAPI = [ - 580482846, - 1835442767, - 2941458821, - 4070451261, - 4065914519, - 2579847324, - 4182622839, - 3553339463, - 3369959986, - 3891346506, - 1726264009, - 4024888000, - 2184271756, - 2344502338, - 1974380485, - 1900142854, - 1312779637, - 802698848, - 2283986139, - 4291551361, - 2447586682, - 808841569, - 805636828, - 1974506655, - 2016315389, - 2533996060, - 2425357057, - 422838127, - 2110001300, - 1207993254, - 1959793213, - 2152394831, - 2411071977, - 3497919437, - 2209948810, - 3507353789, - 1589042451, - 884008400, - 2794089845, - 281361884, - 2669188862, - 165536942, - 989184067, - 1952540228, - 2393383572, - 2708933727, - 1769818614, - 3390863402, - 3974824423, - 3683153857, - 4028069468, - 2109066331, - 2733596133, - 923444884, - 393251194, - 2313614097, - 2022018880, - 873871094, - 1862858204, - 4266148400, - 3645844878, - 1853606656, - 2474688920, - 3625460254, - 2995745131, - 768828601, - 480284952, - 976082111, - 1854720629, - 2242984054, - 2858954650, - 1229048651, - 2357435031, - 3364394281, - 4245211764, - 2922439820, - 1307919414, - 3190184675, - 41880114, - 3746138189, - 2507170357, - 2449351531, - 3585605578, - 875351992, - 401513887, - 3216567914, - 2068851863, - 354947410, - 2137622873, - 3157301978, - 2384037237, - 838980795, - 597992171, - 1429539979, - 3019383813, - 2942813341, - 440929957, - 4228784875, - 2145678993, - 980274470, - 863554873, - 1966102571, - 3221914896, - 662114546, - 3976126930, - 1885069121, - 760348294, - 1662309838, - 2189817950, - 1766231264, - 1845029345, - 949075828, - 2378559691, - 3004302335, - 229974176, - 2121410285, - 2469892682, - 1727212546, - 483264114, - 4226385956, - 831862209, - 1068220536, - 506298286, - 3950019957, - 2517357481, - 1206327277, - 3607087937, - 263469252, - 1859825557, - 2886541123, - 2614404168, - 2474267959, - 1081440976, - 4010048046, - 1503805166, - 3912256650, - 2711780080, - 1801913853, - 2069581603, - 3493264961, - 2750338419, - 3503163636, - 3396860251, - 1453698419, - 3111251693, - 2079854578, - 2058765357, - 2239791159, - 1491293675, - 3648150685, - 665730997, - 3616210984, - 1530850712, - 3922932679, - 2652625799, - 1711555230, - 1811382314, - 735321310, + 3030482012, + 561731638, + 1532468031, + 1841881263, + 3767318617, + 2729953805, + 2148714701, + 715605680, + 3361375715, + 1580309639, + 3136913390, + 2879767590, + 4054265526, + 438717209, + 3463805912, + 3239706252, + 3199814580, + 1839544357, + 2332306007, + 285504937, + 3463188377, + 1995243613, + 1826351311, + 2233571590, + 2792829929, + 759113244, + 3865259731, + 661625101, + 2471558377, + 2389747436, + 2380997937, + 3079386241, + 2776300265, + 2908135241, + 384810078, + 2345532137, + 3322230508, + 4115556274, + 903800127, + 1697115028, + 815029531, + 4010387001, + 3042825701, + 2782017981, + 4190416204, + 3779270397, + 1152131156, + 3726609714, + 2617153780, + 141497612, + 1042108092, + 3991368106, + 2193296386, + 2292270425, + 2268330176, + 1982646469, + 719126374, + 1489335460, + 1039370501, + 3398934707, + 1468453482, + 44241493, + 2946069157, + 1084815629, + 4147598087, + 3333411359, + 3449275739, + 52122591, + 1203902787, + 3073124920, + 3598641112, + 3414445152, + 3662147455, + 4168900778, + 3346502988, + 3912207510, + 2712653438, + 1193783039, + 435958888, + 2117539615, + 3683582778, + 2970679029, + 1069484606, + 3682945159, + 4173875452, + 665857786, + 2080896595, + 931921448, + 3419181266, + 3783734038, + 2624902404, + 3021927500, + 1840830628, + 878242343, + 2643783872, + 577582981, + 3382465809, + 2988376313, + 4246655212, + 2413284075, + 902828857, + 1590761964, + 1401586470, + 20073329, + 475617596, + 4294289121, + 2355132875, + 2927711287, + 3749093726, + 709784385, + 666785940, + 1297361812, + 4135437060, + 289723438, + 3953242035, + 1491418965, + 3625744618, + 395040730, + 403841886, + 3997897019, + 2017814666, + 1440850737, + 1402306026, + 1206349704, + 1456809622, + 2878200028, + 4244717179, + 1298661789, + 3525663123, + 716070195, + 4165832463, + 2594039057, + 1620855059, + 2715611208, + 3944530786, + 3038387741, + 2919090417, + 1217557723, + 3002762759, + 1868403560, + 2876076018, + 2891020838, + 4054243516, + 4068284315, + 2339901472, + 2003545840, + 1254196145, + 3426796157, + 2576315865, + 2178899268, + 3834253578, + 3213527065, + 1676097462, + 4076564476, + 3577752927, + 3911289491, + 4055507334, + 4072059279, ]; static final String serverAPI = String.fromCharCodes(List.generate( @@ -1433,87 +1469,87 @@ final class _Env { ).map((int i) => _envieddataserverAPI[i] ^ _enviedkeyserverAPI[i])); static const List _enviedkeymapAPIKEY = [ - 425548551, - 3487009349, - 2204841978, - 208497483, - 3914924830, - 1637423693, - 2025139438, - 2294286733, - 824051213, - 2349267450, - 738092977, - 2842299428, - 3549254987, - 3164398830, - 2267197641, - 4073173985, - 2403090229, - 3335582284, - 881467741, - 3733073233, - 2162338795, - 3087701899, - 2259251692, - 1102683574, - 1528703652, - 2626938577, - 2744451870, - 736285201, - 1429144431, - 4209273964, - 3738057451, - 233429985, - 1595449468, - 22902345, - 232912608, - 82789572, - 2219379834, - 2224825214, - 447181081, + 139422818, + 1274894117, + 705367475, + 190715590, + 2885381275, + 1237552208, + 789992513, + 4210300781, + 831066256, + 1670337347, + 2374393620, + 1329777940, + 3323028931, + 211302211, + 500539022, + 189099516, + 3783448816, + 2865288645, + 954999734, + 3741670607, + 630560556, + 553973186, + 2622942441, + 753712015, + 2703584814, + 577897202, + 3848612565, + 968474137, + 2517180679, + 2557601828, + 1665477934, + 4217909129, + 2053579784, + 2709411570, + 800576793, + 2802364580, + 1739054168, + 185352856, + 3397262411, ]; static const List _envieddatamapAPIKEY = [ - 425548614, - 3487009292, - 2204841856, - 208497450, - 3914924877, - 1637423668, - 2025139375, - 2294286813, - 824051275, - 2349267368, - 738093038, - 2842299516, - 3549254953, - 3164398780, - 2267197575, - 4073173969, - 2403090285, - 3335582230, - 881467752, - 3733073176, - 2162338705, - 3087701944, - 2259251629, - 1102683631, - 1528703712, - 2626938555, - 2744451920, - 736285256, - 1429144359, - 4209273899, - 3738057377, - 233429926, - 1595449422, - 22902330, - 232912594, - 82789525, - 2219379757, - 2224825097, - 447181140, + 139422755, + 1274894188, + 705367497, + 190715559, + 2885381320, + 1237552169, + 789992448, + 4210300733, + 831066326, + 1670337297, + 2374393675, + 1329777996, + 3323028897, + 211302161, + 500539072, + 189099468, + 3783448744, + 2865288607, + 954999683, + 3741670534, + 630560598, + 553973233, + 2622942376, + 753712086, + 2703584874, + 577897112, + 3848612507, + 968474176, + 2517180751, + 2557601891, + 1665477988, + 4217909198, + 2053579834, + 2709411457, + 800576811, + 2802364661, + 1739054095, + 185352943, + 3397262342, ]; static final String mapAPIKEY = String.fromCharCodes(List.generate( @@ -1523,87 +1559,87 @@ final class _Env { ).map((int i) => _envieddatamapAPIKEY[i] ^ _enviedkeymapAPIKEY[i])); static const List _enviedkeymapAPIKEYIOS = [ - 2893396361, - 513335744, - 2068518394, - 2414476370, - 1081657099, - 1568201161, - 3048011586, - 2650239566, - 2819658788, - 3640526074, - 3942404245, - 2289786830, - 868364213, - 3048269821, - 1751483047, - 737701160, - 1798368749, - 4110513202, - 1287642977, - 1641114019, - 4248953215, - 407347346, - 1217154371, - 1781486548, - 1211209959, - 835240766, - 1271226244, - 1557391371, - 2273924682, - 3174573320, - 2286249308, - 2270936328, - 1729454033, - 3277395540, - 3410959213, - 2295392236, - 2693615031, - 1581026537, - 3704592660, + 501088550, + 666539920, + 4053119542, + 1824218517, + 2072254230, + 1706975033, + 3890071339, + 3548546957, + 1454318904, + 3829309755, + 2379226428, + 582640862, + 1409675323, + 2677261074, + 116284009, + 2837382892, + 131049603, + 3570702196, + 667973366, + 93631426, + 1310172929, + 3364464954, + 1899319673, + 476934999, + 351204332, + 935705275, + 2626325896, + 689073005, + 3190766987, + 3120074678, + 165345389, + 700148630, + 2884292999, + 1431652494, + 2619573134, + 1382531073, + 91332797, + 2433499408, + 329003519, ]; static const List _envieddatamapAPIKEYIOS = [ - 2893396424, - 513335689, - 2068518272, - 2414476339, - 1081657176, - 1568201136, - 3048011526, - 2650239530, - 2819658837, - 3640525969, - 3942404313, - 2289786755, - 868364278, - 3048269711, - 1751483094, - 737701186, - 1798368699, - 4110513216, - 1287642895, - 1641114004, - 4248953127, - 407347455, - 1217154338, - 1781486512, - 1211209902, - 835240783, - 1271226365, - 1557391461, - 2273924659, - 3174573415, - 2286249246, - 2270936425, - 1729454054, - 3277395460, - 3410959199, - 2295392219, - 2693615096, - 1581026444, - 3704592729, + 501088615, + 666539993, + 4053119564, + 1824218612, + 2072254277, + 1706975040, + 3890071407, + 3548547049, + 1454318921, + 3829309776, + 2379226480, + 582640787, + 1409675384, + 2677261152, + 116283928, + 2837382790, + 131049685, + 3570702086, + 667973272, + 93631477, + 1310173017, + 3364464983, + 1899319576, + 476934963, + 351204261, + 935705290, + 2626326001, + 689072899, + 3190767090, + 3120074713, + 165345327, + 700148727, + 2884293040, + 1431652574, + 2619573180, + 1382531126, + 91332850, + 2433499509, + 329003442, ]; static final String mapAPIKEYIOS = String.fromCharCodes(List.generate( @@ -1613,71 +1649,71 @@ final class _Env { ).map((int i) => _envieddatamapAPIKEYIOS[i] ^ _enviedkeymapAPIKEYIOS[i])); static const List _enviedkeytwilloRecoveryCode = [ - 2234757470, - 2823870356, - 2944172446, - 1443478165, - 1686016853, - 1469546627, - 3020584903, - 3148666048, - 3907641728, - 3032423413, - 1913672112, - 601297226, - 3258928682, - 332600292, - 3669907261, - 95647066, - 2847502101, - 2013214821, - 3467363881, - 582836582, - 3393417724, - 137306380, - 2088413537, - 542738940, - 339893170, - 35029918, - 3267638520, - 2265244830, - 1785583226, - 1195749482, - 655551593, + 1803060704, + 221967584, + 432835583, + 1821726476, + 1226349559, + 3763530154, + 544814582, + 3629646694, + 201594051, + 2259326998, + 210178147, + 1274638712, + 1983209288, + 817991099, + 1380881987, + 2385653800, + 3524466903, + 2729798748, + 1380416107, + 445670555, + 3455719338, + 30921306, + 1021685465, + 2215645380, + 215122366, + 1249478418, + 551708365, + 2828195025, + 1800874424, + 1813381215, + 905465401, ]; static const List _envieddatatwilloRecoveryCode = [ - 2234757405, - 2823870421, - 2944172491, - 1443478178, - 1686016876, - 1469546695, - 3020584847, - 3148666000, - 3907641800, - 3032423364, - 1913672178, - 601297184, - 3258928751, - 332600285, - 3669907309, - 95646991, - 2847502173, - 2013214801, - 3467363948, - 582836530, - 3393417636, - 137306456, - 2088413490, - 542738852, - 339893224, - 35029958, - 3267638410, - 2265244870, - 1785583126, - 1195749416, - 655551493, + 1803060643, + 221967521, + 432835498, + 1821726523, + 1226349518, + 3763530222, + 544814526, + 3629646646, + 201593995, + 2259327015, + 210178081, + 1274638610, + 1983209229, + 817991042, + 1380881939, + 2385653885, + 3524466847, + 2729798760, + 1380416046, + 445670607, + 3455719410, + 30921230, + 1021685386, + 2215645340, + 215122404, + 1249478474, + 551708351, + 2828194953, + 1800874452, + 1813381149, + 905465429, ]; static final String twilloRecoveryCode = String.fromCharCodes( @@ -1689,87 +1725,87 @@ final class _Env { _envieddatatwilloRecoveryCode[i] ^ _enviedkeytwilloRecoveryCode[i])); static const List _enviedkeyauthTokenTwillo = [ - 2250685079, - 3080034425, - 3411410517, - 2272837658, - 1765925, - 3881531645, - 1994220529, - 2459031042, - 3700156960, - 796363549, - 598960503, - 1572227020, - 2816022387, - 3332087312, - 1104605389, - 2244239556, - 222644677, - 1632579294, - 1803748896, - 77338499, - 3799246880, - 2905444878, - 217877581, - 210856986, - 2638538215, - 2083282917, - 3982150718, - 807617947, - 3811711389, - 1051672478, - 2155115403, - 260854279, - 3123220859, - 2074201258, - 220324728, - 2862233325, - 3627721153, - 3548829119, - 3691948931, + 2605337086, + 253218539, + 1242078840, + 2571064566, + 2196923648, + 2996759701, + 2230313950, + 1379900346, + 2385774154, + 1278838377, + 3274709234, + 2950264869, + 1792474851, + 416552561, + 208109492, + 2473448525, + 1955114809, + 3148084352, + 3002432679, + 824898019, + 863883499, + 3849369907, + 748322049, + 3653825883, + 2668352116, + 781505256, + 1926531563, + 1126055465, + 1448047978, + 1887032217, + 2204162845, + 2965026673, + 2408707734, + 1763826856, + 3815008732, + 1651050897, + 2703845745, + 3052539282, + 1291302794, ]; static const List _envieddataauthTokenTwillo = [ - 2250685088, - 3080034377, - 3411410464, - 2272837667, - 1765917, - 3881531543, - 1994220420, - 2459031090, - 3700156946, - 796363564, - 598960451, - 1572226979, - 2816022283, - 3332087400, - 1104605433, - 2244239541, - 222644725, - 1632579243, - 1803748887, - 77338551, - 3799246864, - 2905444924, - 217877621, - 210857071, - 2638538199, - 2083282903, - 3982150671, - 807618030, - 3811711401, - 1051672559, - 2155115518, - 260854321, - 3123220814, - 2074201330, - 220324618, - 2862233269, - 3627721133, - 3548829181, - 3691949039, + 2605337033, + 253218523, + 1242078733, + 2571064527, + 2196923704, + 2996759807, + 2230313899, + 1379900298, + 2385774200, + 1278838360, + 3274709190, + 2950264906, + 1792474779, + 416552457, + 208109440, + 2473448508, + 1955114761, + 3148084469, + 3002432656, + 824898007, + 863883483, + 3849369857, + 748322105, + 3653825838, + 2668352068, + 781505242, + 1926531546, + 1126055516, + 1448047966, + 1887032296, + 2204162920, + 2965026631, + 2408707747, + 1763826928, + 3815008686, + 1651050953, + 2703845661, + 3052539344, + 1291302886, ]; static final String authTokenTwillo = String.fromCharCodes(List.generate( @@ -1780,125 +1816,125 @@ final class _Env { (int i) => _envieddataauthTokenTwillo[i] ^ _enviedkeyauthTokenTwillo[i])); static const List _enviedkeychatGPTkey = [ - 3076972631, - 233610872, - 3855803138, - 2664659184, - 4127009820, - 1929371821, - 1954777596, - 3159473472, - 2166564441, - 385981232, - 2684911060, - 4047222989, - 3751031726, - 1474343071, - 4004834243, - 805766408, - 2869338656, - 1965348856, - 2989733618, - 4104837283, - 1872881749, - 1800180413, - 1328333265, - 1297307716, - 644084177, - 3305641843, - 2527626036, - 3986952629, - 6991106, - 2823582772, - 2121790543, - 583178389, - 3037696190, - 3984366504, - 3123059956, - 2046800312, - 1311710224, - 2261569783, - 3871964989, - 4097262295, - 1868919340, - 3655142811, - 3911439511, - 3038317001, - 330430579, - 3320350377, - 2512373135, - 3788935342, - 3288910012, - 2060032785, - 1056150322, - 1946317106, - 3255783419, - 3960082563, - 3739220646, - 3846887864, - 3474646260, - 3468618047, + 242389158, + 388191645, + 3905146314, + 1403215961, + 3224564508, + 350206627, + 616380616, + 2744215402, + 2923495073, + 548064766, + 3735391137, + 3834695638, + 906577526, + 2430929318, + 3767592332, + 2513066538, + 3933033600, + 1973603880, + 3000413891, + 917868357, + 3972029993, + 3413133128, + 1051136169, + 654488403, + 318621822, + 23601985, + 467751169, + 1259904615, + 1741531364, + 925428555, + 4013970699, + 3029798037, + 3371318464, + 3333039117, + 251851895, + 421179081, + 1927806760, + 763427961, + 2049921264, + 704701071, + 2677604537, + 3127931526, + 2675794296, + 3336932672, + 1808943782, + 4114362634, + 747091065, + 3482486270, + 632451631, + 2476307458, + 1019029766, + 137606893, + 2496755630, + 21526636, + 790264907, + 1732060293, + 1714553635, + 338936958, ]; static const List _envieddatachatGPTkey = [ - 3076972589, - 233610783, - 3855803183, - 2664659140, - 4127009887, - 1929371807, - 1954777546, - 3159473457, - 2166564461, - 385981283, - 2684910989, - 4047222954, - 3751031788, - 1474343124, - 4004834194, - 805766509, - 2869338728, - 1965348770, - 2989733558, - 4104837330, - 1872881726, - 1800180458, - 1328333246, - 1297307699, - 644084114, - 3305641802, - 2527626092, - 3986952647, - 6991226, - 2823582803, - 2121790490, - 583178448, - 3037696216, - 3984366589, - 3123059853, - 2046800257, - 1311710298, - 2261569701, - 3871965002, - 4097262309, - 1868919390, - 3655142902, - 3911439521, - 3038316952, - 330430529, - 3320350408, - 2512373227, - 3788935372, - 3288909967, - 2060032890, - 1056150360, - 1946317125, - 3255783331, - 3960082673, - 3739220734, - 3846887892, - 3474646198, - 3468618067, + 242389212, + 388191738, + 3905146343, + 1403215981, + 3224564575, + 350206609, + 616380670, + 2744215323, + 2923495061, + 548064685, + 3735391224, + 3834695601, + 906577460, + 2430929389, + 3767592413, + 2513066575, + 3933033672, + 1973603954, + 3000413831, + 917868340, + 3972030018, + 3413133087, + 1051136198, + 654488356, + 318621757, + 23602040, + 467751257, + 1259904533, + 1741531292, + 925428524, + 4013970782, + 3029798096, + 3371318438, + 3333039192, + 251851790, + 421179120, + 1927806818, + 763427883, + 2049921159, + 704701117, + 2677604555, + 3127931627, + 2675794254, + 3336932625, + 1808943764, + 4114362731, + 747090973, + 3482486172, + 632451612, + 2476307561, + 1019029868, + 137606810, + 2496755702, + 21526558, + 790264851, + 1732060393, + 1714553697, + 338936850, ]; static final String chatGPTkey = String.fromCharCodes(List.generate( @@ -1908,133 +1944,133 @@ final class _Env { ).map((int i) => _envieddatachatGPTkey[i] ^ _enviedkeychatGPTkey[i])); static const List _enviedkeytransactionCloude = [ - 472805154, - 3620922216, - 1209417936, - 1959862515, - 3784124114, - 864012968, - 922668237, - 4213979404, - 3061884882, - 3381360479, - 2820593137, - 3641564338, - 117635880, - 2660918676, - 1250241456, - 4109891623, - 2805853225, - 3919364412, - 1002390350, - 1247426981, - 3055661963, - 1802129948, - 1160157645, - 2246231243, - 2142240871, - 3178052050, - 3516043430, - 2060227602, - 712775192, - 3034662322, - 2562222654, - 4129599864, - 2626815835, - 3657632722, - 1936358393, - 3569956481, - 624136090, - 2176737269, - 257026260, - 2750144184, - 3749392605, - 649302641, - 1900805328, - 1310159538, - 1479839827, - 122827010, - 949124725, - 3003379382, - 3166066958, - 1815224280, - 3004550049, - 1148606401, - 1393931489, - 3194793772, - 3727107304, - 4206851573, - 144583504, - 2266261050, - 4051019361, - 3870688125, - 1121217561, - 401031049, + 1605517145, + 847036972, + 831201678, + 729285444, + 848447233, + 4232095709, + 2082361366, + 2495967342, + 534375107, + 2433952400, + 3151805455, + 1904326700, + 2527588209, + 164211966, + 758130668, + 3061164117, + 2662655498, + 943757324, + 456332828, + 910736731, + 4132294739, + 2736082735, + 99702804, + 2422846406, + 3549833802, + 344519539, + 2658163168, + 3273986910, + 1853442086, + 2687901792, + 3489667203, + 2421139504, + 2464001680, + 2440855538, + 3469916602, + 3071175721, + 3570873517, + 3516310567, + 97276872, + 3565398609, + 1488924307, + 2453451722, + 2278608336, + 251894312, + 1505616939, + 2547870165, + 2913618629, + 1049738335, + 772639180, + 1811076655, + 3760483362, + 2880001146, + 3208833118, + 1804865667, + 1770524918, + 168238452, + 3749409902, + 194472735, + 3785911494, + 2675977572, + 2247994263, + 902945434, ]; static const List _envieddatatransactionCloude = [ - 472805235, - 3620922112, - 1209417907, - 1959862404, - 3784124071, - 864012993, - 922668193, - 4213979491, - 3061884863, - 3381360430, - 2820593042, - 3641564381, - 117635905, - 2660918774, - 1250241418, - 4109891702, - 2805853311, - 3919364467, - 1002390289, - 1247427055, - 3055662021, - 1802129989, - 1160157576, - 2246231183, - 2142240853, - 3178051978, - 3516043505, - 2060227667, - 712775210, - 3034662276, - 2562222695, - 4129599776, - 2626815760, - 3657632657, - 1936358347, - 3569956565, - 624136138, - 2176737231, - 257026189, - 2750144243, - 3749392620, - 649302581, - 1900805254, - 1310159610, - 1479839845, - 122827089, - 949124671, - 3003379444, - 3166067005, - 1815224297, - 3004550127, - 1148606450, - 1393931441, - 3194793833, - 3727107289, - 4206851488, - 144583432, - 2266261064, - 4051019321, - 3870688017, - 1121217627, - 401031141, + 1605517064, + 847036996, + 831201773, + 729285427, + 848447348, + 4232095668, + 2082361466, + 2495967233, + 534375086, + 2433952481, + 3151805548, + 1904326723, + 2527588120, + 164211868, + 758130646, + 3061164036, + 2662655580, + 943757379, + 456332867, + 910736657, + 4132294685, + 2736082806, + 99702865, + 2422846338, + 3549833848, + 344519467, + 2658163127, + 3273986847, + 1853442068, + 2687901782, + 3489667290, + 2421139560, + 2464001755, + 2440855473, + 3469916552, + 3071175805, + 3570873597, + 3516310557, + 97276817, + 3565398554, + 1488924322, + 2453451662, + 2278608262, + 251894368, + 1505616925, + 2547870086, + 2913618575, + 1049738269, + 772639231, + 1811076638, + 3760483436, + 2880001097, + 3208833038, + 1804865734, + 1770524871, + 168238369, + 3749409846, + 194472813, + 3785911454, + 2675977480, + 2247994325, + 902945526, ]; static final String transactionCloude = String.fromCharCodes( @@ -2046,85 +2082,85 @@ final class _Env { _envieddatatransactionCloude[i] ^ _enviedkeytransactionCloude[i])); static const List _enviedkeyvisionApi = [ - 2967590344, - 2474725543, - 1406241387, - 1498436741, - 526245028, - 3987130965, - 3517165316, - 897372921, - 2442017571, - 3814577105, - 1209796995, - 1419406133, - 2210104087, - 2857669563, - 1167749082, - 886273733, - 3299938893, - 2956629120, - 3550741076, - 1015838403, - 177656672, - 1064189198, - 494910090, - 721651956, - 1397013203, - 1388657308, - 82070416, - 1082091549, - 569863029, - 2403040613, - 862258782, - 1154845907, - 548604589, - 4109016582, - 56666933, - 1503826816, - 948218968, - 2808338128, + 1097886132, + 3985866682, + 1524130217, + 2017777195, + 2473862255, + 2350128703, + 2120998776, + 4080028120, + 3590458402, + 1659718715, + 949059994, + 4079865077, + 3981420106, + 1990419615, + 3168376197, + 1728834287, + 4180401915, + 1781248630, + 2088244042, + 728927130, + 828324160, + 3481584062, + 2380366331, + 3845685290, + 2535277535, + 2196147607, + 2905796053, + 2446586623, + 2305220679, + 471959978, + 1374719153, + 3706601957, + 299827297, + 1138908884, + 2020617516, + 605697912, + 3713560841, + 2146932887, ]; static const List _envieddatavisionApi = [ - 2967590395, - 2474725591, - 1406241322, - 1498436809, - 526245079, - 3987130916, - 3517165399, - 897372842, - 2442017658, - 3814577029, - 1209797109, - 1419406159, - 2210104167, - 2857669517, - 1167749091, - 886273684, - 3299938936, - 2956629190, - 3550741017, - 1015838346, - 177656583, - 1064189292, - 494910192, - 721651870, - 1397013140, - 1388657322, - 82070474, - 1082091564, - 569862927, - 2403040526, - 862258730, - 1154845849, - 548604661, - 4109016692, - 56666989, - 1503826924, - 948218906, - 2808338108, + 1097886087, + 3985866698, + 1524130280, + 2017777255, + 2473862172, + 2350128718, + 2120998699, + 4080028043, + 3590458491, + 1659718767, + 949060076, + 4079864975, + 3981420090, + 1990419625, + 3168376252, + 1728834238, + 4180401870, + 1781248560, + 2088243975, + 728927187, + 828324135, + 3481584092, + 2380366209, + 3845685312, + 2535277464, + 2196147617, + 2905795983, + 2446586574, + 2305220669, + 471960001, + 1374719173, + 3706601903, + 299827257, + 1138908838, + 2020617588, + 605697812, + 3713560907, + 2146932987, ]; static final String visionApi = String.fromCharCodes(List.generate( @@ -2134,237 +2170,237 @@ final class _Env { ).map((int i) => _envieddatavisionApi[i] ^ _enviedkeyvisionApi[i])); static const List _enviedkeysecretKey = [ - 2969718055, - 2935343167, - 2849472478, - 2100031111, - 2651901348, - 2754777819, - 2063811922, - 3072649352, - 2845610933, - 3356671635, - 1037641211, - 3295756075, - 2284427694, - 449549751, - 2827877557, - 2680340565, - 3056624492, - 1123391132, - 3498266917, - 538161751, - 2249486933, - 3437258536, - 349868236, - 2528555312, - 3155144121, - 535761376, - 1683132533, - 2848483891, - 609790281, - 123015926, - 3257706385, - 739106566, - 1579743623, - 1414777454, - 3531398087, - 3126404648, - 382743479, - 1934037066, - 65160490, - 2416072659, - 378662937, - 524914193, - 3683082564, - 2209828668, - 902038867, - 570427156, - 2369598866, - 452350357, - 3550481446, - 3265789774, - 1767168572, - 1209509660, - 1681571496, - 2833861552, - 910538245, - 1761575970, - 3118049473, - 3930611636, - 1719501389, - 3267990702, - 1542311492, - 2555203140, - 2298139156, - 2359024833, - 597782173, - 584441895, - 2675905593, - 3611833850, - 1634456239, - 3664662358, - 3534659627, - 3580378315, - 74591140, - 4264645089, - 1918184189, - 2046128418, - 2015940555, - 1404933270, - 2679084032, - 3797180047, - 2045780199, - 2886723272, - 1436711787, - 267823866, - 132512460, - 3159472883, - 3627371004, - 178482617, - 1417759485, - 3688431978, - 3866060420, - 777932066, - 2690868827, - 4164424723, - 1652177860, - 2399918184, - 1637195333, - 3945753688, - 2986367507, - 997513839, - 2897810588, - 3351252544, - 1989611027, - 1900098588, - 4270093692, - 720924170, - 1559788162, - 2146849219, - 3266111975, - 2874846443, - 3584166023, - 3663654346, - 1477951860, - 757026766, + 4015336164, + 4294548072, + 436876341, + 3447150205, + 2949338070, + 4168115423, + 3831479947, + 2455497239, + 3318553548, + 3719678846, + 3143306693, + 2640311066, + 2781547097, + 3667788788, + 1069759370, + 3997190465, + 2079023732, + 3601413803, + 1246461120, + 2202454754, + 2895945296, + 2204185410, + 2095826370, + 3463443610, + 1469909706, + 689086128, + 123808287, + 360820091, + 3124020903, + 854007359, + 17959094, + 3166300703, + 1920913995, + 2167525277, + 2429935079, + 2679882670, + 4029844546, + 176479569, + 2897991528, + 2019932741, + 3122532927, + 4206737031, + 4112353882, + 2475750662, + 345881429, + 1949749200, + 2998244026, + 939489372, + 4225302176, + 1399356340, + 3394717684, + 2846691720, + 140799259, + 1229086340, + 2412393965, + 630987670, + 1173372796, + 498474180, + 4167759607, + 927891759, + 1638991689, + 1465633907, + 1564880863, + 975813684, + 1087683465, + 2436053240, + 2075821487, + 3300547877, + 4246275907, + 1672799032, + 3598755283, + 667102077, + 1568719535, + 1467241636, + 1215356121, + 3093530166, + 800208581, + 4235463897, + 3546980686, + 698373282, + 3388888848, + 2435402745, + 3441933671, + 3543881842, + 721738749, + 681589950, + 1017222993, + 2155086703, + 1581550, + 155640487, + 2162633079, + 3818614442, + 3351473848, + 2609147527, + 66219496, + 2112588228, + 1257866853, + 825421195, + 2126668981, + 4037999574, + 2841532656, + 1731364060, + 463935396, + 1477462254, + 2816849017, + 3545311289, + 430236379, + 1340026388, + 1353280830, + 3327415251, + 2581666353, + 3022581160, + 1220135957, + 1587392335, ]; static const List _envieddatasecretKey = [ - 2969718109, - 2935343192, - 2849472385, - 2100031221, - 2651901387, - 2754777771, - 2063811896, - 3072649431, - 2845610880, - 3356671652, - 1037641138, - 3295756098, - 2284427736, - 449549697, - 2827877573, - 2680340504, - 3056624426, - 1123391199, - 3498266983, - 538161681, - 2249486884, - 3437258523, - 349868175, - 2528555266, - 3155144151, - 535761366, - 1683132476, - 2848483947, - 609790245, - 123015835, - 3257706491, - 739106687, - 1579743724, - 1414777374, - 3531398079, - 3126404716, - 382743514, - 1934037021, - 65160467, - 2416072672, - 378662986, - 524914246, - 3683082615, - 2209828682, - 902038821, - 570427212, - 2369598970, - 452350371, - 3550481438, - 3265789723, - 1767168637, - 1209509669, - 1681571580, - 2833861509, - 910538307, - 1761576045, - 3118049427, - 3930611680, - 1719501338, - 3267990729, - 1542311443, - 2555203127, - 2298139200, - 2359024882, - 597782186, - 584441972, - 2675905613, - 3611833777, - 1634456284, - 3664662297, - 3534659707, - 3580378287, - 74591187, - 4264645029, - 1918184089, - 2046128465, - 2015940530, - 1404933294, - 2679084145, - 3797180125, - 2045780190, - 2886723259, - 1436711705, - 267823799, - 132512409, - 3159472799, - 3627370889, - 178482648, - 1417759381, - 3688431897, - 3866060471, - 777932108, - 2690868747, - 4164424795, - 1652177842, - 2399918095, - 1637195271, - 3945753657, - 2986367520, - 997513820, - 2897810664, - 3351252487, - 1989611128, - 1900098597, - 4270093644, - 720924284, - 1559788244, - 2146849270, - 3266111935, - 2874846361, - 3584166111, - 3663654310, - 1477951798, - 757026722, + 4015336094, + 4294547983, + 436876394, + 3447150095, + 2949338041, + 4168115375, + 3831480033, + 2455497288, + 3318553593, + 3719678793, + 3143306636, + 2640311155, + 2781547055, + 3667788738, + 1069759482, + 3997190412, + 2079023666, + 3601413864, + 1246461058, + 2202454692, + 2895945249, + 2204185457, + 2095826305, + 3463443624, + 1469909668, + 689086086, + 123808342, + 360820003, + 3124020939, + 854007378, + 17959132, + 3166300774, + 1920913952, + 2167525357, + 2429935007, + 2679882730, + 4029844527, + 176479494, + 2897991505, + 2019932790, + 3122532972, + 4206737104, + 4112353897, + 2475750768, + 345881379, + 1949749128, + 2998244050, + 939489386, + 4225302168, + 1399356385, + 3394717621, + 2846691761, + 140799311, + 1229086385, + 2412393899, + 630987737, + 1173372718, + 498474128, + 4167759520, + 927891784, + 1638991646, + 1465633792, + 1564880779, + 975813639, + 1087683518, + 2436053163, + 2075821531, + 3300547950, + 4246275888, + 1672799095, + 3598755203, + 667101977, + 1568719576, + 1467241696, + 1215356093, + 3093530181, + 800208572, + 4235463905, + 3546980671, + 698373360, + 3388888873, + 2435402634, + 3441933589, + 3543881791, + 721738664, + 681589970, + 1017222948, + 2155086606, + 1581446, + 155640532, + 2162633028, + 3818614468, + 3351473896, + 2609147599, + 66219422, + 2112588195, + 1257866791, + 825421290, + 2126668934, + 4037999589, + 2841532548, + 1731363995, + 463935439, + 1477462231, + 2816848969, + 3545311311, + 430236301, + 1340026401, + 1353280870, + 3327415201, + 2581666409, + 3022581188, + 1220136023, + 1587392291, ]; static final String secretKey = String.fromCharCodes(List.generate( @@ -2374,237 +2410,237 @@ final class _Env { ).map((int i) => _envieddatasecretKey[i] ^ _enviedkeysecretKey[i])); static const List _enviedkeystripePublishableKe = [ - 3146384135, - 1943580808, - 3911350291, - 4014967237, - 2696048765, - 3806003997, - 1955016952, - 1843797466, - 3734567814, - 2466975011, - 3960583303, - 2813065682, - 254893598, - 681594949, - 1354318558, - 3250421652, - 3181525580, - 565552906, - 34056828, - 3894510938, - 3969711274, - 2921155645, - 3849335041, - 2113658632, - 2527665897, - 4144638782, - 1921806568, - 4137098122, - 1545020601, - 3180309520, - 996630134, - 446366387, - 979850872, - 2970832738, - 541209763, - 292833741, - 3466478321, - 3129716928, - 142314451, - 2036793973, - 398653267, - 3607215783, - 2486654846, - 1984976457, - 2057467131, - 2542233668, - 877060216, - 3755229345, - 2830663990, - 1397744016, - 2034461063, - 2359964495, - 672800878, - 2753212969, - 3762349391, - 898762839, - 1808648185, - 3556160609, - 1160477662, - 3244150017, - 3124171524, - 3099520388, - 2632732421, - 2838610372, - 624146694, - 3329981849, - 2032867737, - 3470021911, - 66626393, - 1816961098, - 938990518, - 1095348800, - 2893211049, - 3692943091, - 3862759924, - 2706030529, - 3072945892, - 3270801885, - 640740782, - 4060440456, - 3926366911, - 2144762077, - 1129926048, - 3400150320, - 1288314159, - 1585840455, - 1733930014, - 105777186, - 4188068812, - 3300683791, - 329191655, - 2362947352, - 466215004, - 3677558224, - 411640192, - 2629476612, - 1337196679, - 344409060, - 2154276815, - 4269409203, - 2630628624, - 3056346177, - 17358851, - 564987749, - 2417938112, - 739813127, - 1286522476, - 512277575, - 2351471154, - 196248630, - 926130359, - 1452441407, - 1383501891, - 2880435390, + 1839317751, + 4055198821, + 3653213416, + 3455310338, + 3760944581, + 3672629832, + 4093011737, + 784003973, + 847343954, + 643086942, + 1443690469, + 1528530013, + 79067950, + 682168411, + 3200867997, + 2292398052, + 3638192409, + 1045672322, + 3536248171, + 1366969601, + 3536252828, + 1939114885, + 2561940310, + 546112917, + 3956257752, + 1808807243, + 522815707, + 2050337606, + 1157547450, + 1643284130, + 1599701708, + 2963548178, + 1950300364, + 2753990949, + 361671953, + 1260027854, + 4121309732, + 2073988458, + 2831828, + 3069378595, + 1324701296, + 3576762029, + 1584446120, + 3301011629, + 1001909348, + 3961168685, + 2725407945, + 3592027398, + 2082756909, + 1659395078, + 3166767217, + 1508183835, + 683517484, + 1761560941, + 2027774136, + 2755606542, + 426855793, + 1663823423, + 2831689856, + 3751083812, + 3134275374, + 1007820824, + 1812490555, + 284479710, + 981661688, + 4116375524, + 2152120028, + 968305691, + 2776436853, + 1424024636, + 1690058532, + 3914383580, + 3101625517, + 3767559948, + 223788900, + 2688209364, + 4032446764, + 1648405458, + 2250897834, + 2072228863, + 55235617, + 3123502272, + 1435667919, + 3392401064, + 3713648025, + 2341469150, + 3255122718, + 2122504995, + 1230709287, + 1908780158, + 3697791584, + 1014585792, + 3195820570, + 2458526645, + 2231151324, + 2908160374, + 1794206337, + 1434466934, + 1377686165, + 4209917831, + 2421338853, + 3702190479, + 2410002154, + 2281040672, + 1617682380, + 3526639417, + 468233026, + 2175183498, + 1669160843, + 2345165308, + 683924179, + 3149170488, + 476084031, + 4050895731, ]; static const List _envieddatastripePublishableKe = [ - 3146384241, - 1943580911, - 3911350348, - 4014967221, - 2696048655, - 3806004082, - 1955016840, - 1843797424, - 3734567897, - 2466974998, - 3960583344, - 2813065627, - 254893687, - 681594931, - 1354318568, - 3250421721, - 3181525514, - 565552969, - 34056766, - 3894510876, - 3969711323, - 2921155598, - 3849335106, - 2113658682, - 2527665799, - 4144638728, - 1921806467, - 4137098180, - 1545020659, - 3180309630, - 996630060, - 446366449, - 979850753, - 2970832692, - 541209749, - 292833699, - 3466478212, - 3129716868, - 142314407, - 2036793901, - 398653238, - 3607215774, - 2486654775, - 1984976419, - 2057467070, - 2542233620, - 877060151, - 3755229383, - 2830664030, - 1397744125, - 2034461175, - 2359964427, - 672800794, - 2753213054, - 3762349346, - 898762787, - 1808648138, - 3556160556, - 1160477586, - 3244150099, - 3124171572, - 3099520483, - 2632732500, - 2838610356, - 624146799, - 3329981905, - 2032867834, - 3470021958, - 66626356, - 1816961035, - 938990576, - 1095348749, - 2893211132, - 3692943011, - 3862759814, - 2706030491, - 3072945799, - 3270801902, - 640740863, - 4060440545, - 3926366972, - 2144762009, - 1129926090, - 3400150344, - 1288314221, - 1585840413, - 1733930066, - 105777216, - 4188068788, - 3300683851, - 329191588, - 2362947371, - 466214969, - 3677558198, - 411640312, - 2629476691, - 1337196799, - 344408990, - 2154276860, - 4269409152, - 2630628722, - 3056346134, - 17358923, - 564987732, - 2417938074, - 739813216, - 1286522398, - 512277556, - 2351471210, - 196248644, - 926130415, - 1452441427, - 1383501825, - 2880435410, + 1839317633, + 4055198722, + 3653213367, + 3455310450, + 3760944567, + 3672629799, + 4093011817, + 784004079, + 847343885, + 643086955, + 1443690450, + 1528529940, + 79067975, + 682168365, + 3200868011, + 2292397993, + 3638192479, + 1045672385, + 3536248105, + 1366969671, + 3536252909, + 1939114934, + 2561940245, + 546112935, + 3956257718, + 1808807293, + 522815664, + 2050337544, + 1157547504, + 1643284172, + 1599701654, + 2963548240, + 1950300341, + 2753991027, + 361671975, + 1260027808, + 4121309777, + 2073988398, + 2831776, + 3069378683, + 1324701205, + 3576762004, + 1584446177, + 3301011655, + 1001909281, + 3961168765, + 2725407878, + 3592027488, + 2082756933, + 1659395179, + 3166767105, + 1508183903, + 683517528, + 1761560890, + 2027774165, + 2755606650, + 426855746, + 1663823474, + 2831689932, + 3751083894, + 3134275358, + 1007820927, + 1812490602, + 284479662, + 981661585, + 4116375468, + 2152119999, + 968305738, + 2776436760, + 1424024701, + 1690058594, + 3914383505, + 3101625592, + 3767560028, + 223788822, + 2688209294, + 4032446799, + 1648405473, + 2250897915, + 2072228758, + 55235682, + 3123502212, + 1435667877, + 3392401104, + 3713648091, + 2341469060, + 3255122770, + 2122505025, + 1230709343, + 1908780090, + 3697791523, + 1014585843, + 3195820671, + 2458526675, + 2231151268, + 2908160289, + 1794206457, + 1434466828, + 1377686182, + 4209917876, + 2421338759, + 3702190552, + 2410002082, + 2281040657, + 1617682326, + 3526639454, + 468233008, + 2175183609, + 1669160915, + 2345165198, + 683924107, + 3149170516, + 476084093, + 4050895647, ]; static final String stripePublishableKe = String.fromCharCodes( @@ -2617,125 +2653,125 @@ final class _Env { _enviedkeystripePublishableKe[i])); static const List _enviedkeychatGPTkeySefer = [ - 397394594, - 849626584, - 3007705949, - 1962148249, - 2762002921, - 1146128009, - 490033713, - 3087397922, - 1544150099, - 1976091319, - 349899172, - 2836823297, - 2365138090, - 367349313, - 1745012275, - 2097829823, - 4078705955, - 2409809591, - 2286178609, - 3479802278, - 928899367, - 3473402592, - 162363146, - 3622641673, - 4147251738, - 620129377, - 3468830353, - 3903483039, - 3616365720, - 1901471318, - 3956362274, - 3133657380, - 2570632067, - 1125670183, - 2781197922, - 2508453728, - 1830516452, - 2759307381, - 3550514173, - 465682624, - 1894079568, - 3131550806, - 176319763, - 3996961012, - 3942104525, - 573759126, - 2115648942, - 3789726207, - 4025258367, - 1992306607, - 1744250527, - 1308159252, - 2001304698, - 1523713870, - 3681180039, - 120077932, - 1507323641, - 1731059261, + 3481780378, + 2488408238, + 1213188678, + 3282450415, + 1033997396, + 3238031914, + 3800381389, + 1613466561, + 144483971, + 315530640, + 1158827724, + 4170309758, + 1967536791, + 3059190364, + 3889030883, + 2634503668, + 2852081925, + 3033934553, + 4203402991, + 3743270854, + 2748434845, + 1745785365, + 2112598479, + 3184059810, + 2066314683, + 1427862432, + 2934044260, + 3642069627, + 1934688327, + 455439846, + 4191000314, + 837631213, + 1465226339, + 4137515676, + 4045632854, + 2149603429, + 644602439, + 1220893653, + 3286123571, + 307176327, + 3863521071, + 2129564827, + 565234555, + 2633654187, + 3876069411, + 315112522, + 2435426053, + 3467212029, + 3985754679, + 773736579, + 3710129599, + 3983039700, + 1401965244, + 1355807447, + 2203742886, + 1842107697, + 1795219852, + 3703120384, ]; static const List _envieddatachatGPTkeySefer = [ - 397394648, - 849626559, - 3007705968, - 1962148304, - 2762002816, - 1146128091, - 490033666, - 3087397963, - 1544150119, - 1976091352, - 349899211, - 2836823419, - 2365138123, - 367349362, - 1745012330, - 2097829833, - 4078705995, - 2409809601, - 2286178643, - 3479802271, - 928899413, - 3473402554, - 162363233, - 3622641720, - 4147251801, - 620129368, - 3468830409, - 3903483117, - 3616365792, - 1901471281, - 3956362359, - 3133657441, - 2570632115, - 1125670219, - 2781197914, - 2508453642, - 1830516406, - 2759307303, - 3550514087, - 465682610, - 1894079512, - 3131550780, - 176319776, - 3996960933, - 3942104488, - 573759139, - 2115649023, - 3789726119, - 4025258287, - 1992306627, - 1744250606, - 1308159298, - 2001304610, - 1523713852, - 3681180127, - 120077824, - 1507323579, - 1731059281, + 3481780448, + 2488408265, + 1213188715, + 3282450342, + 1033997373, + 3238031992, + 3800381438, + 1613466536, + 144484023, + 315530751, + 1158827683, + 4170309636, + 1967536886, + 3059190383, + 3889030842, + 2634503554, + 2852082029, + 3033934511, + 4203402893, + 3743270911, + 2748434927, + 1745785423, + 2112598436, + 3184059795, + 2066314744, + 1427862425, + 2934044220, + 3642069513, + 1934688319, + 455439745, + 4191000239, + 837631144, + 1465226323, + 4137515760, + 4045632878, + 2149603343, + 644602389, + 1220893575, + 3286123625, + 307176437, + 3863521127, + 2129564913, + 565234504, + 2633654266, + 3876069446, + 315112575, + 2435426132, + 3467211941, + 3985754727, + 773736687, + 3710129614, + 3983039618, + 1401965284, + 1355807397, + 2203742974, + 1842107741, + 1795219918, + 3703120492, ]; static final String chatGPTkeySefer = String.fromCharCodes(List.generate( @@ -2746,157 +2782,157 @@ final class _Env { (int i) => _envieddatachatGPTkeySefer[i] ^ _enviedkeychatGPTkeySefer[i])); static const List _enviedkeyllamaKey = [ - 2950971025, - 720609888, - 4207406153, - 3466181595, - 1515134414, - 1847599527, - 927407943, - 3651096348, - 788362855, - 2771829781, - 794490138, - 3728428616, - 821807824, - 3587610501, - 2664198438, - 3368244774, - 353007271, - 1022978665, - 3917482315, - 3826116181, - 2651508238, - 822862802, - 1075754539, - 2270536148, - 2582620386, - 2587743274, - 1744507531, - 1284110649, - 1434805452, - 2726515179, - 4258938848, - 1729129355, - 374511257, - 934004087, - 1389910019, - 2866579221, - 1925510083, - 2930473524, - 307827544, - 2107343533, - 3165616012, - 4156846270, - 3461331064, - 3280938, - 2224006547, - 2910151556, - 2638048196, - 524578713, - 3115488502, - 3571528929, - 1591987313, - 3891216317, - 1265708941, - 2608995520, - 4121364625, - 438117432, - 75046415, - 2099044992, - 264521995, - 3251498399, - 1369906958, - 272552375, - 2154775217, - 2115047924, - 1595873639, - 2405054923, - 3484306355, - 1252170477, - 988760658, - 4226149246, - 148682489, - 2085730836, - 3075846564, - 72577351, + 3468974626, + 926642541, + 1082357605, + 2085769640, + 2966609750, + 90584284, + 625556588, + 1178663449, + 1763532805, + 1702862398, + 2020237533, + 2137426245, + 469878543, + 2211539993, + 663123122, + 151738963, + 972325983, + 1922633015, + 4130619566, + 4294795451, + 1717230592, + 1253761814, + 238290175, + 2824235106, + 2732900456, + 352781565, + 1384226368, + 3910162632, + 2921128404, + 354155768, + 692771880, + 328649116, + 2804902878, + 3598420345, + 1973223067, + 2881006884, + 965842115, + 295358586, + 4209150984, + 1488138470, + 3406440154, + 4105613890, + 3386372571, + 3738130302, + 1621428922, + 3169621936, + 4045399268, + 3155776899, + 2367892643, + 2920930863, + 2566470495, + 4193903929, + 607733079, + 1290743187, + 2989312781, + 3798373704, + 3376110713, + 1936802518, + 1161989973, + 1571794311, + 1164086087, + 1121099519, + 3742776406, + 4127649343, + 1640794839, + 3475731192, + 3458124837, + 1056226943, + 2690316021, + 3905649921, + 2142458726, + 753916329, + 1274867313, + 465697361, ]; static const List _envieddatallamaKey = [ - 2950971075, - 720609842, - 4207406180, - 3466181534, - 1515134395, - 1847599582, - 927407912, - 3651096410, - 788362787, - 2771829824, - 794490220, - 3728428590, - 821807746, - 3587610561, - 2664198500, - 3368244809, - 353007309, - 1022978653, - 3917482365, - 3826116147, - 2651508308, - 822862745, - 1075754602, - 2270536096, - 2582620329, - 2587743328, - 1744507576, - 1284110671, - 1434805411, - 2726515110, - 4258938840, - 1729129414, - 374511341, - 934004032, - 1389910069, - 2866579245, - 1925510048, - 2930473572, - 307827517, - 2107343591, - 3165616090, - 4156846217, - 3461331007, - 3280996, - 2224006647, - 2910151621, - 2638048175, - 524578761, - 3115488418, - 3571528874, - 1591987221, - 3891216356, - 1265708981, - 2608995471, - 4121364725, - 438117461, - 75046454, - 2099045102, - 264522047, - 3251498488, - 1369907049, - 272552432, - 2154775232, - 2115047869, - 1595873618, - 2405054860, - 3484306378, - 1252170370, - 988760586, - 4226149132, - 148682401, - 2085730936, - 3075846630, - 72577323, + 3468974704, + 926642495, + 1082357576, + 2085769709, + 2966609699, + 90584229, + 625556483, + 1178663519, + 1763532865, + 1702862443, + 2020237483, + 2137426211, + 469878621, + 2211540061, + 663123184, + 151738940, + 972325941, + 1922632963, + 4130619544, + 4294795485, + 1717230682, + 1253761885, + 238290110, + 2824235030, + 2732900387, + 352781495, + 1384226419, + 3910162622, + 2921128379, + 354155701, + 692771856, + 328649169, + 2804902826, + 3598420302, + 1973223085, + 2881006876, + 965842080, + 295358506, + 4209151085, + 1488138412, + 3406440076, + 4105613941, + 3386372508, + 3738130224, + 1621428958, + 3169622001, + 4045399183, + 3155776979, + 2367892727, + 2920930916, + 2566470459, + 4193903968, + 607733103, + 1290743260, + 2989312873, + 3798373669, + 3376110656, + 1936802488, + 1161989985, + 1571794400, + 1164086048, + 1121099448, + 3742776359, + 4127649398, + 1640794850, + 3475731135, + 3458124892, + 1056226832, + 2690315949, + 3905650035, + 2142458686, + 753916357, + 1274867251, + 465697341, ]; static final String llamaKey = String.fromCharCodes(List.generate( @@ -2906,6329 +2942,6329 @@ final class _Env { ).map((int i) => _envieddatallamaKey[i] ^ _enviedkeyllamaKey[i])); static const List _enviedkeyprivateKeyFCM = [ - 2412490112, - 1518798256, - 1891966282, - 231979570, - 641261859, - 1375941303, - 3316758634, - 3589404508, - 3883595382, - 2167906199, - 817139031, - 2327480235, - 489986376, - 102959514, - 1126896201, - 398834157, - 1897269140, - 2046269963, - 3901821290, - 1392477712, - 1694094665, - 4059209763, - 3478651843, - 3836320537, - 3701168469, - 1309480482, - 958789712, - 2830126962, - 2122656048, - 2356963867, - 1373373830, - 4252798944, - 739254332, - 2871180117, - 4266225417, - 4254380502, - 2663127183, - 2995484964, - 3612155463, - 2365886268, - 2681804977, - 3801110708, - 1521763305, - 412749058, - 3167268110, - 2414957310, - 3272561172, - 3059741949, - 1721141058, - 1929555711, - 4289585114, - 1222923528, - 3599731776, - 2380836864, - 4014229253, - 4165238976, - 491297681, - 3630028983, - 2039747221, - 4170368418, - 4047911121, - 4187106194, - 586531964, - 2136188866, - 4172244212, - 3823115661, - 2411136546, - 1641128505, - 894699075, - 607417479, - 2389328899, - 3813541529, - 1113421060, - 3789871386, - 1413823257, - 1170481376, - 778472469, - 1799931236, - 710527416, - 4294504896, - 3137681258, - 290349444, - 2878398652, - 1880064985, - 1952093248, - 2115450840, - 2235937338, - 1596414452, - 636435007, - 3528923377, - 1485532483, - 3025730179, - 1589077752, - 518209876, - 3516354000, - 3134321408, - 2686460247, - 1914735172, - 1587076218, - 3824794225, - 1421964209, - 2785695862, - 2058804345, - 3956459381, - 2596451086, - 2769966408, - 2421282850, - 3766217885, - 3226232893, - 902004410, - 2616190798, - 802136095, - 1028592822, - 582636197, - 175237397, - 1447709888, - 3211131054, - 120559332, - 2247330910, - 3789014221, - 303616807, - 3696139168, - 546662814, - 3441138303, - 3549524674, - 1370145869, - 2717993857, - 2586305884, - 3576195189, - 1917583029, - 2877223817, - 3985284187, - 1975777933, - 1304616824, - 769758748, - 459706757, - 166302686, - 2563475442, - 2573804032, - 245090290, - 134742431, - 152733153, - 1948571738, - 3616070840, - 1237190259, - 287895320, - 2210831170, - 833752944, - 1551207554, - 349010948, - 1381447955, - 2148595915, - 1098146144, - 1271941109, - 1913002825, - 1001297397, - 3454003526, - 628903778, - 1653904182, - 1496278088, - 669049637, - 2460201411, - 607022789, - 196874107, - 2697033141, - 3622334768, - 3024556309, - 1485886907, - 4244880355, - 2465204172, - 799930541, - 2747755424, - 4272644082, - 950917737, - 1815346878, - 1086268869, - 731276809, - 2018980115, - 219727655, - 4067396143, - 2564623789, - 4183738856, - 1210539566, - 1987064824, - 737042532, - 705822946, - 914487095, - 237022935, - 2819197065, - 776781242, - 3726025743, - 3091941174, - 3380826227, - 912215365, - 2699510781, - 3365484329, - 1871462147, - 3434858577, - 3345376598, - 496075624, - 396091951, - 3002787562, - 3917455238, - 1468406494, - 963834952, - 2576931717, - 3802044866, - 2755641435, - 2688664387, - 2242383452, - 550716173, - 2887659472, - 2614403588, - 216131477, - 2144321388, - 3425784625, - 3911946674, - 1266361249, - 3413588434, - 2661688473, - 1899344741, - 4041542376, - 4205504357, - 3702653288, - 2386812044, - 2407057324, - 1211628767, - 963755620, - 1655736125, - 1264125764, - 1138705054, - 786649807, - 2813494397, - 1969589206, - 2044697457, - 1289957400, - 2836137883, - 3613777412, - 3040025347, - 907181461, - 1747398736, - 2024390216, - 3816295179, - 1935765634, - 2293202920, - 3413266944, - 826096046, - 3680567217, - 2540089212, - 600190337, - 3116552742, - 3551513836, - 3172981202, - 3288337763, - 3617379557, - 1403752192, - 2659436191, - 2477342661, - 1123855269, - 51621702, - 175167406, - 2625920803, - 3146186933, - 1288568550, - 518210831, - 371746803, - 1717042386, - 3703267956, - 3898964099, - 3658888815, - 2619078358, - 955334754, - 945884206, - 1054211853, - 1994814005, - 2307616648, - 3966456183, - 1048797995, - 583653582, - 2356576839, - 3696997129, - 4215469733, - 4242747149, - 1789142544, - 2639509186, - 2951468342, - 1223155898, - 2067078754, - 2464373836, - 1605655969, - 513976659, - 2421293960, - 3736587852, - 3381741746, - 122258305, - 3883005529, - 1258306191, - 4121209342, - 683442728, - 374407995, - 2895554439, - 138582597, - 2307542325, - 1101157369, - 3127415829, - 3145669366, - 1617233907, - 1351137430, - 3956510522, - 2460280213, - 2268382101, - 1651729054, - 4132505955, - 3916723166, - 1790539179, - 3097767333, - 2805790817, - 394387656, - 2318700929, - 672371626, - 3217651306, - 3608286805, - 2306690150, - 197345578, - 1215077288, - 571261807, - 1995715590, - 459289150, - 1844222664, - 1322162515, - 1900798758, - 3313490842, - 2216731617, - 729522397, - 1018311812, - 1656989963, - 3691031772, - 861562734, - 3908941299, - 1329968780, - 1059308836, - 2532380353, - 275244701, - 37614060, - 4082900469, - 1736720193, - 2148449518, - 573521708, - 1993960409, - 2977067194, - 747070306, - 4228456706, - 34305484, - 464116294, - 245824180, - 1169818322, - 3572151868, - 1217231851, - 2283729507, - 4119531223, - 1208510128, - 762325141, - 1185113801, - 2568676228, - 4140946126, - 2151991415, - 478548143, - 4015359545, - 1409368237, - 1720037244, - 3192266851, - 1906760380, - 593668091, - 2261523504, - 411193868, - 2146851601, - 2605594052, - 2428660881, - 419068362, - 3245515779, - 1680122539, - 508386467, - 3184846521, - 3588527565, - 3726536349, - 1562267959, - 2506578295, - 3393185837, - 32101709, - 763598002, - 1132872766, - 1462161789, - 3830864007, - 3576459518, - 1367139409, - 585369934, - 1058637171, - 2215363288, - 1386436067, - 1784579692, - 3842924451, - 4228827467, - 1921209339, - 285010979, - 1777651071, - 1993836041, - 2333987770, - 4205492283, - 3473684131, - 3595640091, - 3393572841, - 3506246539, - 312266777, - 3061144926, - 1653356976, - 954635052, - 3833070893, - 2865664918, - 884297813, - 2380271872, - 1132383873, - 3069625417, - 3178802923, - 3315562992, - 3355938767, - 387452308, - 2118021986, - 448393081, - 1441881271, - 3136115984, - 2505721013, - 249632703, - 98755982, - 2105855014, - 1760448427, - 2199691962, - 844963832, - 2934244286, - 3088640994, - 314395797, - 322679680, - 3650686240, - 3019039541, - 1169397047, - 40079375, - 1467050872, - 1759955216, - 2465799285, - 3888786093, - 1802052001, - 942281653, - 3246053140, - 3426015162, - 4243202804, - 2345790472, - 1071000000, - 3616111294, - 2220026930, - 2186778391, - 3144147958, - 1209973579, - 3603097797, - 304559668, - 4033457560, - 4238291149, - 1295822986, - 3369684935, - 482390698, - 2857477667, - 3680131745, - 2562260375, - 4134402501, - 3023016020, - 3867548397, - 4022992595, - 3831743349, - 696054823, - 2870204754, - 2523444456, - 1623691447, - 3636805021, - 2646668944, - 2318556010, - 2694469428, - 2073887175, - 2070769787, - 2959029932, - 1440817604, - 1677643038, - 3249440246, - 2551486961, - 4179558347, - 2440838219, - 2829971715, - 1788713085, - 4196166758, - 2447473344, - 1972998714, - 1914250397, - 2011209203, - 3697410072, - 3662444731, - 2762834296, - 930612145, - 2705137235, - 1368028621, - 480802448, - 2187337566, - 1377509208, - 655750843, - 2819152528, - 2365291343, - 3863880998, - 3113624705, - 3395237143, - 853627480, - 2368166961, - 3256491176, - 3759857977, - 3049996397, - 3822396140, - 2958965732, - 854538850, - 1616707349, - 884087877, - 2527827154, - 2355028863, - 4221540410, - 557364420, - 3003905635, - 3303038094, - 194242570, - 855048460, - 2390049521, - 4095512624, - 1730492284, - 1096794654, - 3516302411, - 3284094383, - 3126913646, - 2525186266, - 4022047396, - 392703922, - 2168594430, - 2895977148, - 919098180, - 3162150747, - 2209067764, - 3770549254, - 611610623, - 2509010691, - 4045284307, - 4168567954, - 2359446100, - 3308106855, - 4153602225, - 1882372132, - 20561953, - 1553999169, - 879178436, - 2669938043, - 4036713498, - 1192468456, - 383386641, - 86039022, - 2948784853, - 1226881312, - 2356978726, - 1521655272, - 3589535346, - 3955411137, - 3342204998, - 3536504313, - 31509917, - 4180618458, - 1947963199, - 2297361280, - 3434051170, - 1785648324, - 865438851, - 120061508, - 3723828306, - 909853779, - 1782497959, - 1703508389, - 4097560649, - 2831318711, - 3132981332, - 523392354, - 423475936, - 1264782205, - 238436357, - 1487634116, - 3092558606, - 930578218, - 3502267598, - 1940988987, - 368044163, - 3239590296, - 1287633699, - 2588317620, - 2282114129, - 4145176445, - 1265110315, - 3945701155, - 945652836, - 1459816105, - 2733340536, - 1414292398, - 4188324427, - 420266775, - 694801391, - 2630237307, - 2062318918, - 2886486096, - 254788659, - 3945011757, - 2846255854, - 527932912, - 3852090743, - 3853344246, - 705916610, - 1016863970, - 3540550197, - 1610156755, - 1454393988, - 2633448608, - 143675119, - 500461721, - 2449370232, - 3145786815, - 2945537606, - 1429241291, - 3088094612, - 29806219, - 3256467643, - 3151289311, - 3383335715, - 1945352988, - 2566847373, - 1775049678, - 4278443647, - 1337988492, - 3289792838, - 296006444, - 2583374090, - 887772160, - 148189795, - 873104518, - 1664140879, - 31826063, - 1561410838, - 695257170, - 955708718, - 162912236, - 3646535834, - 1482835178, - 1071686160, - 985356080, - 4068198108, - 2999176879, - 3302141011, - 872040279, - 4170511781, - 4105493398, - 3544438553, - 3258239469, - 219414491, - 1923387690, - 3082262268, - 4107637861, - 2518326361, - 3089783852, - 1340449966, - 1234079846, - 1177432704, - 1906839086, - 2545015272, - 4084734355, - 4188255445, - 3278149541, - 1318717448, - 1986328164, - 550402978, - 2986049301, - 2010528835, - 3184686004, - 2401217417, - 4117216538, - 2914269843, - 2150344214, - 3441695023, - 1420642865, - 3118087447, - 1163396694, - 4147819403, - 4017820814, - 93596115, - 4198102072, - 1040552807, - 3205295350, - 2818400296, - 657838528, - 1036468743, - 2489840941, - 1393128904, - 1018471848, - 3165155961, - 3687420938, - 282905267, - 343054677, - 683709840, - 630817459, - 780877306, - 2998490356, - 193751262, - 2878724400, - 2754189928, - 2891518827, - 2110234650, - 2860343785, - 904778353, - 2686793145, - 4178411082, - 4142402605, - 2874360367, - 52283052, - 1161191311, - 3578866873, - 3796530021, - 3442417463, - 1044048752, - 3923725151, - 3383289807, - 702476409, - 2654579209, - 2234663659, - 3936607090, - 2685629952, - 792421561, - 3808181696, - 1161963074, - 3606544038, - 88284576, - 261167174, - 1883621595, - 3203930981, - 797041936, - 3857267755, - 370454811, - 974444265, - 679653592, - 2926843886, - 4054542585, - 3059875630, - 492520169, - 2202877445, - 3031139737, - 1061028344, - 3632661471, - 619056057, - 117470303, - 3170454744, - 3455663354, - 2129980732, - 2365722152, - 1107497546, - 2593306351, - 2348411609, - 1252513005, - 2008807566, - 916730410, - 67836744, - 2465390610, - 3607645484, - 3824137851, - 1538496693, - 3828877160, - 1121103582, - 1543320313, - 1745506707, - 2465919329, - 1471284270, - 693303508, - 3966759972, - 3942659154, - 649172416, - 2723230602, - 145183226, - 4187954067, - 363787381, - 3674387377, - 4131880426, - 781237053, - 3602776762, - 735837222, - 381224804, - 1120438780, - 643126504, - 3453827456, - 2231404831, - 273114392, - 34511588, - 2173523672, - 2534005063, - 1557749344, - 2500723622, - 3179643865, - 2969354040, - 1061107696, - 3332034948, - 2178713965, - 3300502594, - 2036537891, - 2676167642, - 2912383347, - 3800639894, - 2904569405, - 4068648222, - 3581982944, - 1382102049, - 2811637008, - 1265895424, - 1292406502, - 202978857, - 3451302986, - 3974757976, - 1986125251, - 3561623626, - 1247353637, - 4222387858, - 2406168376, - 2999589097, - 1103609614, - 3725461731, - 973633161, - 1016366427, - 1873559657, - 3488453232, - 1917303350, - 570065586, - 4287881586, - 1883023075, - 8600899, - 1551852330, - 3255754401, - 2563115734, - 2537812475, - 3260485714, - 2281347337, - 3990865714, - 1685789551, - 3782767198, - 350157674, - 470236534, - 2955945407, - 1680134205, - 2135104085, - 728187039, - 16856046, - 868442776, - 2462554110, - 3011711082, - 57558139, - 1636905729, - 1501197969, - 2000296457, - 4162683392, - 1633836536, - 1378546555, - 2583566918, - 3598499502, - 3474526439, - 3472574659, - 1361668684, - 2287526417, - 384403624, - 1185133194, - 1478408912, - 4262861447, - 2100575641, - 2991681965, - 2885362428, - 2671972931, - 326667791, - 3277958953, - 1830004154, - 1316118853, - 577084946, - 1898902004, - 3141893826, - 400080601, - 458221497, - 448710858, - 274186360, - 48883437, - 1019155611, - 3261394546, - 2078364356, - 2489585213, - 4222943594, - 3197514625, - 4291057565, - 2286578924, - 2941025791, - 4288011403, - 1017542611, - 2599049515, - 2731610377, - 3319225825, - 1539923759, - 3665697600, - 262394003, - 3390037578, - 2238363409, - 3496634775, - 3662405378, - 2099033039, - 2500285897, - 587196072, - 3302966201, - 1764006860, - 1795557395, - 3211986335, - 3002617686, - 335151650, - 4251543650, - 993417415, - 2904885163, - 2391150993, - 3315507030, - 2151995786, - 4007889571, - 3798880359, - 24388533, - 801236119, - 49892929, - 3094705184, - 9211920, - 1209160152, - 3342855743, - 3957682041, - 3905022808, - 2598791194, - 2099223127, - 2442177140, - 3632764760, - 593283828, - 2509918426, - 1783387430, - 1078442561, - 932360992, - 1818686903, - 1481789873, - 936820878, - 70263458, - 4251207002, - 352105354, - 1014810562, - 2832113903, - 1842288284, - 3188833662, - 1293826822, - 3896486577, - 3653107799, - 1997523149, - 2499367276, - 3735468671, - 941153942, - 2731434743, - 2638746438, - 857993961, - 330999089, - 3209558317, - 2576541941, - 565047587, - 1724873126, - 2824118035, - 2989631441, - 3396879357, - 4011719279, - 368848420, - 1342818091, - 1207665266, - 2906120633, - 1651565908, - 3857947399, - 1516863066, - 2459162760, - 2648196597, - 3807595104, - 1128445416, - 2174886373, - 350199022, - 1574383243, - 3228533162, - 3640215025, - 2223213630, - 2414799169, - 3294223588, - 178126224, - 129685250, - 2745222208, - 305443378, - 3497307660, - 2625813071, - 2259348675, - 1023514542, - 2341310881, - 2877365310, - 4062523677, - 70031971, - 3988011148, - 3289804212, - 1626689940, - 544157966, - 1883199568, - 85452184, - 3019776431, - 3328726285, - 1080544824, - 420658434, - 2198909285, - 3957130196, - 2233886639, - 3467676603, - 1378974440, - 1539931793, - 2641044195, - 1109931907, - 456737850, - 802474480, - 3881563197, - 4288422137, - 4249835679, - 1689162806, - 3621279643, - 3898310426, - 2421921065, - 3781489223, - 3937439613, - 2760554134, - 505671466, - 4100618238, - 1223388074, - 821493397, - 1510838792, - 1248374609, - 529072417, - 2508634966, - 1063416352, - 888163233, - 3498959774, - 3259355353, - 1861296069, - 1192126950, - 31607032, - 4098369666, - 1656612981, - 1136995434, - 2531689997, - 3426699547, - 2043831432, - 436562569, - 1951950596, - 1572987773, - 3338042521, - 3585781373, - 3284372913, - 451560123, - 2417984116, - 1572490257, - 4018510024, - 924718724, - 3391704458, - 559094837, - 3489711972, - 1814088885, - 3198377966, - 2892954521, - 1076677862, - 2085878217, - 133622815, - 303128213, - 1882930038, - 1035008197, - 3427267482, - 2158311130, - 1343677937, - 192989134, - 3640912177, - 4156461585, - 4122015503, - 892147441, - 1482422901, - 1306753391, - 1391877469, - 3051859236, - 2174314487, - 1948825124, - 2004154225, - 965898760, - 986016940, - 3394628598, - 1067929993, - 2863715259, - 2727575154, - 2497809605, - 526155461, - 2264483787, - 1848367710, - 2228016128, - 2349618861, - 2539745068, - 2628841592, - 738994117, - 1261338113, - 442108725, - 4095795871, - 569860011, - 312303396, - 1855158829, - 4102237648, - 2836812645, - 2521313487, - 501671799, - 1143789999, - 747985792, - 445471134, - 1796752096, - 3805980516, - 693178850, - 1123467392, - 3944829536, - 703211495, - 2930472276, - 2455012345, - 3679143795, - 2042362689, - 3579044215, - 3288902783, - 3622658782, - 1788420851, - 2248711345, - 2794390112, - 2143867910, - 3002158667, - 3164797965, - 3639386579, - 190375346, - 4259095322, - 2420546989, - 144146531, - 2147022431, - 2971807764, - 1931659860, - 3633079491, - 272555531, - 1896643600, - 3082790001, - 702946827, - 3438633065, - 855991240, - 2723700747, - 1397452561, - 4062290200, - 3893002236, - 2684645146, - 3376945179, - 3879327569, - 2969519276, - 2225415800, - 4061475699, - 3463344828, - 1601359110, - 183286475, - 2302567334, - 1032214748, - 2296274669, - 1698410664, - 635465449, - 116217117, - 3423797945, - 3537986286, - 1659538263, - 3302576904, - 846865713, - 2077343308, - 1564513717, - 3130810951, - 3764531369, - 2528424799, - 1680889867, - 1230353834, - 3548856528, - 3234867239, - 1023386253, - 1478627502, - 2507797868, - 1523005039, - 3790185567, - 2780442041, - 2942141598, - 1225221638, - 3568481789, - 1516613676, - 3009114956, - 2917572649, - 3531051494, - 382684522, - 37533927, - 255486273, - 1236025924, - 3258490762, - 5503239, - 4101383889, - 844595669, - 507239980, - 2950394458, - 1874207309, - 3233367414, - 2779643131, - 1011224159, - 1064187445, - 1483895616, - 415699470, - 3317333377, - 916012235, - 3513246979, - 52070004, - 3471992576, - 720310686, - 2667430402, - 1562208963, - 2446384781, - 2764938534, - 1088873653, - 3924185767, - 2756232131, - 3349698397, - 428946685, - 4248943112, - 1373776559, - 2517902453, - 798335791, - 466094810, - 3127525191, - 666624047, - 100804489, - 572682312, - 212387320, - 2624976363, - 2188718488, - 3068485456, - 3359852403, - 1514136635, - 954950784, - 1700927253, - 4277420179, - 872580691, - 1038491612, - 4196468426, - 2238587325, - 1355255500, - 4258044347, - 1900458124, - 270245872, - 3046312642, - 766424464, - 2959950617, - 1957168666, - 145902790, - 519756627, - 3306638852, - 2759734465, - 2971026132, - 3051354287, - 701487172, - 3180045920, - 2055093009, - 1785316879, - 3804494771, - 1941343525, - 2680756858, - 3988039150, - 557005725, - 9475075, - 3564023209, - 1516010161, - 994612011, - 3040187792, - 3152316015, - 233273974, - 3149004537, - 3067076504, - 2532435478, - 2338506560, - 147280658, - 599956077, - 2488801833, - 3961082600, - 525506339, - 526909412, - 2120897460, - 3129023071, - 3722917451, - 1057762645, - 2847705676, - 315385827, - 436890794, - 2503851833, - 795630281, - 3847776521, - 810519749, - 1128979856, - 2645866535, - 436816031, - 1931151938, - 2051887489, - 2237315988, - 4189701010, - 3657629854, - 3124880483, - 1031002914, - 1788778260, - 4052795109, - 1956322346, - 1672239578, - 815958635, - 3506658716, - 1760000005, - 144413137, - 3289628103, - 1539036445, - 1489869570, - 2334812677, - 425668890, - 1067272226, - 1547971190, - 1117037753, - 599063157, - 2344830613, - 2642387230, - 366835204, - 1025603741, - 657115820, - 4079630556, - 2088128399, - 2433592891, - 972789651, - 458546451, - 3933588832, - 3354192814, - 2913691891, - 1771998963, - 2125816455, - 1532878130, - 2446761962, - 4289466177, - 3404542515, - 601100782, - 3644219518, - 1684914463, - 2217846962, - 359099810, - 789293023, - 1301502455, - 1043205500, - 691068601, - 2163043468, - 4210248948, - 3048771592, - 345148541, - 3664022687, - 2511061512, - 3417738109, - 2403808651, - 1073919320, - 3780013003, - 2319877921, - 4277391166, - 562603568, - 3660095928, - 1920884913, - 403991860, - 635354219, - 3249410603, - 2156689401, - 3720375952, - 4183084234, - 339518202, - 3533338963, - 1070443127, - 1002312946, - 1130895136, - 2497648113, - 2160578691, - 686957254, - 904296574, - 1562618327, - 3862096452, - 3139324702, - 128721208, - 3350738273, - 2734840682, - 2998794620, - 1734832951, - 2049599661, - 184589998, - 2554637068, - 2440044309, - 3075798503, - 203178951, - 3272549072, - 4037551988, - 2917640809, - 1089884067, - 795109252, - 221669981, - 1096313384, - 101422132, - 2019302421, - 4247222742, - 1292418627, - 373965835, - 2192505101, - 2062111007, - 3735477016, - 3884517824, - 4158404056, - 435217394, - 263381696, - 1957192669, - 590114186, - 4045742087, - 2133811271, - 2466465358, - 775435182, - 2511612969, - 2980592194, - 4154555825, - 1081609893, - 2844034640, - 265585470, - 3553459791, - 4258809816, - 458801252, - 4172320555, - 325152349, - 4073771463, - 755883534, - 4203148372, - 514650766, - 3532566346, - 2343261316, - 1096850765, - 3095399094, - 668220221, - 4195184232, - 4027343305, - 3519133483, - 3580148926, - 503764814, - 4040321396, - 820719786, - 960986301, - 3019060000, - 543089836, - 2450781655, - 2855303261, - 3000723400, - 381793758, - 633050806, - 2316712242, - 582135343, - 3079299327, - 2222903891, - 3039118027, - 3217817832, - 3082713971, - 3298457048, - 2250104488, - 587678937, - 2530769550, - 792830527, - 318385, - 1579415289, - 2069882779, - 3331766036, - 2792778283, - 3207743906, - 2296245949, - 2388412731, - 3134640266, - 2709118514, - 1971642901, - 2543954557, - 3250859069, - 1117391263, - 395771529, - 3556000996, - 2542970878, - 1133328190, - 2018804861, - 1544879927, - 1694150564, - 2549019427, - 3659049387, - 405581143, - 2700998486, - 4232833272, - 3407373022, - 4175014378, - 739021320, - 1923392722, - 3645371990, - 621443959, - 4090946424, - 3009047376, - 824187131, - 2227802879, - 3245185988, - 3307249632, - 1017957802, - 422577968, - 3754080182, - 2052080831, - 756264520, - 1783730534, - 2028476041, - 3441401018, - 1093061147, - 1167495551, - 692301653, - 3508518277, - 4201914959, - 2710204692, - 1960356827, - 125239302, - 4127533511, - 3624154412, - 3619503604, - 275799579, - 656227760, - 2706956483, - 385663237, - 1418966060, - 2704222716, - 1578212150, - 257913025, - 2708038656, - 3068526310, - 1191557396, - 1757655579, - 2440054790, - 4132073367, - 2784517764, - 804997959, - 2393594179, - 468825048, - 1749426050, - 1191018097, - 1219875540, - 3231979100, - 1939698245, - 4061237057, - 3393396055, - 2327554626, - 2259182790, - 3286060229, - 606789094, - 1506443569, - 2599371478, - 1435625828, - 3642441882, - 2158386978, - 3772607669, - 2371036832, - 1667749076, - 2208454511, - 593231677, - 699546573, - 1022225063, - 1964781892, - 3268013492, - 3702200625, - 1160315609, - 2538533891, - 443986295, - 1403455107, - 2137410389, - 49347392, - 2933467347, - 1470679999, - 1979380664, - 4209681866, - 3185528408, - 352877209, - 1356609494, - 2708689571, - 1444571610, - 1277253006, - 2744534681, - 2238139183, - 1082862014, - 3351734447, - 2425174102, - 1436435933, - 1067450146, - 2645580692, - 1264358426, - 1969109679, - 1874931591, - 2369135490, - 1311295576, - 1467869529, - 939304418, - 2594424551, - 2870930282, - 4286839943, - 4065262073, - 2478269852, - 3573235509, - 442888158, - 27259492, - 2194749425, - 2070122122, - 3324667421, - 3771163439, - 2911403350, - 2134069268, - 483007492, - 1589873550, - 183168479, - 726962813, - 3658614774, - 488551185, - 431910301, - 1212537013, - 3530327104, - 2489924267, - 2726691323, - 3260204363, - 3050799570, - 945262527, - 616209878, - 3863230054, - 1870934711, - 2393058568, - 590964749, - 2895716705, - 3082874039, - 3095079292, - 2153589866, - 1565312806, - 4124613960, - 420408483, - 3797166621, - 3551836658, - 2601542023, - 1318071665, - 1993779116, - 3533178561, - 3966604494, - 3986398169, - 430188075, - 2199855245, - 2776382863, - 16284659, - 1167168534, - 1203408170, - 2719429313, - 1160814541, - 3770213651, - 1191288652, - 1029356848, - 1149316121, - 2945089262, - 3183925109, - 1414484457, - 1507621786, - 1439509776, - 779307941, - 2689840747, - 3341749508, - 1963827808, - 4197219265, - 2827236290, - 3941628003, - 3172745692, - 2983148696, - 520841845, - 1821393116, - 4001937319, - 3610325285, - 1406519249, - 2926864760, - 2494290762, - 3986844819, - 1070616600, - 4083425744, - 3647247841, - 2037512928, - 830200667, - 4134970365, - 3553851975, - 1230570066, - 2988741520, - 3861271569, - 4169330824, - 4005059551, - 1049531687, - 3637904832, - 1612939, - 1645746759, - 168320844, - 1345748111, - 3183145026, - 935591355, - 2313564780, - 214595360, - 1014827034, - 1650768375, - 2686394695, - 1733447888, - 4031405731, - 3630950057, - 649680611, - 22969748, - 2881200003, - 1032329536, - 788474975, - 4053619352, - 3139442989, - 1333435099, - 3585921164, - 2149770583, - 3309808492, - 556047499, - 1145112164, - 4123676767, - 1985178263, - 1170082558, - 980842611, - 2989548073, - 1937811683, - 4084686436, - 3963428108, - 2304055263, - 3007653349, - 2910500311, - 2249935547, - 766430977, - 43886052, - 3012227677, - 935292440, - 1834656154, - 1024555335, - 1072814909, - 458561438, - 1071347807, - 891318371, - 3222816993, - 3538486906, - 2803042444, - 2366636306, - 995177518, - 4287372, - 4070411700, - 2834996876, - 167380120, - 1578482145, - 3513660974, - 2895035768, - 1301840973, - 3586486334, - 538834933, - 3846930542, - 1420935705, - 2626206185, - 724442168, - 1177005, - 3580725459, - 134537600, - 1725693994, - 3245853350, - 2867763236, - 181446950, - 1060521259, - 3068368080, - 3540193109, - 26758267, - 2553518979, - 1247644858, - 4255186168, - 380866429, - 637521316, - 1424850582, - 2498247903, - 908462122, - 3083475963, - 2513782736, - 2873459142, - 3053779461, - 1985329390, - 1655275563, - 3587075517, - 589410357, - 3758807345, - 4109138634, - 4020182763, - 3342292306, - 249270254, - 65080831, - 1969008081, - 1855459221, - 2356840406, - 4051017215, - 777626012, - 2961335342, - 584133418, - 662453741, - 3453499924, - 1175604454, - 2628438246, - 2794569826, - 2863367603, - 4272417853, - 2778889799, - 1731067292, - 973356136, - 3953006322, - 259309632, - 3280108591, - 3657971589, - 1824433986, - 146980009, - 3324355537, - 2285173017, - 1553595075, - 2653305049, - 2511166474, - 302635021, - 2919569294, - 2873307717, - 3154453506, - 4218780185, - 382991981, - 1879622670, - 2216856933, - 2316281957, - 1728098958, - 1347816854, - 3139416950, - 364599577, - 2955918723, - 177140130, - 2016334719, - 1125381346, - 4264739640, - 786097443, - 1874335115, - 1586549226, - 3569591013, - 18600046, - 1380480544, - 1913024535, - 1488166271, - 3708677070, - 1384618177, - 1103286039, - 3731155326, - 1340317851, - 4142862830, - 882458928, - 2323613100, - 3661444205, - 1193659330, - 3298398832, - 1235353054, - 2516159771, - 2493448002, - 1877900297, - 4240918212, - 4088452109, - 1458365369, - 175987778, - 748982760, - 277193866, - 3720387187, - 2630724016, - 256959586, - 3307778307, - 3754079742, - 1764777125, - 2680679670, - 2949503430, - 1222581146, - 113455557, - 2853801293, - 864613351, - 1460298585, - 1575743560, - 2765554254, - 1420394465, - 3490043734, - 2392362065, - 556183862, - 1013487325, - 3384386744, - 1539501154, - 3454853058, - 444274819, - 2900233094, - 3549770048, - 1304292969, - 3810879942, - 1721978575, - 2451713097, - 1420615347, - 2118208703, - 1797373367, - 607180972, - 3792771433, - 3687227469, - 1579801546, - 2361252959, - 1243629921, - 2299994066, - 3885289433, - 20554576, - 2667580992, - 2180659835, - 1990507878, - 2484047354, - 1894683688, - 2051845998, - 1565971052, - 2197125396, - 3029020787, - 1794385626, - 2557061004, - 2595749035, - 1457906247, - 3731425549, - 721019985, - 1897313907, - 2585549526, - 2087516076, - 4029527627, - 1023439814, - 3105525218, - 800233565, - 3576429249, - 3107818127, - 2577077804, - 3058341443, - 1808988741, - 1319063458, - 4291730869, - 386928155, - 3598008412, - 3559540843, - 2578560995, - 219008144, - 3483308422, - 3392006964, - 3247201899, - 3785550258, - 832133598, - 2830249462, - 151988512, - 1047394931, - 4090580016, - 2569528937, - 4110321633, - 3219427475, - 234020730, - 2001020751, - 2898753360, - 647154252, - 376780389, - 1867035980, - 2967263052, - 4090939702, - 1453417230, - 2034531126, - 2393806588, - 658757745, - 3014707171, - 3558994918, - 3666758418, - 4106852576, - 1238406755, - 3063687699, - 3550533682, - 998773413, - 1936569916, - 2472387736, - 161215221, - 3904806173, - 518575177, - 2482532249, - 605058980, - 505150290, - 1358729159, - 763466351, - 498734016, - 544194103, - 2678270460, - 818824054, - 912929288, - 3768412762, - 2165056245, - 1310914417, - 2453288542, - 1520890541, - 363256009, - 2650466306, - 1933992391, - 2560609441, - 287373862, - 4140401665, - 3728580797, - 2306990256, - 2900630758, - 2160425030, - 3121367999, - 3194743500, - 4163150135, - 663085762, - 4270287292, - 278453456, - 1569513824, - 1005907986, - 448398314, - 2138608156, - 227014077, - 198223021, - 2381287348, - 755332519, - 1537312083, - 29910480, - 2732073619, - 411945814, - 587877938, - 319594957, - 2292038813, - 3093727171, - 3112792083, - 1636244713, - 98882312, - 721292916, - 328782531, - 2321804185, - 4078959724, - 1316196263, - 2326152664, - 1508801722, - 2112098296, - 4042162014, - 2424242948, - 1313245671, - 2899790503, - 2995994874, - 3569482839, - 2666159160, - 2653472813, - 2686311954, - 636316139, - 4138245406, - 3241672682, - 3893956213, - 169412008, - 1364393916, - 815344644, - 3683299976, - 3815215806, - 4177054619, - 1380066961, - 2489643827, - 1090677134, - 4063363740, - 242056336, - 3906611767, - 1321578445, - 3663220283, - 2034717629, - 1950859627, - 3703408305, - 2860294831, - 1560542498, - 1778037263, - 110663034, - 4246177159, - 1906648109, - 2834563322, - 1613983310, - 561570396, - 416563091, - 833501692, - 2471516938, - 3405303401, - 4131124353, - 677341736, - 889176446, - 3422334145, - 1840523354, - 1398338737, - 2525534656, - 3401767323, - 4262791049, - 1310880984, - 2231247893, - 2882176929, - 4200663457, - 4278300490, - 2935493806, - 295041634, - 449676129, - 104253673, - 1685955392, - 1708049865, - 204313688, - 3184864841, - 2404034519, - 4095911769, - 1397405748, - 518502592, - 3744720310, - 3502534252, - 2570257972, - 3714289880, - 2930277332, - 166753872, - 1578031560, - 1470920526, - 206531801, - 1712903997, - 3721266295, - 3160746220, - 3226969835, - 2580261562, - 890031684, - 1805842538, - 3908742665, - 1705559075, - 3941645720, - 2334583189, - 4103310378, - 4108852127, - 1769018963, - 2915228053, - 2283685794, - 4088811609, - 1389854262, - 3448522249, - 3782860191, - 2355027485, - 3047474503, - 2729448895, - 3633874222, - 161964145, - 405363293, - 1564662149, - 744322426, - 1919180, - 3490795244, - 877279480, - 2693480940, - 3567437231, - 839879703, - 1290743960, - 2578500598, - 1088771941, - 2895971208, - 1203471283, - 2049646021, - 2857146219, - 113664025, - 3353494396, - 52779786, - 3430769614, - 4016372668, - 2618077916, - 3253197158, - 2954598078, - 1465675502, - 4092020784, - 3560652517, - 790815764, - 4214417656, - 1927023459, - 315968809, - 1874586248, - 3509595023, - 177628085, - 636146389, - 327060391, - 2062959203, - 3878947458, - 3681426245, - 3949635014, - 2808800194, - 2436834773, - 2191120829, - 861475393, - 1460146448, - 2534656056, - 2695580468, - 3231141777, - 891501598, - 2590918858, - 2852965747, - 1153552618, - 2055811832, - 1220881095, - 12231909, - 2348183207, - 3781586, - 3199554052, - 535637419, - 56043867, - 4261140523, - 2404997514, - 2545273070, - 3005669298, - 2680920761, - 144236374, - 1143864829, - 2866745022, - 447280207, - 2277613348, - 3134359604, - 1755669285, - 4151671459, - 4062977135, - 1758645403, - 1063321230, - 3340041779, - 1660252897, - 2047179147, - 2670602840, - 1627361344, - 3821730385, - 3019930110, - 2535300818, - 4174030181, - 3265140415, - 471812419, - 469812870, - 2968919421, - 1244488550, - 2652377204, - 2599330936, - 402841425, - 2181180709, - 3303852588, - 1473946213, - 4208598473, - 1494106082, - 1651185782, - 3023777553, - 2940623181, - 1942321324, - 1865162508, - 3175554919, - 2809784371, - 4081241928, - 1628465489, - 1298296079, - 1163146139, - 631475946, - 828339616, - 1563813444, - 3526482640, - 2467339641, - 3107262641, - 77865986, - 123308049, - 2021163710, - 1111695306, - 2745450992, - 1353863534, - 2177748989, - 3825101481, - 4247757691, - 1831169722, - 3034022252, - 2756701287, - 2856574555, - 2182830153, - 148764054, - 2665684390, - 1877721685, - 2169248616, - 3640273468, - 812473447, - 2524563268, - 1413991078, - 3186426617, - 2775549326, - 2078830393, - 135007840, - 797860494, - 2608657468, - 3308779821, - 2829518756, - 1686039765, - 1766723273, - 2922116652, - 3670898072, - 208689856, - 2367944554, - 1957512052, - 743147430, - 1447174173, - 3366677716, - 3784299592, - 1746882334, - 1105523283, - 2926688558, - 1676186585, - 2994583318, - 3049475076, - 1663516856, - 371147931, - 2787179088, - 2808599585, - 3707420824, - 3111499698, - 1340554431, - 2258013089, - 2432508351, - 1297948481, - 267790959, - 1889007268, - 1797729949, - 2249472541, - 2124800336, - 2532357118, - 1675562290, - 2440917260, - 1400584652, - 3102978335, - 1218234791, - 252563433, - 2014471617, - 4264815654, - 2380915653, - 516381728, - 1063081880, - 242721579, - 972980710, - 1340662087, - 3035465641, - 1426037930, - 2066424826, - 1854253329, - 421112499, - 2759791867, - 3824913000, - 4126775593, - 870359800, - 1371156800, - 657019242, - 3808106244, - 3246009201, - 1885730621, - 3185546725, - 2638362938, - 3460022024, - 2732331066, - 2145586329, - 153140004, - 399153365, - 1023338216, - 3563353311, - 2551135795, - 2834865118, - 2391056901, - 1804609015, - 3475372824, - 3723276440, - 2016164397, - 2942618323, - 3305714354, - 779677757, - 3330239658, - 3506056249, - 3874613669, - 1925076446, - 178432312, - 3465204734, - 645987414, - 634316838, - 3858874095, - 975840564, - 2406883755, - 966880488, - 1498555178, - 2480587593, - 2921471631, - 3010146298, - 1759765052, - 1369369530, - 2272492595, - 3177130305, - 1788165164, - 4008606595, - 2598301831, - 1753051848, - 235424255, - 4017180875, - 3384455977, - 2314510932, - 462576420, - 3478328480, - 3182730879, - 1301184926, - 2809587725, - 1670200629, - 2844376869, - 2026702193, - 1965579593, - 1969740000, - 1015247440, - 1207387770, - 3012876380, - 3654593395, - 4247989764, - 1910482829, - 3841494524, - 4197480759, - 257129998, - 1849218458, - 3953653010, - 1059842295, - 1530372149, - 4190459365, - 1232317808, - 1420143594, - 629788511, - 1444112837, - 3699494879, - 4034504400, - 3117625703, - 1145422621, - 3259578791, - 760393133, - 2621106190, - 356102924, - 1866573150, - 988687046, - 265107250, - 3235718788, - 3045792718, - 1879600201, - 3607633396, - 2833514247, - 999770093, - 3413672754, - 1716887, - 924181816, - 1473311555, - 183627994, - 2868622036, - 4170532826, - 759831388, - 3432438931, - 4045598941, - 2031911759, - 4099963597, - 1954468071, - 1443237975, - 2244504941, - 3343208067, - 3678964623, - 2142430903, - 3967330429, - 4219993028, - 3484384776, - 844565216, - 3736927381, - 2740482103, - 3849601678, - 2231667161, - 2329690502, - 3472343171, - 481247890, - 173325392, - 3754547982, - 3583752534, - 3230108318, - 3940423672, - 4147580987, - 2154901248, - 2983290270, - 3305516075, - 3010081269, - 1383259658, - 2472559812, - 559664988, - 3905877558, - 1250749077, - 928425253, - 2202829978, - 1475550461, - 1062868064, - 1167578870, - 1026372530, - 2225241739, - 3871540084, - 305492866, - 812680768, - 233341991, - 1965046935, - 1538341465, - 2921102963, - 1140628690, - 3479216984, - 2138179833, - 3907199546, - 2838841643, - 696203595, - 112361224, - 725701928, - 2214934188, - 2170064746, - 3943399697, - 262668719, - 2409268940, - 3002948674, - 567835295, - 473240136, - 1206263578, - 4093789506, - 4161225036, - 4163978961, - 1128857058, - 3269675794, - 3490021790, - 1882454274, - 153734637, - 1676123689, - 74822309, - 1973647048, - 1247718268, - 3212884274, - 509644515, - 3209352726, - 2108256148, - 325682698, - 3119861197, - 2907660497, - 3890649926, - 522453712, - 2371207053, - 2647722849, - 704984214, - 2664064881, - 3741897708, - 3345862152, - 304231307, - 4113369799, - 399605433, - 191760623, - 2000790198, - 1505825806, - 504449470, - 3621098107, - 2544738356, - 477564972, - 692031066, - 1924588419, - 3034839302, - 2524438737, - 2096475709, - 3838831112, - 685224380, - 2286186866, - 3801918172, - 2680268404, - 1629417069, - 1853731928, - 1181147259, - 3047472771, - 1546625185, - 1992176464, - 162577246, - 2399992555, - 1372350389, - 332889473, - 1587398863, - 1639452348, - 1272760050, - 3634344083, - 2378810125, - 3812582679, - 2098072826, - 1195401653, - 1770860163, - 3486336270, - 3244496302, - 3222476055, - 2264265750, - 433846077, - 2685410193, - 334631572, - 2584352421, - 2061107514, - 1277215317, - 3586813395, - 3274204193, - 357332922, - 2232648769, - 1206310938, - 3862522370, - 4005913016, - 748844193, - 2924561659, - 3650957844, - 1467873977, - 4077569822, - 2336914821, - 1769519524, - 807461039, - 3837644575, - 225146142, - 3821714804, - 3546443376, - 3357570348, - 859572623, - 2976476934, - 4083851791, - 882157506, - 2580800764, - 311129180, - 3887709082, - 3110227902, - 1085615505, - 1463581515, - 3105583129, - 484483177, - 1653794183, - 2087146126, - 2225803189, - 394229267, - 3289544177, - 1949536777, - 4181988684, - 3954707029, - 2844647309, - 2535383121, - 4009004085, - 2748724528, - 883690016, - 2927523971, - 2871200024, - 1418935399, - 132267523, - 4063540685, - 3107770016, - 155697983, - 3691419653, - 855270169, - 310211719, - 3010961390, - 2921288484, - 3076711414, - 2733926833, - 895150397, - 586652642, - 4100450996, - 956038428, - 1302754388, - 2469826308, - 3401397349, - 3944816706, - 3443299098, - 231082749, - 4033366483, - 506164902, - 2669672752, - 1186784860, - 2595144506, - 2012399420, - 1676032194, - 235434268, - 292684230, - 532022470, - 2623384518, - 4146571115, - 2208199584, - 3640092267, - 2650933696, - 1963330123, - 2887789993, - 2171234707, - 3823402403, - 7136440, - 2898541691, - 2940119418, - 2216067568, - 1937741018, - 4026584310, - 1741617629, - 196219715, - 1384068136, - 2825763050, - 1520911980, - 1473945925, - 2614832579, - 1429163565, - 2066167987, - 2934686175, - 1815875776, - 262774326, - 1601997403, - 3352076932, - 2543859567, - 1291051704, - 2481265900, - 3164829815, - 3345967269, - 2380388088, - 1516673059, - 3174471142, - 4005950494, - 483189349, - 1697331124, - 3637722026, - 4025951885, - 2597882789, - 1628241853, - 262959374, - 4134718911, - 567519479, - 3510394602, - 4273555216, - 2382325964, - 522073780, - 2966872736, - 2770320736, - 2750276183, - 3475342857, - 764647135, - 3492511516, - 2233432739, - 2579567365, - 3755324154, - 1248746740, - 2198126529, - 749802974, - 592898266, - 4115852831, - 2936566144, - 1233140690, - 1303522365, - 2673743152, - 2501150300, - 1705673712, - 2305717412, - 3553520742, - 3976427400, - 81237818, - 3988877041, - 1757156612, - 259488442, - 1857529974, - 3891589740, - 4177338962, - 1350985423, - 209118, - 2609330499, - 2736395266, - 4277960726, - 3969886215, - 4048223669, - 66267420, - 3006557148, - 2084048201, - 469244078, - 4123759309, - 528453045, - 4275445081, - 2093527142, - 4251813046, - 4035379036, - 2974094734, - 1473115663, - 2068238335, - 3139270296, - 2080411575, - 3833442275, - 3061399837, - 3761393876, - 3917224648, - 4246199728, - 2670693760, - 3372383397, - 513778630, - 1092767568, - 2117354465, - 4024631267, - 2930422893, - 1262712023, - 336000767, - 3083033986, - 2792517951, - 1851457339, - 3989599957, - 660711059, - 3121962298, - 2168859345, - 769388554, - 2567741112, - 4035023728, - 3272582035, - 2746917107, - 2875224187, - 130579057, - 2471835535, - 701807821, - 821600304, - 2317731531, - 3016637132, - 3907591275, - 4178256785, - 3840110475, - 4273065306, - 3463393946, - 2170708388, - 927946358, - 3893565468, - 1272350479, - 1228099819, - 589607927, - 2881777297, - 928610230, - 3136612666, - 4224396145, - 4238432059, - 544051160, - 2369757459, - 3564038696, - 2534448361, - 1097967025, - 1643487110, - 1691659525, - 1625270687, - 2634690596, - 3498341096, - 2448030430, - 2334916131, - 2945858316, - 2005609891, - 1006616842, - 825207430, - 4200858502, - 2762508406, - 2478633911, - 3144500470, - 1457982758, - 3070061514, - 2592254133, - 3556228811, - 3762475197, - 484767534, - 3650928429, - 2474871234, - 3836325474, - 4077979778, - 2756423624, - 791332590, - 126300975, - 52782419, - 234448485, - 52518627, - 2409505269, - 377146288, - 749168788, - 2167000054, - 4151779854, - 2218248698, - 2183505740, - 3268180475, - 2322843648, - 3319934584, - 1894020203, - 697766928, - 532579213, - 1679731327, - 149214659, - 2943005897, - 3297616125, - 2004231925, - 2218110928, - 355552344, - 4001816005, - 2121760061, - 1010576352, - 445041948, - 295367113, - 1030474681, - 1041354, - 4176354188, - 46389169, - 909027590, - 2936387346, - 1696213572, - 2172085761, - 3325963255, - 418358337, - 1296155164, - 2692120383, - 3410573833, - 2924290844, - 4110155539, - 1779457084, - 2672153833, - 3356347559, - 2549786147, - 388164875, - 963910422, - 552289733, - 575014720, - 1003489578, - 3697246791, - 4166723420, - 966382117, - 1677875502, - 2049856316, - 2463873525, - 3207131162, - 63899568, - 536865818, - 1388789985, - 1801447144, - 4228464143, - 3557005649, - 3119011076, - 3997062332, - 3391506832, - 3036410289, - 948599652, - 4156398587, - 619995993, - 2629789869, - 183753533, - 3084365754, - 2969726003, - 1743902329, - 6529318, - 825249715, - 2935588148, - 1991195264, - 1631151740, - 3148528642, - 1677910473, - 2519632204, - 4279470193, - 1738658956, - 2306378730, - 2419168251, - 3927154566, - 4179611508, - 394325690, - 2295511744, - 2400114790, - 1003613931, - 3134662751, - 57436359, - 2927323849, - 931858507, - 4190287019, - 3780048278, - 681724071, - 3670704083, - 1274811998, - 1064760161, - 119311799, - 544848441, - 3729897481, - 4257361645, - 3827033907, - 1344253495, - 69488683, - 220060800, - 7826215, - 1684194878, - 3995342307, - 3027592621, - 601966815, - 2600217636, - 461292144, - 4005284099, - 2280827499, - 3832731449, - 130640668, - 298921265, - 1502159041, - 3592556714, - 2311534842, - 3901490605, - 4004879949, - 343643118, - 1518687486, - 862725251, - 1553068968, - 4136580941, - 3540906614, - 2772475207, - 3378086266, - 3524541848, - 4102860860, - 2291675758, - 325806016, - 2178593382, - 213619645, - 57914995, - 2013467046, - 2772026961, - 2449779231, - 1165830430, - 2431306015, - 3142788546, - 1860053943, - 2266986961, - 3412601111, - 1260445243, - 2473904551, - 2573557847, - 2230158737, - 3872757456, - 3947251317, - 2187555531, - 673616649, - 1745902643, - 2766434816, - 1004465252, - 3192173944, - 3279444977, - 1865212616, - 232994521, - 3493173629, - 3734297420, - 222636792, - 2415038953, - 3426214390, - 3855310780, - 3711325281, - 700825281, - 3219135183, - 1196038733, - 2595000316, - 2645394236, - 542941609, - 13078474, - 1421488555, - 2458386409, - 2842436002, - 962337511, - 811037592, - 3849488724, - 1423242064, - 4175955323, - 1386386378, - 2988098472, - 236311277, - 905252459, - 3479732941, - 2446601418, - 3783645639, - 2563195462, - 2823776384, - 2095156140, - 3220201691, - 3688826163, - 730197272, - 2650159066, - 3533336092, - 2753606481, - 922680498, - 3036145708, - 2964295034, - 180688681, - 3909535911, - 2067848131, - 174679020, - 2640127140, - 2230151302, - 4044845870, - 1966497341, - 1200601306, - 562925386, - 3344271954, - 1751147653, - 3223655575, - 322060536, - 2539230229, - 1394977606, - 1732675608, - 1704066120, - 2136716903, - 3658539248, - 3856243313, - 2271440006, - 3128901879, - 2935991443, - 2101698117, - 3663342810, - 556732892, - 1910981269, - 4115792696, - 2639513467, - 4018853776, - 456965497, - 4229784759, - 1240957166, - 2324890873, - 3223332090, - 1105682036, - 3372527686, - 3348309186, - 2121651984, - 1540663925, - 2388990950, - 489452879, - 3115713120, - 782390125, - 2013376200, - 3976111160, - 1608665252, - 3958309459, - 535343432, - 42784544, - 702739285, - 243223556, - 2744752800, - 2485303903, - 2307467541, - 1469675952, - 660545520, - 2447557765, - 2538813390, - 2246548038, - 695172744, - 4064752319, - 3635969074, - 138295844, - 4039536276, - 2828153619, - 2510715746, - 2245315213, - 2983339154, - 3344090880, - 667193372, - 3437035972, - 766769023, + 1085536354, + 2117980432, + 3306799739, + 1841983872, + 1712404223, + 2262186519, + 2157777467, + 4150668305, + 325024529, + 2723506415, + 1206308484, + 1358232120, + 2189417878, + 935373720, + 1746313307, + 813265728, + 632010940, + 873467287, + 1229687075, + 2909524201, + 274973816, + 2347731494, + 1338722487, + 117948997, + 3986221209, + 1954094011, + 2410354199, + 2337265962, + 2703235542, + 4020650845, + 255509079, + 1020457194, + 464787680, + 988219379, + 2387495565, + 3263720887, + 1593144048, + 4255843428, + 755224448, + 1505632812, + 2965348155, + 2186504905, + 1989935741, + 2124542584, + 3329269738, + 2926109036, + 767012068, + 3813848152, + 1179253254, + 4268404146, + 2334814691, + 2069585713, + 4162817504, + 1351206141, + 2088099270, + 274081735, + 3360573162, + 3570952049, + 122144606, + 803393045, + 525262006, + 103852402, + 2288315268, + 3304166941, + 485424067, + 1204708591, + 2375713068, + 3992905103, + 2251893987, + 3195872905, + 4034441934, + 551949847, + 321179324, + 3825405843, + 2308875251, + 1968464903, + 321932358, + 3600315744, + 2378810289, + 3404894332, + 2549137979, + 2282859265, + 2056378610, + 1290587234, + 2396673472, + 2938124267, + 553438020, + 1881228571, + 2493651485, + 1105635355, + 1410816953, + 3126416171, + 3206121980, + 3997992469, + 3723531113, + 2059981909, + 642832940, + 856970660, + 1512233568, + 2760975304, + 2593280160, + 485980715, + 1008146424, + 1285607526, + 132595010, + 21374975, + 2353511605, + 3855326534, + 143163473, + 784630718, + 2732347287, + 561324353, + 525550095, + 445297249, + 1553083134, + 3064262494, + 30519062, + 1793458618, + 247355209, + 1134279119, + 3070881590, + 879418008, + 3766084471, + 1826713692, + 1571928346, + 1773518061, + 701054897, + 1340631093, + 3180730018, + 3670957592, + 1590914161, + 3075193458, + 2121316450, + 873305468, + 36462730, + 3114095929, + 16258598, + 1823083195, + 2500421080, + 3126003436, + 433577576, + 691671834, + 1709110373, + 928934125, + 766576041, + 3538168671, + 2154380600, + 1867284, + 2055348828, + 1186512334, + 1759112290, + 244091603, + 2701724511, + 2707506788, + 3254080291, + 1567682641, + 1929585270, + 2105902485, + 283649370, + 2808059332, + 21984109, + 3087283938, + 3711374364, + 1442386475, + 2283281943, + 1231006936, + 2951016759, + 2535367279, + 3231269014, + 1310639212, + 2395771600, + 3159821927, + 3498199016, + 1083619337, + 4004544036, + 1687462976, + 843828170, + 3529495194, + 1380398311, + 2340370101, + 3727070323, + 998110942, + 3471121473, + 3450073568, + 1748699910, + 3704610736, + 3340981700, + 3252624413, + 4286661923, + 35250147, + 3123278159, + 1985664252, + 3441207516, + 229839353, + 1632901388, + 3566351477, + 1110685058, + 1749390462, + 2185975649, + 1102555484, + 3622613445, + 163815544, + 794165019, + 1827716839, + 259311062, + 1601493012, + 2664759907, + 1482630079, + 448172301, + 1541517662, + 3361017396, + 12442925, + 1479440892, + 630107509, + 2363652378, + 657813070, + 2823395104, + 1989064289, + 2082361698, + 656868363, + 1985514598, + 2292221355, + 3026989107, + 326024224, + 3350802396, + 705140865, + 2775756809, + 4248267594, + 3117916602, + 2996183745, + 3342043684, + 2109816922, + 131735628, + 1286723645, + 2615653704, + 902288852, + 474764411, + 159250213, + 613017859, + 1465005042, + 3084856908, + 685984197, + 636194235, + 4202543251, + 3084072229, + 418110231, + 3230960518, + 2724189021, + 3943623435, + 630484980, + 4207055448, + 3970420548, + 742437075, + 857083105, + 2322487434, + 3035602517, + 3810119163, + 912608364, + 1185253736, + 3659899564, + 4293560161, + 842337557, + 1228345533, + 508065721, + 3878945523, + 2750671343, + 3444774116, + 674015574, + 203656532, + 845755699, + 829085475, + 1158820187, + 3749720651, + 2868569805, + 2163071307, + 4114830575, + 579975372, + 2045396270, + 3571456202, + 2880322699, + 3786611893, + 794247878, + 2948619491, + 3586079224, + 3423461911, + 2350879543, + 3525378833, + 3295686279, + 2647221635, + 571621218, + 2534614468, + 1934121782, + 3047948616, + 2163170980, + 3700716704, + 200034539, + 3296307380, + 593234061, + 2828846596, + 3202478139, + 2591283556, + 588523465, + 3640357385, + 2136993996, + 875940366, + 2784934566, + 1704795039, + 3417002490, + 3462664461, + 1087126561, + 2449528461, + 877045461, + 173316991, + 2786590731, + 3268851617, + 112842998, + 3026331363, + 1125625609, + 1744390277, + 1251409214, + 493181396, + 4284397103, + 187685506, + 686961108, + 2514440920, + 1199702970, + 4105973880, + 2532201206, + 1158600870, + 3992352894, + 2848387774, + 3450041173, + 2522573071, + 3012910877, + 3630260899, + 300646590, + 1470724744, + 1789793483, + 3468123415, + 4026949611, + 4191460952, + 4052970352, + 1634986255, + 1139983660, + 1349852562, + 48404561, + 2197053561, + 3668826283, + 1412743754, + 2008040715, + 3740902480, + 1759672454, + 2924707767, + 2293874479, + 1790332323, + 2708987693, + 3994362754, + 4113390168, + 1897115504, + 2976342108, + 3196098783, + 853770222, + 1875208249, + 3191047400, + 2407094622, + 4224537593, + 3222836519, + 266738048, + 1513423137, + 2353894958, + 2114425205, + 347189488, + 759583934, + 225464921, + 2672650137, + 2417275516, + 2781533433, + 1383969741, + 2241665463, + 1102721788, + 1261849533, + 547589544, + 3300301578, + 2077924874, + 2893284864, + 1724462037, + 3656845614, + 4007591968, + 2341091702, + 1016131558, + 2777015338, + 2620064644, + 2430166091, + 4126225172, + 3522875847, + 1736834133, + 2662097939, + 4205696505, + 2096953655, + 2810936699, + 804465911, + 4157127994, + 1391364844, + 1021569024, + 1800041482, + 1985623668, + 2684878645, + 555492471, + 2525696941, + 1957424419, + 3527909280, + 1767272482, + 21359628, + 3020321534, + 3113621506, + 2585617493, + 1769644716, + 2421298343, + 3343046064, + 1653058764, + 1753978735, + 2262285349, + 3684209954, + 4053929620, + 3517493269, + 767647536, + 1918390482, + 3857217676, + 1009110292, + 1588807361, + 2984683841, + 515580103, + 274701622, + 3642193543, + 1866506751, + 2821871732, + 2940469654, + 3823409979, + 1212094024, + 3256674376, + 881124468, + 3374665638, + 1346868048, + 1008100250, + 14227651, + 3402565854, + 1121304506, + 4281978284, + 391515760, + 1186667086, + 3949551682, + 348808494, + 1991003804, + 3500568098, + 1266300975, + 4094624159, + 2576304702, + 3066775156, + 3843275408, + 1593669527, + 2513036245, + 2194712465, + 1520341785, + 1903681169, + 1288071388, + 491381245, + 1675998114, + 3467438290, + 3649458080, + 3030470898, + 1437173894, + 3895538845, + 1940348052, + 4130366983, + 2786716903, + 1644435964, + 1115897582, + 710541223, + 829782561, + 1339769361, + 2325825728, + 1791971053, + 2870122083, + 2564980884, + 3742765793, + 262056874, + 2438400602, + 1545066407, + 437751462, + 4281005804, + 3536047437, + 1017035478, + 1659952302, + 2818011523, + 659048397, + 613227570, + 1757056913, + 4013740549, + 1024045124, + 2239597730, + 2199005676, + 1092296362, + 2621417242, + 161103648, + 2654561549, + 3705933034, + 4116218124, + 1830829563, + 3564567002, + 854043773, + 798165390, + 1039848525, + 992815469, + 1593642593, + 1630529889, + 1042937539, + 1919353127, + 3934530445, + 1788196676, + 352686830, + 561809985, + 4214087411, + 3983543649, + 3862801426, + 1938059260, + 1289655026, + 979897043, + 1085546612, + 1558904569, + 1505597789, + 927859855, + 2132736945, + 3840203058, + 718748215, + 2711576833, + 3652274528, + 1719411115, + 1352174176, + 2675475941, + 2706582509, + 1659077676, + 1340726045, + 1378024504, + 3357398403, + 1709691979, + 2175575796, + 1373359080, + 3970383149, + 4021502800, + 1061065555, + 2521841021, + 2727479025, + 1287270750, + 4093614430, + 3973488641, + 3818892712, + 2241497549, + 27943236, + 3273086932, + 1229170977, + 3807172884, + 853419519, + 3482645808, + 3348389928, + 286579514, + 3318504180, + 2632745134, + 3422016745, + 3355782032, + 1227116437, + 3040110052, + 1965638369, + 2923878859, + 3134737308, + 3993078641, + 764440021, + 672618054, + 1635580869, + 3872698699, + 906501940, + 413804204, + 2497558472, + 2970367929, + 3841168338, + 2875510697, + 1415468671, + 2909036276, + 4149919061, + 364026423, + 95761156, + 2113576511, + 1271972680, + 3548019650, + 2076287412, + 4017306139, + 1432083996, + 3904533818, + 1727767353, + 1246726449, + 3467134836, + 148650861, + 1523517899, + 2054849764, + 1494172455, + 1623295738, + 2303356245, + 3941327464, + 1144460083, + 1842096421, + 2785486931, + 1243220690, + 4192599477, + 4197006361, + 760779272, + 3529910928, + 1921874356, + 1137033431, + 3657072110, + 1965491, + 4097534367, + 622726697, + 3563055916, + 3227560643, + 2670112964, + 132777257, + 1996446270, + 4137170142, + 2463773638, + 4019090878, + 3075990052, + 3786380187, + 1871895733, + 1697895460, + 2152339690, + 3685772392, + 2632466768, + 3900013960, + 3802598012, + 4146641338, + 3472229005, + 3416299690, + 923870636, + 3078136941, + 1673760092, + 3888410862, + 668555220, + 1421568934, + 4163099117, + 1797926632, + 684468370, + 810168136, + 3187831198, + 895739254, + 2125158899, + 1139621234, + 3712920767, + 2392948633, + 4107942322, + 2566716398, + 2829940771, + 1299185327, + 2265529887, + 1320750092, + 3212832983, + 306728751, + 1490946087, + 654060542, + 1930075580, + 1850479305, + 1097511424, + 3169531670, + 2807088095, + 4291851655, + 2630499761, + 2458837719, + 2734382998, + 3191205181, + 1234431759, + 1086970154, + 3644867302, + 20628483, + 1851371365, + 740027554, + 1800020632, + 1284009232, + 1088068206, + 972631844, + 3155595289, + 3852420187, + 2831055650, + 2615080090, + 3966254548, + 1369070158, + 2972338506, + 2097908041, + 3384879325, + 670376174, + 1908843389, + 2478472493, + 3012775089, + 4017078425, + 1918175985, + 4176367565, + 1899461541, + 1309265916, + 1768396830, + 2735581779, + 2917380217, + 1420369027, + 2173130411, + 992948060, + 3548558955, + 882752617, + 3278439314, + 3742567363, + 843614814, + 4233940546, + 1503375397, + 3086495279, + 1468572548, + 3803815483, + 2002513, + 924633855, + 3091148365, + 2011946935, + 3601042692, + 3885399235, + 1141413515, + 455924523, + 2242084047, + 482292249, + 1289995632, + 1137511803, + 3374091524, + 2484871337, + 1161660708, + 4099020677, + 3709788811, + 268204093, + 1159671437, + 1120925887, + 1331590015, + 2228774113, + 1884234419, + 87065969, + 331876717, + 2024667782, + 1569340943, + 3194297613, + 228974897, + 1802023868, + 288979922, + 3978099706, + 1276612728, + 1903879006, + 1824108758, + 2785099764, + 1572215343, + 2108353946, + 124757536, + 3543597712, + 1713505708, + 189298924, + 3718097798, + 3058597447, + 697015973, + 563134440, + 1306892321, + 715629631, + 1715149422, + 2013036631, + 587581135, + 1175783084, + 3435805239, + 2549094024, + 23137300, + 3517267680, + 3718729882, + 36614544, + 2190115750, + 4141290943, + 831121412, + 1861553814, + 1460146991, + 3768730000, + 881891312, + 60943423, + 2453836003, + 3384049813, + 2942979167, + 850627788, + 3453777208, + 1189730237, + 3179914697, + 110596776, + 1699511730, + 3508351129, + 2467597387, + 948450228, + 2339131056, + 4203858538, + 1184983903, + 887835348, + 3702557436, + 737384325, + 3987894475, + 2182889900, + 1168958637, + 3133730799, + 2299665491, + 2341894145, + 352258320, + 4220265648, + 4267358455, + 1869770907, + 4138710082, + 3979166653, + 3341228101, + 2528541372, + 2491816885, + 989998293, + 2839646921, + 1642832631, + 681261192, + 227499710, + 168390132, + 2735463622, + 3224853511, + 3580448580, + 2415638996, + 156511176, + 150733534, + 651876942, + 4268328877, + 3838390471, + 482315430, + 250773915, + 4242931519, + 1242976751, + 193454126, + 3371065255, + 3105310500, + 493059064, + 3856586606, + 1213132015, + 588966837, + 2866296937, + 4136308557, + 1979871500, + 3173655395, + 898011520, + 3177135819, + 3779274690, + 1351221062, + 4026440941, + 975758827, + 2785454312, + 3976024711, + 2075740013, + 2055593308, + 3530532438, + 3929628762, + 1630735341, + 3201169877, + 1003927554, + 3359573156, + 3639507041, + 2193907301, + 1808613959, + 4926629, + 2293843019, + 1128173226, + 599268178, + 2352437982, + 1164710456, + 1078164031, + 2352986285, + 1014291137, + 180471227, + 3690797988, + 2715939200, + 4274194808, + 2796097307, + 556069306, + 2467288233, + 3318575675, + 3397344184, + 2370331584, + 401109309, + 2682380790, + 2208267954, + 4291881787, + 21151897, + 2513130988, + 493115498, + 311256947, + 920185716, + 3702037126, + 2414527350, + 2561577348, + 4170200399, + 3842142435, + 190252734, + 1351578442, + 2429577823, + 338312632, + 691950760, + 481636375, + 1268030168, + 1027901697, + 417511500, + 2451028699, + 3382180702, + 3655442731, + 2566230428, + 3022856229, + 1421301139, + 3980596493, + 2281646603, + 2872839279, + 1302221399, + 1365502541, + 684420532, + 2376737216, + 2242815989, + 240814979, + 1994752040, + 3906223122, + 2227728762, + 3156644930, + 2545144973, + 116840972, + 1403188932, + 2713624788, + 4232883388, + 294471339, + 3264851293, + 325824880, + 4182699273, + 2069684060, + 3908747187, + 1605574983, + 2955904833, + 561665247, + 3204320299, + 1721039000, + 2586223327, + 2492969781, + 221418984, + 538072869, + 2592803565, + 2409975186, + 3716452686, + 1830256754, + 441370672, + 1393024510, + 2025187851, + 28410357, + 4061041654, + 2143044652, + 3487302739, + 3697978137, + 2583858962, + 947239044, + 2374879779, + 3699100142, + 1165450858, + 3902700902, + 2682853700, + 3630317683, + 3989397026, + 3675920709, + 1384419368, + 792874190, + 1834510239, + 2013232764, + 1020868781, + 583063941, + 3119960819, + 961240527, + 1340286148, + 465734705, + 3116332103, + 918796805, + 4053666233, + 918620564, + 1107968923, + 2597755085, + 197634261, + 2236538106, + 2279996495, + 512417992, + 3604803323, + 3257914086, + 1067208847, + 2796581642, + 3822344589, + 1434667709, + 3384142305, + 1834585741, + 663644090, + 3313224619, + 1933518118, + 4129076973, + 56034102, + 1293769580, + 4144706380, + 269562010, + 979497654, + 1992170919, + 3491981676, + 963999078, + 1398280667, + 3908367482, + 3302647906, + 630817396, + 341943918, + 2842309531, + 1451926427, + 3397386127, + 1377364199, + 2345739883, + 4126351116, + 3901368064, + 2198039136, + 1887832329, + 933676126, + 2866875958, + 165950815, + 2763887978, + 1650072602, + 1106492627, + 2308285660, + 163580278, + 1581276992, + 1169410429, + 1161358952, + 444857705, + 3787905508, + 1293782039, + 2844263331, + 2886738890, + 3685395278, + 1601620953, + 2519290623, + 1519468699, + 3790210881, + 2094226441, + 2360380313, + 3398306907, + 3603134082, + 3332113362, + 1635903838, + 178751364, + 3884753006, + 181950618, + 2451078581, + 3196524786, + 104370517, + 3866181267, + 425924056, + 2725576042, + 362192809, + 3914497437, + 2141013033, + 691515113, + 942846404, + 3799111513, + 2609990233, + 433480399, + 2467198805, + 4022337975, + 323217885, + 217603413, + 3456859308, + 4007337961, + 614055506, + 2831894770, + 3114209565, + 3305676342, + 370137427, + 1263543636, + 2114082596, + 774629429, + 3567686392, + 3959253110, + 2250098577, + 2303246774, + 893454640, + 2307457929, + 892177970, + 1026600612, + 3694904066, + 37940154, + 1449101885, + 953326631, + 3367139088, + 1595256224, + 1507669000, + 269006243, + 223054556, + 1986003611, + 1039170247, + 297063753, + 3601488623, + 2316436926, + 3762033468, + 3209737845, + 2297587978, + 3366048316, + 2301410322, + 3097969176, + 839899498, + 3282442952, + 982221870, + 2064004740, + 1041347462, + 1811322267, + 1113771634, + 2306400655, + 3832725561, + 2467830708, + 3727518007, + 94094586, + 3355834789, + 2862703676, + 1421288505, + 120561793, + 118538920, + 668651305, + 2225407946, + 2677884663, + 3768050541, + 672390479, + 272942984, + 547980162, + 1925811576, + 1888786058, + 805659951, + 3778221815, + 1000452525, + 1192695981, + 417066163, + 3464037849, + 2591318068, + 3979809735, + 1931713937, + 348441033, + 3391534648, + 3186260435, + 3337558252, + 4241021229, + 4006316331, + 990024486, + 540018664, + 476468588, + 2364116784, + 2426963098, + 1138794579, + 2543232093, + 4033882606, + 2667360293, + 1718693787, + 3112965574, + 3352873006, + 2500162256, + 917631762, + 1785804284, + 1825480243, + 3237827998, + 882241551, + 2356332059, + 4068688357, + 2249583837, + 2245189575, + 1033607244, + 171187105, + 1037242517, + 3459046188, + 4198402706, + 1002293491, + 699804671, + 1722669725, + 692659064, + 3254296159, + 1110992360, + 2415906073, + 1705408268, + 1447584221, + 2730118858, + 381018389, + 2132602483, + 4188790742, + 4022681003, + 4116273612, + 2788641056, + 831585401, + 1022064131, + 99332313, + 3985257888, + 3014690032, + 2906967173, + 4119953409, + 1199742739, + 1529405728, + 2646244847, + 1525112528, + 1590133554, + 3956126852, + 3159372566, + 1041031331, + 523933133, + 713094833, + 4017729928, + 2474499374, + 2274032882, + 724020105, + 3989279324, + 990371971, + 84657242, + 805337768, + 3340497861, + 1447809881, + 948331213, + 2925341325, + 477410495, + 3728035475, + 4248868443, + 1207692067, + 3912942934, + 3956508263, + 2552096469, + 1306714547, + 3809440626, + 3584715925, + 3330104793, + 701943893, + 3351673712, + 1949167976, + 214999864, + 545869442, + 1771710328, + 912755072, + 1884714178, + 3187673843, + 451595272, + 74573965, + 1822316328, + 1519034238, + 2869003300, + 219978568, + 3982152472, + 2156669868, + 134026856, + 3456472543, + 281095369, + 4026024712, + 1290944223, + 3431292649, + 3849666877, + 147437835, + 4294390717, + 354898054, + 1289238332, + 2643957755, + 4088107619, + 3894154483, + 1140711931, + 3232485719, + 2095688585, + 4058965334, + 1406652864, + 1252766862, + 3633712762, + 2361045777, + 3143506582, + 14085863, + 526659713, + 1185408006, + 660814847, + 3693127124, + 3836439459, + 1404090528, + 4194958431, + 3483386578, + 2209987395, + 2514573258, + 2128754978, + 1620094337, + 3065537750, + 2821082491, + 4015520032, + 2699416828, + 1563727035, + 2318997532, + 3009096703, + 4240853869, + 3389576765, + 2694353874, + 2670277705, + 599701034, + 4281275357, + 2093999862, + 2282497045, + 3850236155, + 1250454751, + 1611058439, + 478316863, + 2658557913, + 2541479455, + 1237296763, + 1534834481, + 641293986, + 4257798418, + 747821052, + 4199062952, + 66708659, + 1633386524, + 4067017550, + 264319267, + 2961165242, + 4121665614, + 1160054217, + 1800798484, + 2500854687, + 3690464058, + 748471494, + 1417968619, + 1504925179, + 3328780352, + 1571974576, + 3872213890, + 2271639358, + 3376742057, + 1092290667, + 813770933, + 3097534780, + 2520919323, + 1858667787, + 3755951001, + 533261859, + 1278785330, + 3495927959, + 20611212, + 3059108067, + 285606893, + 1714648318, + 604659004, + 3504355623, + 3198889118, + 1380835532, + 621945810, + 2227978466, + 992577043, + 3218072892, + 3233400660, + 472491067, + 3670337360, + 3491503700, + 3469572750, + 3065199928, + 629845525, + 474179478, + 520889121, + 643711565, + 1419704857, + 352560402, + 2566502214, + 3538916970, + 3482193761, + 2417969695, + 1445021958, + 1584365093, + 2030671657, + 3395271567, + 1572877737, + 3487108341, + 2139837940, + 258499954, + 2034008043, + 3533608451, + 3796980361, + 2732144569, + 1700671014, + 379784814, + 1698797500, + 3707646619, + 2685937249, + 4154939027, + 2275770720, + 2005065992, + 3893824728, + 1053538606, + 1276583041, + 767392289, + 2329231815, + 1844349696, + 109361720, + 385742290, + 4177013720, + 4057721153, + 1557767992, + 872062732, + 3218328969, + 2309551790, + 1135602866, + 971028944, + 1179199215, + 1218017248, + 670701970, + 278119486, + 1654668639, + 2873844239, + 3329606891, + 1905513486, + 1970518972, + 2859566400, + 659735424, + 1270020647, + 352582303, + 1465898630, + 293457185, + 1113584038, + 1162900898, + 1511455766, + 1586301662, + 1684964449, + 3335102112, + 1918297518, + 867004905, + 168453080, + 1719614769, + 1918215206, + 533478040, + 222783565, + 3085341460, + 3464374882, + 733958340, + 2048411703, + 372217802, + 525798875, + 652234189, + 2907990871, + 4151310554, + 787515247, + 3385657349, + 2047711720, + 3081385268, + 1308309535, + 1001244044, + 2890086571, + 665270045, + 1775294707, + 63518887, + 649576604, + 3065301332, + 3502719067, + 3038287952, + 3879218349, + 3179851758, + 3939077195, + 4122811118, + 430501140, + 3035971581, + 902893422, + 427635683, + 2730011451, + 2523183039, + 3272786475, + 2387459503, + 417432601, + 3297045559, + 4060502747, + 939908200, + 3150410563, + 2553407864, + 1572709816, + 2068949480, + 2922742786, + 3439150646, + 3111744726, + 2614684120, + 1384767286, + 183056764, + 3597944479, + 2021718047, + 304391167, + 170753299, + 2455562409, + 3614369200, + 609588703, + 3458840782, + 1006680605, + 4056905045, + 1863866646, + 2624775338, + 186208783, + 1863997245, + 3698612546, + 1138494284, + 3377966922, + 2723569302, + 1696174665, + 1231594080, + 1775194410, + 3144809831, + 3273112191, + 707802323, + 1552489752, + 363893546, + 2570958396, + 2401223919, + 410130005, + 845767803, + 1848399035, + 1027175022, + 4290916264, + 2185755601, + 2478450215, + 209646094, + 3309366240, + 3363219348, + 4022905235, + 3254481462, + 2549408372, + 1172390660, + 4059818617, + 4274730785, + 537664541, + 836331527, + 541289403, + 272421683, + 3078434949, + 552598907, + 2851571027, + 3350772864, + 1238727567, + 1165004395, + 3005921781, + 1100856561, + 2285427135, + 2010991139, + 208585956, + 2673355726, + 3602091483, + 3038826407, + 1411288782, + 3809103714, + 3679331232, + 2932403193, + 2227258167, + 3835831670, + 229609295, + 741525462, + 2031293869, + 3416188007, + 3821780299, + 3370583082, + 3280734342, + 3103555100, + 3674388295, + 3423851501, + 886751393, + 2786690953, + 3002660473, + 3967826657, + 2097679474, + 500967689, + 368540519, + 2492935542, + 2359110093, + 1790252579, + 3331167795, + 2555117519, + 3505928166, + 27756293, + 2576122123, + 1452523982, + 3127160609, + 970813052, + 2565125345, + 1764322590, + 1556734909, + 2235987739, + 1844585618, + 354090702, + 2959351540, + 4058745301, + 2814170779, + 2537400629, + 1562237033, + 4191554306, + 3224368221, + 2221010448, + 4096018618, + 4249718147, + 2801370289, + 3502310923, + 3701664454, + 644714473, + 1347246147, + 544498209, + 1488153636, + 1038554366, + 906519349, + 203296284, + 1333970984, + 2896673534, + 1960913136, + 3197903823, + 3959393609, + 3445230344, + 2904728891, + 3068781067, + 947225262, + 3385573400, + 3344502862, + 2266444987, + 762210448, + 1647682581, + 3570494765, + 3203611454, + 1759931374, + 3856547876, + 729278465, + 3505860349, + 2370708716, + 707420696, + 2229527969, + 3009316491, + 2494180908, + 9884503, + 3480298985, + 3402220791, + 565537650, + 4065839263, + 494162889, + 47273670, + 1202321378, + 764916307, + 62629437, + 468672622, + 1857595321, + 2248643006, + 3811737857, + 2407314564, + 266433106, + 917557949, + 1066162339, + 2132792226, + 3274397868, + 3062020672, + 3765167379, + 2937911740, + 1471502176, + 2695678573, + 3846250102, + 786320986, + 2005279637, + 2393071922, + 811894366, + 775813316, + 450701343, + 1985137779, + 4158891430, + 723802964, + 2105155503, + 3654424909, + 1963782061, + 1575054504, + 676756991, + 335586170, + 452898600, + 573868649, + 2002705710, + 3475536136, + 3076138672, + 958013755, + 3493630507, + 1396510452, + 2234434239, + 1613914085, + 516569916, + 3850006452, + 2116956940, + 3443640755, + 2989496840, + 2367722007, + 1268049243, + 2047485626, + 1481674414, + 2386015404, + 2659193613, + 1447951620, + 4038982735, + 608427975, + 2484364502, + 3959694322, + 1101777209, + 2541413306, + 3565345807, + 2033902288, + 3005838115, + 206671030, + 3560968245, + 2595380954, + 1835881340, + 2975975794, + 513713125, + 3710862094, + 3395886482, + 1179658973, + 1355609318, + 1035428810, + 3890571222, + 3450601011, + 594177530, + 2613765504, + 1820083066, + 4255930691, + 262855456, + 1889064041, + 363624751, + 816015274, + 2415046974, + 2025925411, + 2480300197, + 1189630180, + 1079027340, + 3467742534, + 2136720330, + 1240187370, + 4244115861, + 3977185089, + 2003009309, + 4132007005, + 2679486190, + 350991981, + 2278323638, + 2136824970, + 2046729081, + 2496971765, + 3224982418, + 3661404649, + 1635139260, + 1938557226, + 1007151442, + 4170300236, + 1561837962, + 726973250, + 2454541909, + 2243697273, + 3968379892, + 2072198960, + 337229479, + 1678888051, + 1418736956, + 2705029597, + 1484579177, + 3367785423, + 84043072, + 236552656, + 419850704, + 738786327, + 221744368, + 2327919425, + 2321399502, + 2890018642, + 2396364197, + 3411006195, + 2270479979, + 749836972, + 3619820872, + 3901769288, + 645756009, + 1097476687, + 3074692831, + 2649127997, + 3688014145, + 1040479101, + 3235174823, + 2526083559, + 723743547, + 3499912163, + 1472139631, + 3981425685, + 2411967878, + 393981645, + 3197506923, + 3193695936, + 3106566287, + 2308231928, + 3513514482, + 2833504468, + 2987008167, + 2135808563, + 146921160, + 4033871698, + 865889923, + 871943779, + 2217860701, + 352283082, + 3305859881, + 2766718642, + 4218915165, + 3985342776, + 3564857484, + 3021895197, + 4059524941, + 107609374, + 411075613, + 988007647, + 3981366083, + 3311333715, + 3916627421, + 2422313523, + 211263098, + 964673338, + 2727372083, + 3084658021, + 3991582963, + 2393763329, + 787300743, + 3384399358, + 2867087175, + 3770294393, + 4185313052, + 3837187499, + 2949171162, + 1574658509, + 355529568, + 3093497490, + 3831625331, + 3949013919, + 1924756814, + 2818466486, + 2442202803, + 3741219417, + 2564966489, + 2350271709, + 3336975958, + 2374320061, + 1249800709, + 1628105030, + 3388187254, + 4071837283, + 4027707435, + 2318084948, + 493398516, + 2871559809, + 2538147071, + 3857323015, + 1537174219, + 1015084423, + 1007811834, + 333132782, + 1644187440, + 1403956280, + 3277269056, + 3193248958, + 1096101336, + 3889526353, + 1757280694, + 2289840114, + 3551445955, + 732839688, + 174143470, + 3770844832, + 3727157439, + 888524667, + 3007137510, + 616525616, + 1186691889, + 3588710577, + 2138217208, + 718200117, + 386851126, + 3439583809, + 1284831197, + 1398957692, + 1805694094, + 2343595425, + 1896230702, + 129676655, + 1111991, + 739712956, + 763237123, + 3951020970, + 2574622746, + 1482291327, + 3554150521, + 2118091293, + 1357825597, + 172790042, + 1612620449, + 2340040518, + 881797084, + 4199754505, + 2809796486, + 2157582702, + 447409911, + 111630688, + 3305781894, + 1506089883, + 538883714, + 624452413, + 4056631145, + 360790421, + 121620575, + 3972782349, + 3316390429, + 1243100375, + 1272260408, + 3080480023, + 4117340452, + 1749464530, + 981365583, + 697933604, + 2845166610, + 1701465601, + 30629111, + 1821385790, + 3248107186, + 3498910072, + 1899607094, + 1863657945, + 3863569855, + 3985200248, + 3745056235, + 3321582074, + 3786674968, + 2564687521, + 3294968816, + 2497175466, + 2202299985, + 3274078101, + 2247375778, + 2993709460, + 3847372967, + 3564909645, + 1037302139, + 2326183763, + 1687134225, + 3197807093, + 1870280662, + 3220346902, + 3767188279, + 287883303, + 1369958061, + 3968906095, + 4187816044, + 517411297, + 417572206, + 445283093, + 802965966, + 561525637, + 3571237758, + 1087063676, + 3657768454, + 3911387738, + 969413272, + 1350753235, + 1656035182, + 3598949382, + 2000957403, + 4174331627, + 208223461, + 641053168, + 3307602318, + 418749542, + 2834377088, + 2000099968, + 964986783, + 3630171081, + 936015245, + 3407561402, + 4129610851, + 2008747839, + 2390016365, + 2432469286, + 2729573595, + 947491011, + 1034576666, + 457016082, + 2844782912, + 1701411117, + 2613419969, + 2837373815, + 3369910787, + 3920500550, + 760078164, + 4092806442, + 3770907001, + 3991880895, + 3142762260, + 3505077433, + 1396880770, + 4242339822, + 2173915956, + 3326171082, + 4173722546, + 1542366078, + 1812653728, + 3419105729, + 2708438864, + 3754677675, + 2678918239, + 3566524968, + 392245340, + 1265078623, + 2760776170, + 1547631193, + 276955043, + 328401777, + 4192593497, + 3310988207, + 358134929, + 199398250, + 3431944078, + 2569765796, + 2814608918, + 2281035052, + 3542660275, + 4166401417, + 1895516721, + 4070375049, + 536281444, + 3225284225, + 990386693, + 155606162, + 2938788509, + 4124640395, + 1511989756, + 563440635, + 782802188, + 2461606601, + 1665137949, + 2837793786, + 2247000295, + 2345090308, + 712996351, + 2188841087, + 1283177985, + 4219541248, + 3458908477, + 1391689161, + 1965556112, + 1931654504, + 3320085687, + 246447210, + 2375859845, + 323897742, + 2172800055, + 1229550962, + 3071639195, + 3056011778, + 2781655006, + 2901636528, + 1253729414, + 379958889, + 948148953, + 735408459, + 2364665464, + 1968816619, + 3967119810, + 2270748802, + 938929299, + 1919976769, + 956393171, + 902842244, + 3470734393, + 1474455607, + 4131771277, + 3209173843, + 2143055947, + 3458402259, + 3995385113, + 3845450436, + 342378869, + 1083267231, + 598323984, + 4060045615, + 2310216714, + 2161885205, + 463740147, + 3320733127, + 2679788943, + 209328802, + 4226617261, + 4212229245, + 483698479, + 1333335554, + 1855535372, + 1917921431, + 1272816054, + 1378258566, + 2435066663, + 2140909050, + 3467362303, + 3004567522, + 4160999385, + 923888391, + 1645443780, + 909768319, + 4273537566, + 1960078410, + 4149063086, + 4104657183, + 145000095, + 2609957687, + 3310517812, + 2446897657, + 899164713, + 2229389614, + 2221036390, + 1539334333, + 3330089720, + 1765383561, + 3763711557, + 421911001, + 3448751775, + 1621049960, + 1147639809, + 1529686335, + 3318393987, + 1729090522, + 3435733589, + 1296433531, + 2270640244, + 4158787163, + 941176445, + 644501780, + 1947374871, + 2342262622, + 1749720103, + 145195593, + 3222901788, + 2979029828, + 2387384467, + 1578154651, + 493557771, + 4119914755, + 3755997090, + 1643070984, + 3053439345, + 3689323891, + 2313397070, + 4283660887, + 3464028714, + 1416559202, + 2105543678, + 2133014082, + 2112892852, + 259821546, + 149424358, + 512856449, + 1672418496, + 467361762, + 3250588006, + 908451261, + 1942816266, + 1582371386, + 2896119846, + 816487026, + 631734667, + 1844846604, + 1280076577, + 4170768154, + 3683173117, + 1873327429, + 3743983813, + 1852120335, + 3065944924, + 3061493318, + 1794699881, + 893250914, + 886609179, + 310125993, + 1419872800, + 3040226348, + 2878592958, + 582524761, + 2236999558, + 2025267525, + 4012515166, + 2165063704, + 730766129, + 4135351277, + 2993096973, + 1852127780, + 262657038, + 673567882, + 1775845332, + 4028399509, + 1230948238, + 4234051068, + 1362871229, + 2715924251, + 2066046729, + 3428929162, + 3341616730, + 2339788716, + 2086355143, + 2725199464, + 1849923379, + 1175973567, + 2233476166, + 1991347913, + 829014502, + 1825865339, + 1965184728, + 975267547, + 46595602, + 2557785201, + 811574200, + 3247915358, + 3368385925, + 2379601202, + 788907520, + 2293019671, + 1927501659, + 1605783870, + 2282191786, + 3661322292, + 2626382121, + 280497639, + 1189432246, + 57024570, + 2528929777, + 665327719, + 3870875376, + 1826638339, + 2722124113, + 3148857410, + 3064558797, + 2046711372, + 2034300515, + 1389355484, + 333000346, + 796860408, + 3043618353, + 1914834507, + 629799572, + 1569054780, + 2338392202, + 1094525692, + 3261070506, + 1223637600, + 4153619708, + 790684919, + 942549923, + 3267002088, + 2373341965, + 3994157519, + 3019208121, + 3859399796, + 3380633956, + 3642559988, + 2312856738, + 2500863433, + 437169008, + 2892679370, + 3182486317, + 981944295, + 2128742500, + 2218720359, + 3338824772, + 653202548, + 2934652665, + 2541100326, + 1155095501, + 422531881, + 791380064, + 952490580, + 2927357127, + 3948306502, + 2057902583, + 618351996, + 3235228698, + 483908427, + 710951509, + 3728070755, + 1059306012, + 4167701854, + 119489081, + 1832822401, + 3568246885, + 4060621539, + 4210996815, + 1087603195, + 4274997846, + 3681408352, + 674130462, + 1329482029, + 2151552219, + 2432543996, + 4193589827, + 2241350863, + 3577550019, + 754996191, + 908356171, + 382014318, + 3930049382, + 1610415673, + 1428026736, + 3807150017, + 2786632632, + 1155819551, + 483007515, + 3192245408, + 2270791330, + 1682658050, + 515988825, + 2642227868, + 3141783895, + 1386208292, + 4136005278, + 4294836967, + 76807098, + 3515803733, + 323171098, + 676738701, + 1600625318, + 614848081, + 3320690363, + 2487022667, + 4224312453, + 2054962903, + 1039108684, + 2452358602, + 3580765969, + 3827580620, + 3789921644, + 282750861, + 3532983295, + 3717378749, + 3441345368, + 4031416854, + 1963588602, + 4180140373, + 1629416338, + 1063923805, + 1814362626, + 3872921234, + 2439149606, + 3348820587, + 795111013, + 814070699, + 2120654933, + 2462730759, + 3156373023, + 1122068880, + 2690825404, + 2800882352, + 2333826227, + 4234259008, + 2222639335, + 3313869600, + 4231778008, + 3065460793, + 3342671344, + 3698903867, + 3994077553, + 3852728728, + 2873872078, + 1159732988, + 3664183937, + 3264753981, + 896132042, + 2933072928, + 1604402516, + 3900187847, + 1802668063, + 3240331126, + 2946561709, + 2537152698, + 777979815, + 3476612981, + 3545770158, + 3188490679, + 2062600062, + 843772695, + 4238226694, + 2089972999, + 803433194, + 796626391, + 3346404971, + 1996933672, + 431803232, + 3895904795, + 3063857670, + 1804009891, + 2644942912, + 402652806, + 3842152804, + 1403840999, + 187067540, + 3056934248, + 3183111715, + 2052064746, + 3850468485, + 2556325111, + 349411946, + 3414681983, + 1798381154, + 723299312, + 3351774273, + 3801910514, + 3137977429, + 1210204224, + 4232579361, + 784506845, + 171817949, + 3727539964, + 2056464177, + 677188918, + 355896611, + 2683106624, + 2941256633, + 3993809365, + 3524638048, + 2927742667, + 3050709271, + 3293512662, + 1266062403, + 2126843653, + 2921201225, + 672170134, + 619962283, + 3162636115, + 4281532868, + 65809490, + 1098388873, + 3365558885, + 830256207, + 2604354713, + 1872825439, + 3754882552, + 2442134328, + 3366691918, + 20293746, + 2597281159, + 1917390619, + 2098499134, + 2924053029, + 2787237179, + 1021351964, + 3918119151, + 775779338, + 3963416816, + 2249259874, + 1843819437, + 3740301527, + 736128130, + 3219278705, + 3605727073, + 2041006675, + 1623759802, + 1715504431, + 3862162592, + 2525974333, + 4078329767, + 1509016612, + 2697857535, + 2586819943, + 56523645, + 488930597, + 986413572, + 2642169408, + 138345343, + 2242917601, + 2268662768, + 346318923, + 147197816, + 3841837501, + 3954777406, + 3832129452, + 3640480602, + 2876814872, + 53301794, + 1178549222, + 1042964461, + 3615429402, + 1115665078, + 428385722, + 2106592739, + 2075309051, + 1139461785, + 3501607373, + 3830040059, + 1981667067, + 2078463210, + 2798192082, + 191463444, + 44484226, + 3793254428, + 1866180861, + 247842290, + 2310522127, + 115050178, + 16732183, + 4050705461, + 1520024483, + 76514131, + 684069252, + 1425023956, + 3339540140, + 648002675, + 999675397, + 777037302, + 3022428561, + 1285180841, + 1175522972, + 1864687973, + 3777599201, + 3394737917, + 1835871114, + 3951793907, + 1128392865, + 3797013213, + 1069116187, + 482270381, + 1915945011, + 3969998915, + 627469271, + 4042501393, + 1594261388, + 2589641200, + 1079246605, + 3838731139, + 594852175, + 4277053738, + 2429616906, + 676144626, + 1737892536, + 1227494089, + 2318611500, + 49013431, + 3921227889, + 2786762987, + 910731277, + 1168194847, + 9642518, + 127199510, + 3649925936, + 3769788672, + 1689201483, + 434989233, + 3941246624, + 1672216865, + 373412832, + 3867004521, + 2923749098, + 1626433802, + 3965331907, + 3584237235, + 2811371357, + 262404242, + 28091613, + 449025580, + 705504849, + 2089588568, + 3011712735, + 1470958467, + 763779230, + 618060232, + 3638654393, + 733096155, + 4064999044, + 926371140, + 1915264245, + 2582118340, + 3701511286, + 412821362, + 148261962, + 2949947578, + 2593835345, + 1532575795, + 850237254, + 2230704606, + 2524334125, + 3640940759, + 398723137, + 2219547842, + 4281683642, + 2081601290, + 2696413310, + 2013282185, + 4158801876, + 1971975258, + 3802489706, + 868706236, + 3457812568, + 656351980, + 2205423407, + 3657441566, + 2792302467, + 3917526608, + 3588617544, + 3505484860, + 65995458, + 4182870461, + 2109275750, + 3012147783, + 1353852189, + 2768903595, + 2275333674, + 2460876476, + 1875881256, + 3123444371, + 3616447865, + 1279491158, + 1378636109, + 198439502, + 774098769, + 3333629864, + 1263703309, + 2613493211, + 3759579322, + 3948784374, + 2866276004, + 1225201510, + 276201330, + 3881378420, + 1333270536, + 1167020344, + 3731137530, + 2013128453, + 1268423312, + 584405921, + 4055009467, + 596780915, + 177058472, + 1796575804, + 834791367, + 812106026, + 3930619529, + 2450686982, + 2398592253, + 73633176, + 2418428633, + 1323758403, + 3009947924, + 2059603641, + 3133027782, + 904932493, + 682965041, + 96681623, + 2351559340, + 1778180331, + 97684909, + 544087413, + 132510513, + 2238533219, + 1998974670, + 2218957156, + 3008380196, + 1277902395, + 1268966375, + 1799517161, + 1856927471, + 4089824563, + 2948753658, + 2568533320, + 521835081, + 4038746355, + 2534721941, + 1670201249, + 1811728331, + 1162166913, + 1898549560, + 2948654480, + 2901009943, + 2911677681, + 2815310186, + 2188874160, + 1412854525, + 3961550828, + 484486644, + 4085203908, + 3579822201, + 4008947216, + 1166984689, + 1721572946, + 736203780, + 2747611284, + 39535783, + 764171576, + 1257015450, + 450778844, + 85372012, + 1053725411, + 3644040349, + 2772669201, + 3233733058, + 1431861625, + 3038381355, + 2367217221, + 2283649777, + 2350364789, + 2318128593, + 4107325019, + 157401496, + 2083781936, + 3651226417, + 1235634378, + 3750381335, + 1675554286, + 4155575857, + 467446355, + 4214686643, + 702634429, + 712303747, + 1567960518, + 352541689, + 534026993, + 75369865, + 2267458521, + 3066769069, + 3590411729, + 2942380665, + 881135000, + 439876096, + 2082200155, + 959131142, + 3226183983, + 1805705079, + 416278815, + 782761855, + 2369948756, + 3572666608, + 2017623950, + 3047715311, + 3344610150, + 11286817, + 3614361216, + 419757045, + 3418375005, + 2392045671, + 3625839645, + 4153182169, + 1895009300, + 826795925, + 832382617, + 2855552455, + 516640103, + 3097326913, + 3644017077, + 1736375198, + 1300883196, + 1269079295, + 1674589825, + 837820536, + 3029532241, + 1490398223, + 354933227, + 930667154, + 3953267824, + 2680672233, + 1318017272, + 2378410004, + 3097115705, + 666792429, + 3990985418, + 1648033583, + 1224083855, + 3099232874, + 3602024859, + 523107411, + 1022998311, + 3947062200, + 1268698776, + 4112447178, + 4223496244, + 1895607307, + 1343346586, + 1569239180, + 2399117310, + 2759164687, + 424112886, + 2999714183, + 3839520140, + 3314031783, + 3013173807, + 4008685375, + 1859553179, + 3201257383, + 951117634, + 962987201, + 2171781665, + 2867468515, + 702794205, + 534839755, + 1098520512, + 1024505706, + 24855086, + 1256888647, + 710341508, + 1174171686, + 3969936200, + 352947506, + 1411359712, + 54895376, + 2892538978, + 3811309486, + 1176667167, + 3186571348, + 293018205, + 900275274, + 659668216, + 3631091910, + 3986557832, + 936854211, + 4126162073, + 199206599, + 800343626, + 2500420391, + 2458777080, + 1621984961, + 2230381712, + 3838336724, + 653186549, + 562093785, + 3349474996, + 2470582250, + 3546432743, + 3823404340, + 304228293, + 353650469, + 2795844905, + 3214597663, + 3015830248, + 4096189976, + 1543999863, + 2444608781, + 3075922009, + 2031701569, + 323849278, + 2014036742, + 1932434944, + 1783510442, + 3346370649, + 3330914388, + 3105291624, + 349723999, + 1675851455, + 2585924056, + 267181254, + 434982148, + 2927628990, + 879031917, + 829651192, + 1529714908, + 1305112924, + 655409946, + 294227433, + 3664549654, + 1965090525, + 2820969920, + 3312826671, + 1303484074, + 467549375, + 44215757, + 2655462001, + 703657197, + 3159835075, + 3294492335, + 488218638, + 1964778246, + 233844640, + 4185425491, + 3872509542, + 4098454064, + 2800291797, + 2049071011, + 908392761, + 1142278701, + 2090776555, + 3055917354, + 2147747017, + 3866581642, + 2697987596, + 4061072174, + 416325149, + 4024789595, + 3949568694, + 1651938236, + 2001230579, + 2214888238, + 1290801404, + 56776462, + 3076417887, + 782612972, + 4080283022, + 1316028900, + 1807111207, + 2777418525, + 3799697747, + 3330724827, + 2407025550, + 2192635846, + 1326386701, + 181906566, + 2704591351, + 2332288340, + 2737340964, + 4059820001, + 800157830, + 747116165, + 3945901883, + 458863852, + 378603401, + 91229067, + 3864173461, + 4214835552, + 3064324033, + 4031418546, + 2576908243, + 2186052852, + 693230562, + 821948541, + 1336473536, + 3207554374, + 335661172, + 1077176194, + 1426162892, + 1820589956, + 1417870851, + 3388072177, + 3246018189, + 3372034344, + 1695091022, + 533758591, + 3747368500, + 2774266377, + 2510062662, + 2704449333, + 4121145527, + 2462398332, + 3268788699, + 3053480025, + 1728135667, + 1938970618, + 486276440, + 755968284, + 2808295005, + 243486152, + 606849322, + 3481880680, + 1411375358, + 2656196617, + 4224811188, + 3631388540, + 2278146928, + 3733750977, + 3961916496, + 3261521121, + 1420196296, + 1258193893, + 2659699577, + 1611917360, + 158232170, + 1584612018, + 1267240944, + 2310854457, + 1850517939, + 3176110051, + 416228811, + 3597142785, + 1629335394, + 3536618646, + 3177662378, + 477970022, + 3209901051, + 2324893875, + 415783515, + 1618396512, + 1493894824, + 633482086, + 3982163253, + 733741266, + 3126125659, + 631696737, + 1662825596, + 4060849887, + 240321204, + 2629314537, + 2308625239, + 3298230656, + 2094035418, + 2448544180, + 644550195, + 4086036911, + 3904414186, + 1105783866, + 1999294877, + 12938024, + 3177597289, + 3515511861, + 949893236, + 302406846, + 2303518735, + 1860144402, + 3120657480, + 3694882395, + 533118959, + 3610021195, + 4180819356, + 4211694578, + 807527016, + 3082847207, + 253261105, + 2237573697, + 2801227581, + 1492451588, + 1924428852, + 2492168163, + 3160332339, + 3024419664, + 416040945, + 2865131903, + 3432150747, + 149942035, + 2648035448, + 1196590367, + 3250439783, + 1657627609, + 2921554621, + 3559902096, + 2585257974, + 2672141513, + 1599015608, + 1669205385, + 1232079234, + 2031093583, + 823815510, + 4150417084, + 1820201104, + 1815422022, + 3206591384, + 1858526000, + 3989297436, + 3897322527, + 3039237498, + 1822254470, + 1094685592, + 3014486534, + 3296369807, + 819605426, + 2301430863, + 758485066, + 3519565429, + 2941739565, + 1864720578, + 1001549799, + 3571932630, + 2837022081, + 3111394213, + 2930402907, + 336637218, + 201524404, + 3792471018, + 1441035282, + 4088850205, + 348517556, + 1099546003, + 2693113326, + 1302022818, + 2597824650, + 1460682924, + 3795402845, + 832670082, + 2161598354, + 272941377, + 1956615803, + 4289834814, + 3974568236, + 3129120027, + 2835024837, + 1535440341, + 2764283881, + 3849170814, + 2532849624, + 1393346207, + 3955100587, + 2176470149, + 1501368024, + 2889172741, + 955590581, + 3424074702, + 2823911694, + 138393240, + 2038338061, + 2195665950, + 1815047258, + 25304713, + 4119242703, + 757734756, + 158431145, + 1990222737, + 928084593, + 866445460, + 603077348, + 289207243, + 323744975, + 1673628886, + 230077467, + 1866750776, + 3762323396, + 1834075318, + 1654284016, + 1040388621, + 71195691, + 1992932062, + 2522787843, + 634128198, + 2876095101, + 415221506, + 1999215123, + 2608063479, + 2815438753, + 1530714902, + 2294076006, + 2566134798, + 490172125, + 1058618728, + 2651555461, + 704242038, + 3104613053, + 1307172788, + 77093784, + 615001058, + 2779210399, + 1313973115, + 2762574953, + 3074898838, + 441858326, + 2877948381, + 1094647700, + 3413922526, + 2378611404, + 329721006, + 2913598403, + 2864015806, + 3519308240, + 1729105760, + 1638298188, + 395083425, + 2106960358, + 983494347, + 611499919, + 1835906487, + 2727628584, + 2631083272, + 515509525, + 1452543692, + 2423944150, + 3700294929, + 3518701771, + 802711265, ]; static const List _envieddataprivateKeyFCM = [ - 2412490199, - 1518798314, - 1891966233, - 231979642, - 641261908, - 1375941371, - 3316758591, - 3589404434, - 3883595327, - 2167906232, - 817138976, - 2327480263, - 489986353, - 102959574, - 1126896156, - 398834068, - 1897269213, - 2046270033, - 3901821218, - 1392477769, - 1694094639, - 4059209740, - 3478651827, - 3836320638, - 3701168410, - 1309480525, - 958789734, - 2830126904, - 2122656106, - 2356963947, - 1373373930, - 4252798900, - 739254381, - 2871180068, - 4266225474, - 4254380445, - 2663127229, - 2995485036, - 3612155405, - 2365886289, - 2681804996, - 3801110759, - 1521763235, - 412749097, - 3167268220, - 2414957258, - 3272561245, - 3059741828, - 1721141029, - 1929555589, - 4289585141, - 1222923615, - 3599731819, - 2380836912, - 4014229302, - 4165238965, - 491297751, - 3630029031, - 2039747283, - 4170368497, - 4047911141, - 4187106299, - 586531888, - 2136188852, - 4172244160, - 3823115724, - 2411136619, - 1641128524, - 894699033, - 607417522, - 2389328936, - 3813541614, - 1113421122, - 3789871448, - 1413823325, - 1170481333, - 778472492, - 1799931139, - 710527454, - 4294504946, - 3137681246, - 290349492, - 2878398682, - 1880064958, - 1952093226, - 2115450800, - 2235937360, - 1596414398, - 636435032, - 3528923264, - 1485532530, - 3025730273, - 1589077647, - 518209853, - 3516353927, - 3134321460, - 2686460163, - 1914735158, - 1587076118, - 3824794149, - 1421964249, - 2785695810, - 2058804256, - 3956459293, - 2596451147, - 2769966396, - 2421282922, - 3766217975, - 3226232916, - 902004458, - 2616190746, - 802136157, - 1028592885, - 582636236, - 175237488, - 1447709868, - 3211131097, - 120559277, - 2247330877, - 3789014164, - 303616865, - 3696139218, - 546662902, - 3441138189, - 3549524654, - 1370145801, - 2717993909, - 2586305828, - 3576195129, - 1917583073, - 2877223873, - 3985284106, - 1975777998, - 1304616768, - 769758842, - 459706848, - 166302605, - 2563475368, - 2573804149, - 245090216, - 134742443, - 152733077, - 1948571753, - 3616070863, - 1237190185, - 287895377, - 2210831121, - 833752866, - 1551207652, - 349011061, - 1381448057, - 2148595902, - 1098146089, - 1271941004, - 1913002812, - 1001297344, - 3454003582, - 628903707, - 1653904222, - 1496278031, - 669049616, - 2460201355, - 607022835, - 196874063, - 2697033191, - 3622334809, - 3024556403, - 1485886937, - 4244880295, - 2465204217, - 799930568, - 2747755462, - 4272643992, - 950917651, - 1815346939, - 1086268915, - 731276866, - 2018980185, - 219727716, - 4067396166, - 2564623835, - 4183738752, - 1210539623, - 1987064712, - 737042492, - 705822849, - 914487164, - 237022946, - 2819197154, - 776781195, - 3726025851, - 3091941125, - 3380826177, - 912215337, - 2699510704, - 3365484359, - 1871462255, - 3434858525, - 3345376541, - 496075538, - 396092031, - 3002787457, - 3917455317, - 1468406447, - 963834911, - 2576931767, - 3802044856, - 2755641397, - 2688664320, - 2242383364, - 550716244, - 2887659448, - 2614403670, - 216131547, - 2144321315, - 3425784672, - 3911946743, - 1266361325, - 3413588473, - 2661688554, - 1899344676, - 4041542276, - 4205504265, - 3702653189, - 2386812125, - 2407057378, - 1211628719, - 963755564, - 1655736171, - 1264125757, - 1138705065, - 786649731, - 2813494332, - 1969589169, - 2044697347, - 1289957408, - 2836137897, - 3613777469, - 3040025417, - 907181561, - 1747398757, - 2024390153, - 3816295268, - 1935765703, - 2293202845, - 3413267016, - 826096067, - 3680567272, - 2540089113, - 600190436, - 3116552805, - 3551513760, - 3172981149, - 3288337706, - 3617379487, - 1403752278, - 2659436202, - 2477342634, - 1123855336, - 51621666, - 175167462, - 2625920851, - 3146186980, - 1288568481, - 518210891, - 371746743, - 1717042323, - 3703267861, - 3898964164, - 3658888772, - 2619078324, - 955334669, - 945884183, - 1054211924, - 1994814033, - 2307616745, - 3966456131, - 1048798021, - 583653629, - 2356576788, - 3696997176, - 4215469803, - 4242747221, - 1789142622, - 2639509123, - 2951468353, - 1223155951, - 2067078737, - 2464373796, - 1605655961, - 513976614, - 2421294047, - 3736587839, - 3381741802, - 122258400, - 3883005464, - 1258306247, - 4121209261, - 683442713, - 374408022, - 2895554540, - 138582562, - 2307542359, - 1101157325, - 3127415852, - 3145669341, - 1617233812, - 1351137474, - 3956510576, - 2460280260, - 2268382169, - 1651729144, - 4132505867, - 3916723116, - 1790539219, - 3097767361, - 2805790731, - 394387706, - 2318701035, - 672371685, - 3217651234, - 3608286743, - 2306690132, - 197345634, - 1215077321, - 571261754, - 1995715655, - 459289097, - 1844222593, - 1322162474, - 1900798815, - 3313490922, - 2216731575, - 729522309, - 1018311888, - 1656990031, - 3691031721, - 861562667, - 3908941225, - 1329968886, - 1059308925, - 2532380339, - 275244740, - 37613983, - 4082900442, - 1736720234, - 2148449431, - 573521767, - 1993960427, - 2977067250, - 747070228, - 4228456815, - 34305418, - 464116266, - 245824208, - 1169818365, - 3572151930, - 1217231770, - 2283729431, - 4119531232, - 1208510174, - 762325233, - 1185113758, - 2568676341, - 4140946091, - 2151991321, - 478548169, - 4015359573, - 1409368217, - 1720037165, - 3192266774, - 1906760330, - 593668048, - 2261523522, - 411193891, - 2146851675, - 2605594001, - 2428660948, - 419068290, - 3245515883, - 1680122570, - 508386532, - 3184846580, - 3588527499, - 3726536403, - 1562267996, - 2506578206, - 3393185902, - 32101669, - 763598020, - 1132872778, - 1462161707, - 3830864079, - 3576459412, - 1367139357, - 585369862, - 1058637111, - 2215363223, - 1386436001, - 1784579611, - 3842924436, - 4228827409, - 1921209225, - 285011031, - 1777650962, - 1993836092, - 2333987793, - 4205492351, - 3473684185, - 3595640172, - 3393572763, - 3506246653, - 312266848, - 3061144892, - 1653357043, - 954635130, - 3833070967, - 2865664965, - 884297767, - 2380271962, - 1132383936, - 3069625406, - 3178802849, - 3315562886, - 3355938746, - 387452400, - 2118021942, - 448393038, - 1441881298, - 3136116042, - 2505721055, - 249632749, - 98756066, - 2105855103, - 1760448473, - 2199691998, - 844963733, - 2934244236, - 3088640913, - 314395838, - 322679798, - 3650686229, - 3019039588, - 1169396995, - 40079480, - 1467050798, - 1759955313, - 2465799180, - 3888786159, - 1802052050, - 942281689, - 3246053206, - 3426015213, - 4243202756, - 2345790522, - 1070999947, - 3616111338, - 2220026909, - 2186778433, - 3144147844, - 1209973523, - 3603097743, - 304559687, - 4033457645, - 4238291101, - 1295823040, - 3369684876, - 482390750, - 2857477738, - 3680131734, - 2562260475, - 4134402551, - 3023015998, - 3867548325, - 4022992553, - 3831743292, - 696054897, - 2870204772, - 2523444389, - 1623691399, - 3636805099, - 2646669053, - 2318555943, - 2694469484, - 2073887122, - 2070769731, - 2959029982, - 1440817576, - 1677643135, - 3249440158, - 2551486915, - 4179558316, - 2440838168, - 2829971797, - 1788712977, - 4196166751, - 2447473306, - 1972998754, - 1914250405, - 2011209118, - 3697410132, - 3662444739, - 2762834203, - 930612192, - 2705137214, - 1368028666, - 480802553, - 2187337481, - 1377509178, - 655750903, - 2819152617, - 2365291288, - 3863881086, - 3113624753, - 3395237188, - 853627500, - 2368167001, - 3256491201, - 3759857985, - 3049996291, - 3822396043, - 2958965651, - 854538833, - 1616707419, - 884087918, - 2527827128, - 2355028808, - 4221540429, - 557364392, - 3003905559, - 3303038159, - 194242674, - 855048533, - 2390049438, - 4095512660, - 1730492186, - 1096794741, - 3516302344, - 3284094411, - 3126913572, - 2525186224, - 4022047380, - 392703984, - 2168594330, - 2895977177, - 919098124, - 3162150763, - 2209067694, - 3770549317, - 611610556, - 2509010760, - 4045284287, - 4168568048, - 2359446037, - 3308106793, - 4153602242, - 1882372111, - 20561997, - 1553999120, - 879178402, - 2669937998, - 4036713586, - 1192468385, - 383386731, - 86038916, - 2948784830, - 1226881379, - 2356978705, - 1521655226, - 3589535249, - 3955411090, - 3342204965, - 3536504267, - 31509989, - 4180618376, - 1947963217, - 2297361357, - 3434051084, - 1785648373, - 865438958, - 120061479, - 3723828267, - 909853730, - 1782498034, - 1703508425, - 4097560578, - 2831318663, - 3132981270, - 523392267, - 423475854, - 1264782100, - 238436438, - 1487634083, - 3092558668, - 930578297, - 3502267559, - 1940988995, - 368044231, - 3239590315, - 1287633769, - 2588317648, - 2282114081, - 4145176378, - 1265110291, - 3945701238, - 945652784, - 1459816172, - 2733340449, - 1414292475, - 4188324478, - 420266873, - 694801289, - 2630237231, - 2062318864, - 2886486068, - 254788692, - 3945011806, - 2846255766, - 527932891, - 3852090641, - 3853344149, - 705916596, - 1016863880, - 3540550224, - 1610156774, - 1454394048, - 2633448652, - 143675008, - 500461814, - 2449370190, - 3145786821, - 2945537572, - 1429241255, - 3088094687, - 29806313, - 3256467698, - 3151289225, - 3383335753, - 1945353081, - 2566847413, - 1775049656, - 4278443543, - 1337988537, - 3289792779, - 296006527, - 2583374156, - 887772266, - 148189742, - 873104564, - 1664140854, - 31826173, - 1561410850, - 695257148, - 955708769, - 162912156, - 3646535928, - 1482835131, - 1071686245, - 985356041, - 4068198121, - 2999176921, - 3302140956, - 872040192, - 4170511754, - 4105493500, - 3544438602, - 3258239412, - 219414414, - 1923387712, - 3082262161, - 4107637847, - 2518326286, - 3089783915, - 1340450014, - 1234079766, - 1177432771, - 1906839107, - 2545015192, - 4084734417, - 4188255363, - 3278149596, - 1318717535, - 1986328125, - 550403013, - 2986049401, - 2010528819, - 3184685952, - 2401217480, - 4117216630, - 2914269949, - 2150344289, - 3441695083, - 1420642943, - 3118087505, - 1163396634, - 4147819451, - 4017820863, - 93596067, - 4198102027, - 1040552717, - 3205295239, - 2818400259, - 657838577, - 1036468830, - 2489840964, - 1393128880, - 1018471928, - 3165155885, - 3687421008, - 282905305, - 343054651, - 683709920, - 630817415, - 780877240, - 2998490265, - 193751274, - 2878724456, - 2754189871, - 2891518722, - 2110234717, - 2860343712, - 904778276, - 2686793175, - 4178411047, - 4142402631, - 2874360429, - 52283081, - 1161191372, - 3578866824, - 3796530013, - 3442417524, - 1044048673, - 3923725162, - 3383289852, - 702476299, - 2654579310, - 2234663616, - 3936606995, - 2685630039, - 792421583, - 3808181637, - 1161963125, - 3606544115, - 88284620, - 261167113, - 1883621526, - 3203930902, - 797042047, - 3857267778, - 370454889, - 974444174, - 679653517, - 2926843871, - 4054542496, - 3059875589, - 492520093, - 2202877508, - 3031139809, - 1061028226, - 3632661437, - 619056065, - 117470312, - 3170454764, - 3455663234, - 2129980744, - 2365722225, - 1107497516, - 2593306248, - 2348411543, - 1252512903, - 2008807663, - 916730460, - 67836721, - 2465390678, - 3607645447, - 3824137788, - 1538496705, - 3828877117, - 1121103497, - 1543320210, - 1745506780, - 2465919291, - 1471284350, - 693303456, - 3966760047, - 3942659073, - 649172372, - 2723230703, - 145183144, - 4187954104, - 363787333, - 3674387396, - 4131880360, - 781237071, - 3602776796, - 735837298, - 381224705, - 1120438676, - 643126446, - 3453827531, - 2231404845, - 273114412, - 34511541, - 2173523617, - 2534005047, - 1557749296, - 2500723603, - 3179643798, - 2969354092, - 1061107651, - 3332035040, - 2178713919, - 3300502560, - 2036537954, - 2676167597, - 2912383265, - 3800639936, - 2904569427, - 4068648315, - 3581982873, - 1382102130, - 2811637076, - 1265895498, - 1292406441, - 202978905, - 3451302953, - 3974757897, - 1986125186, - 3561623667, - 1247353693, - 4222387904, - 2406168413, - 2999589040, - 1103609726, - 3725461673, - 973633262, - 1016366388, - 1873559614, - 3488453186, - 1917303311, - 570065653, - 4287881480, - 1883023021, - 8600847, - 1551852388, - 3255754479, - 2563115705, - 2537812414, - 3260485637, - 2281347362, - 3990865668, - 1685789530, - 3782767126, - 350157603, - 470236423, - 2955945446, - 1680134252, - 2135104098, - 728187080, - 16855941, - 868442830, - 2462554004, - 3011711066, - 57558049, - 1636905776, - 1501197991, - 2000296528, - 4162683471, - 1633836437, - 1378546458, - 2583566953, - 3598499577, - 3474526351, - 3472574609, - 1361668728, - 2287526492, - 384403707, - 1185133250, - 1478408839, - 4262861559, - 2100575702, - 2991681984, - 2885362317, - 2671972923, - 326667865, - 3277959016, - 1830004195, - 1316118794, - 577085025, - 1898901939, - 3141893810, - 400080515, - 458221518, - 448710899, - 274186281, - 48883331, - 1019155656, - 3261394432, - 2078364317, - 2489585170, - 4222943529, - 3197514695, - 4291057619, - 2286578900, - 2941025674, - 4288011456, - 1017542587, - 2599049586, - 2731610457, - 3319225762, - 1539923739, - 3665697554, - 262394068, - 3390037509, - 2238363487, - 3496634847, - 3662405487, - 2099032996, - 2500285948, - 587196139, - 3302966249, - 1764006908, - 1795557473, - 3211986379, - 3002617624, - 335151715, - 4251543634, - 993417396, - 2904885202, - 2391151075, - 3315506964, - 2151995865, - 4007889555, - 3798880319, - 24388581, - 801236177, - 49892914, - 3094705258, - 9211944, - 1209160110, - 3342855767, - 3957681950, - 3905022738, - 2598791287, - 2099223061, - 2442177094, - 3632764719, - 593283742, - 2509918351, - 1783387477, - 1078442613, - 932360982, - 1818686974, - 1481789941, - 936820950, - 70263447, - 4251206958, - 352105420, - 1014810544, - 2832113802, - 1842288335, - 3188833609, - 1293826935, - 3896486533, - 3653107766, - 1997523125, - 2499367199, - 3735468592, - 941153989, - 2731434639, - 2638746396, - 857993892, - 330999142, - 3209558398, - 2576541860, - 565047631, - 1724873204, - 2824118107, - 2989631410, - 3396879237, - 4011719228, - 368848448, - 1342818140, - 1207665204, - 2906120687, - 1651565845, - 3857947490, - 1516863018, - 2459162826, - 2648196540, - 3807595014, - 1128445319, - 2174886306, - 350198969, - 1574383299, - 3228533241, - 3640214948, - 2223213651, - 2414799108, - 3294223572, - 178126307, - 129685370, - 2745222192, - 305443393, - 3497307766, - 2625813092, - 2259348646, - 1023514585, - 2341310946, - 2877365338, - 4062523716, - 70031895, - 3988011222, - 3289804230, - 1626689987, - 544158039, - 1883199509, - 85452200, - 3019776453, - 3328726394, - 1080544893, - 420658547, - 2198909196, - 3957130112, - 2233886662, - 3467676656, - 1378974394, - 1539931808, - 2641044142, - 1109931959, - 456737874, - 802474368, - 3881563219, - 4288422080, - 4249835727, - 1689162759, - 3621279734, - 3898310483, - 2421921049, - 3781489156, - 3937439541, - 2760554212, - 505671491, - 4100618184, - 1223388127, - 821493447, - 1510838877, - 1248374536, - 529072403, - 2508634911, - 1063416397, - 888163225, - 3498959784, - 3259355314, - 1861296048, - 1192126883, - 31606975, - 4098369731, - 1656612928, - 1136995373, - 2531690056, - 3426699554, - 2043831517, - 436562619, - 1951950652, - 1572987722, - 3338042603, - 3585781298, - 3284372932, - 451560153, - 2417984034, - 1572490322, - 4018509998, - 924718791, - 3391704481, - 559094908, - 3489711900, - 1814088928, - 3198377946, - 2892954607, - 1076677801, - 2085878183, - 133622865, - 303128316, - 1882929990, - 1035008240, - 3427267580, - 2158311060, - 1343677893, - 192989090, - 3640912251, - 4156461668, - 4122015611, - 892147349, - 1482422829, - 1306753285, - 1391877418, - 3051859265, - 2174314431, - 1948825194, - 2004154182, - 965898820, - 986016925, - 3394628524, - 1067930051, - 2863715215, - 2727575098, - 2497809653, - 526155396, - 2264483768, - 1848367640, - 2228016230, - 2349618910, - 2539745044, - 2628841513, - 738994166, - 1261338185, - 442108774, - 4095795927, - 569860064, - 312303430, - 1855158851, - 4102237669, - 2836812584, - 2521313435, - 501671741, - 1143790074, - 747985900, - 445471192, - 1796752082, - 3805980438, - 693178766, - 1123467496, - 3944829486, - 703211400, - 2930472249, - 2455012276, - 3679143711, - 2042362637, - 3579044157, - 3288902673, - 3622658700, - 1788420737, - 2248711413, - 2794390042, - 2143867999, - 3002158626, - 3164798046, - 3639386521, - 190375300, - 4259095405, - 2420547044, - 144146433, - 2147022365, - 2971807820, - 1931659822, - 3633079447, - 272555571, - 1896643704, - 3082789955, - 702946872, - 3438633022, - 855991184, - 2723700827, - 1397452636, - 4062290262, - 3893002126, - 2684645198, - 3376945264, - 3879327539, - 2969519300, - 2225415744, - 4061475620, - 3463344855, - 1601359190, - 183286462, - 2302567361, - 1032214681, - 2296274621, - 1698410714, - 635465369, - 116217133, - 3423798005, - 3537986234, - 1659538222, - 3302576962, - 846865784, - 2077343358, - 1564513730, - 3130810930, - 3764531419, - 2528424730, - 1680889955, - 1230353858, - 3548856448, - 3234867310, - 1023386337, - 1478627551, - 2507797798, - 1523004952, - 3790185497, - 2780442074, - 2942141678, - 1225221740, - 3568481707, - 1516613754, - 3009114943, - 2917572717, - 3531051403, - 382684460, - 37533868, - 255486252, - 1236025872, - 3258490875, - 5503306, - 4101383860, - 844595634, - 507240038, - 2950394409, - 1874207271, - 3233367375, - 2779643064, - 1011224167, - 1064187486, - 1483895560, - 415699559, - 3317333497, - 916012186, - 3513247020, - 52069919, - 3471992697, - 720310730, - 2667430450, - 1562208898, - 2446384889, - 2764938615, - 1088873606, - 3924185814, - 2756232087, - 3349698315, - 428946565, - 4248943215, - 1373776615, - 2517902373, - 798335744, - 466094819, - 3127525161, - 666624087, - 100804592, - 572682301, - 212387231, - 2624976263, - 2188718542, - 3068485418, - 3359852311, - 1514136670, - 954950906, - 1700927332, - 4277420287, - 872580625, - 1038491628, - 4196468467, - 2238587332, - 1355255427, - 4258044369, - 1900458202, - 270245790, - 3046312627, - 766424511, - 2959950689, - 1957168719, - 145902829, - 519756605, - 3306638954, - 2759734421, - 2971026092, - 3051354269, - 701487126, - 3180045880, - 2055093032, - 1785316927, - 3804494847, - 1941343573, - 2680756764, - 3988039135, - 557005732, - 9475121, - 3564023277, - 1516010115, - 994611992, - 3040187874, - 3152315964, - 233273856, - 3149004429, - 3067076590, - 2532435568, - 2338506503, - 147280678, - 599956001, - 2488801896, - 3961082523, - 525506321, - 526909330, - 2120897496, - 3129023024, - 3722917376, - 1057762617, - 2847705638, - 315385768, - 436890861, - 2503851785, - 795630256, - 3847776576, - 810519682, - 1128979966, - 2645866579, - 436816089, - 1931151880, - 2051887587, - 2237316093, - 4189701113, - 3657629917, - 3124880400, - 1031002964, - 1788778277, - 4052795015, - 1956322427, - 1672239548, - 815958579, - 3506658795, - 1760000100, - 144413157, - 3289628068, - 1539036485, - 1489869664, - 2334812723, - 425668980, - 1067272267, - 1547971101, - 1117037770, - 599063105, - 2344830691, - 2642387241, - 366835309, - 1025603823, - 657115887, - 4079630518, - 2088128451, - 2433592897, - 972789718, - 458546535, - 3933588761, - 3354192871, - 2913691831, - 1771998857, - 2125816557, - 1532878187, - 2446761867, - 4289466144, - 3404542560, - 601100708, - 3644219421, - 1684914479, - 2217846997, - 359099857, - 789293033, - 1301502414, - 1043205384, - 691068608, - 2163043577, - 4210248857, - 3048771663, - 345148493, - 3664022781, - 2511061611, - 3417738058, - 2403808714, - 1073919282, - 3780012929, - 2319877952, - 4277391114, - 562603633, - 3660095950, - 1920884931, - 403991920, - 635354143, - 3249410669, - 2156689306, - 3720376056, - 4183084164, - 339518152, - 3533338942, - 1070443086, - 1002312866, - 1130895224, - 2497648054, - 2160578757, - 686957225, - 904296497, - 1562618271, - 3862096391, - 3139324718, - 128721245, - 3350738213, - 2734840615, - 2998794509, - 1734832977, - 2049599724, - 184590048, - 2554637167, - 2440044327, - 3075798449, - 203178941, - 3272549028, - 4037551895, - 2917640752, - 1089884111, - 795109314, - 221669912, - 1096313445, - 101422204, - 2019302437, - 4247222672, - 1292418611, - 373965860, - 2192505179, - 2062111084, - 3735477073, - 3884517813, - 4158404017, - 435217318, - 263381647, - 1957192590, - 590114243, - 4045742142, - 2133811219, - 2466465341, - 775435212, - 2511612945, - 2980592181, - 4154555867, - 1081609975, - 2844034620, - 265585484, - 3553459754, - 4258809775, - 458801237, - 4172320536, - 325152280, - 4073771446, - 755883609, - 4203148289, - 514650838, - 3532566276, - 2343261360, - 1096850805, - 3095399109, - 668220239, - 4195184190, - 4027343233, - 3519133514, - 3580148984, - 503764776, - 4040321293, - 820719858, - 960986344, - 3019060067, - 543089870, - 2450781572, - 2855303213, - 3000723373, - 381793723, - 633050842, - 2316712284, - 582135390, - 3079299260, - 2222903862, - 3039118073, - 3217817817, - 3082713910, - 3298457007, - 2250104559, - 587678870, - 2530769662, - 792830553, - 318422, - 1579415176, - 2069882876, - 3331766081, - 2792778312, - 3207743959, - 2296245906, - 2388412686, - 3134640349, - 2709118550, - 1971642977, - 2543954468, - 3250859125, - 1117391284, - 395771628, - 3556000979, - 2542970808, - 1133328142, - 2018804775, - 1544879876, - 1694150620, - 2549019479, - 3659049469, - 405581153, - 2700998458, - 4232833186, - 3407372944, - 4175014299, - 739021406, - 1923392741, - 3645371963, - 621443872, - 4090946337, - 3009047333, - 824187010, - 2227802758, - 3245185954, - 3307249625, - 1017957865, - 422577929, - 3754080230, - 2052080841, - 756264481, - 1783730464, - 2028476129, - 3441400970, - 1093061185, - 1167495482, - 692301590, - 3508518350, - 4201914903, - 2710204797, - 1960356781, - 125239393, - 4127533553, - 3624154458, - 3619503494, - 275799627, - 656227716, - 2706956467, - 385663348, - 1418966120, - 2704222639, - 1578212160, - 257913012, - 2708038773, - 3068526289, - 1191557421, - 1757655617, - 2440054893, - 4132073413, - 2784517812, - 804997926, - 2393594135, - 468825022, - 1749426102, - 1191018050, - 1219875482, - 3231979020, - 1939698227, - 4061236998, - 3393395973, - 2327554571, - 2259182735, - 3286060183, - 606789072, - 1506443641, - 2599371444, - 1435625742, - 3642441966, - 2158386953, - 3772607736, - 2371036883, - 1667749053, - 2208454492, - 593231742, - 699546502, - 1022225108, - 1964781846, - 3268013528, - 3702200701, - 1160315563, - 2538533965, - 443986255, - 1403455216, - 2137410342, - 49347372, - 2933467307, - 1470680057, - 1979380702, - 4209681800, - 3185528428, - 352877251, - 1356609423, - 2708689619, - 1444571531, - 1277253101, - 2744534750, - 2238139202, - 1082862074, - 3351734487, - 2425174018, - 1436435897, - 1067450130, - 2645580770, - 1264358508, - 1969109697, - 1874931686, - 2369135600, - 1311295550, - 1467869484, - 939304402, - 2594424450, - 2870930192, - 4286840061, - 4065262028, - 2478269915, - 3573235552, - 442888170, - 27259429, - 2194749353, - 2070122187, - 3324667438, - 3771163498, - 2911403316, - 2134069280, - 483007606, - 1589873623, - 183168443, - 726962716, - 3658614681, - 488551251, - 431910318, - 1212537080, - 3530327058, - 2489924307, - 2726691213, - 3260204329, - 3050799488, - 945262585, - 616209913, - 3863230036, - 1870934777, - 2393058629, - 590964841, - 2895716624, - 3082874069, - 3095079255, - 2153589799, - 1565312787, - 4124613921, - 420408563, - 3797166665, - 3551836580, - 2601542112, - 1318071587, - 1993779190, - 3533178614, - 3966604472, - 3986398132, - 430188143, - 2199855358, - 2776382918, - 16284572, - 1167168625, - 1203408223, - 2719429365, - 1160814466, - 3770213671, - 1191288615, - 1029356887, - 1149316201, - 2945089207, - 3183925051, - 1414484355, - 1507621834, - 1439509845, - 779307927, - 2689840681, - 3341749554, - 1963827798, - 4197219216, - 2827236280, - 3941627980, - 3172745631, - 2983148794, - 520841767, - 1821393045, - 4001937297, - 3610325350, - 1406519176, - 2926864702, - 2494290699, - 3986844925, - 1070616670, - 4083425763, - 3647247764, - 2037512851, - 830200592, - 4134970263, - 3553851945, - 1230570012, - 2988741628, - 3861271592, - 4169330915, - 4005059562, - 1049531717, - 3637904774, - 1612999, - 1645746815, - 168320808, - 1345748153, - 3183145018, - 935591312, - 2313564713, - 214595439, - 1014827072, - 1650768278, - 2686394655, - 1733447869, - 4031405713, - 3630950091, - 649680569, - 22969852, - 2881200078, - 1032329484, - 788474986, - 4053619411, - 3139442946, - 1333435124, - 3585921272, - 2149770517, - 3309808478, - 556047583, - 1145112087, - 4123676696, - 1985178363, - 1170082507, - 980842545, - 2989548126, - 1937811668, - 4084686359, - 3963428162, - 2304055224, - 3007653250, - 2910500244, - 2249935502, - 766431031, - 43885999, - 3012227628, - 935292503, - 1834656223, - 1024555272, - 1072814938, - 458561448, - 1071347720, - 891318285, - 3222816933, - 3538486835, - 2803042531, - 2366636395, - 995177498, - 4287426, - 4070411726, - 2834996982, - 167380177, - 1578482060, - 3513661002, - 2895035712, - 1301840900, - 3586486395, - 538834836, - 3846930435, - 1420935788, - 2626206131, - 724442204, - 1177030, - 3580725434, - 134537697, - 1725694027, - 3245853428, - 2867763272, - 181446942, - 1060521216, - 3068368127, - 3540193029, - 26758216, - 2553519054, - 1247644864, - 4255186131, - 380866335, - 637521303, - 1424850596, - 2498247914, - 908462145, - 3083475873, - 2513782698, - 2873459079, - 3053779567, - 1985329372, - 1655275598, - 3587075474, - 589410304, - 3758807383, - 4109138607, - 4020182707, - 3342292285, - 249270171, - 65080719, - 1969008105, - 1855459267, - 2356840441, - 4051017143, - 777626024, - 2961335371, - 584133454, - 662453668, - 3453500007, - 1175604399, - 2628438177, - 2794569735, - 2863367674, - 4272417879, - 2778889743, - 1731067346, - 973356061, - 3953006247, - 259309675, - 3280108608, - 3657971697, - 1824433928, - 146979985, - 3324355485, - 2285173064, - 1553595130, - 2653304988, - 2511166564, - 302635072, - 2919569352, - 2873307650, - 3154453603, - 4218780227, - 382991883, - 1879622757, - 2216856844, - 2316281863, - 1728099041, - 1347816926, - 3139416897, - 364599679, - 2955918822, - 177140197, - 2016334670, - 1125381301, - 4264739607, - 786097485, - 1874335155, - 1586549145, - 3569590975, - 18599983, - 1380480588, - 1913024610, - 1488166156, - 3708677027, - 1384618166, - 1103286132, - 3731155214, - 1340317950, - 4142862759, - 882458979, - 2323613154, - 3661444111, - 1193659313, - 3298398747, - 1235352989, - 2516159862, - 2493447955, - 1877900354, - 4240918155, - 4088452153, - 1458365325, - 175987757, - 748982689, - 277193906, - 3720387124, - 2630723968, - 256959541, - 3307778388, - 3754079676, - 1764777173, - 2680679610, - 2949503368, - 1222581237, - 113455601, - 2853801314, - 864613330, - 1460298519, - 1575743494, - 2765554303, - 1420394423, - 3490043746, - 2392361993, - 556183875, - 1013487245, - 3384386815, - 1539501108, - 3454853037, - 444274890, - 2900233198, - 3549770040, - 1304292920, - 3810879893, - 1721978496, - 2451713067, - 1420615423, - 2118208763, - 1797373429, - 607181028, - 3792771334, - 3687227423, - 1579801534, - 2361252907, - 1243629836, - 2299994015, - 3885289367, - 20554520, - 2667580976, - 2180659784, - 1990507778, - 2484047277, - 1894683742, - 2051845957, - 1565971006, - 2197125421, - 3029020704, - 1794385559, - 2557061108, - 2595749092, - 1457906226, - 3731425662, - 721019942, - 1897313835, - 2585549452, - 2087516149, - 4029527608, - 1023439754, - 3105525175, - 800233495, - 3576429189, - 3107818170, - 2577077850, - 3058341391, - 1808988673, - 1319063441, - 4291730908, - 386928162, - 3598008326, - 3559540753, - 2578560929, - 219008229, - 3483308490, - 3392006982, - 3247201833, - 3785550294, - 832133559, - 2830249405, - 151988551, - 1047394869, - 4090580059, - 2569528926, - 4110321555, - 3219427525, - 234020668, - 2001020729, - 2898753284, - 647154238, - 376780319, - 1867036029, - 2967262991, - 4090939775, - 1453417319, - 2034531188, - 2393806520, - 658757690, - 3014707078, - 3558994848, - 3666758502, - 4106852502, - 1238406702, - 3063687802, - 3550533751, - 998773443, - 1936569977, - 2472387820, - 161215142, - 3904806222, - 518575128, - 2482532338, - 605059053, - 505150311, - 1358729129, - 763466241, - 498733992, - 544194054, - 2678270360, - 818823998, - 912929371, - 3768412706, - 2165056167, - 1310914339, - 2453288476, - 1520890591, - 363255972, - 2650466373, - 1933992358, - 2560609422, - 287373939, - 4140401740, - 3728580856, - 2306990239, - 2900630658, - 2160424965, - 3121368027, - 3194743454, - 4163150192, - 663085742, - 4270287306, - 278453380, - 1569513786, - 1005908071, - 448398242, - 2138608219, - 227014099, - 198223068, - 2381287327, - 755332599, - 1537312052, - 29910426, - 2732073685, - 411945786, - 587877978, - 319594894, - 2292038830, - 3093727148, - 3112792138, - 1636244645, - 98882378, - 721292828, - 328782476, - 2321804243, - 4078959631, - 1316196304, - 2326152686, - 1508801679, - 2112098201, - 4042161965, - 2424243020, - 1313245612, - 2899790538, - 2995994819, - 3569482851, - 2666159180, - 2653472842, - 2686312030, - 636316046, - 4138245465, - 3241672591, - 3893956130, - 169412082, - 1364393861, - 815344721, - 3683300081, - 3815215818, - 4177054686, - 1380067063, - 2489643846, - 1090677240, - 4063363817, - 242056412, - 3906611717, - 1321578410, - 3663220338, - 2034717692, - 1950859582, - 3703408356, - 2860294878, - 1560542542, - 1778037311, - 110662921, - 4246177227, - 1906648135, - 2834563229, - 1613983264, - 561570315, - 416563153, - 833501587, - 2471517040, - 3405303377, - 4131124405, - 677341808, - 889176381, - 3422334122, - 1840523284, - 1398338791, - 2525534605, - 3401767371, - 4262791099, - 1310880958, - 2231247959, - 2882176913, - 4200663522, - 4278300451, - 2935493784, - 295041580, - 449676064, - 104253579, - 1685955346, - 1708049839, - 204313629, - 3184864888, - 2404034477, - 4095911699, - 1397405788, - 518502648, - 3744720358, - 3502534202, - 2570258044, - 3714289853, - 2930277294, - 166753814, - 1578031550, - 1470920504, - 206531740, - 1712904050, - 3721266203, - 3160746196, - 3226969760, - 2580261580, - 890031634, - 1805842433, - 3908742725, - 1705559122, - 3941645790, - 2334583265, - 4103310416, - 4108852173, - 1769018914, - 2915228146, - 2283685878, - 4088811567, - 1389854301, - 3448522309, - 3782860233, - 2355027506, - 3047474468, - 2729448917, - 3633874281, - 161964105, - 405363263, - 1564662259, - 744322352, - 1919167, - 3490795192, - 877279385, - 2693480868, - 3567437252, - 839879803, - 1290744061, - 2578500508, - 1088771900, - 2895971257, - 1203471239, - 2049645996, - 2857146141, - 113664050, - 3353494284, - 52779853, - 3430769662, - 4016372699, - 2618077829, - 3253197116, - 2954598026, - 1465675433, - 4092020827, - 3560652428, - 790815861, - 4214417613, - 1927023369, - 315968863, - 1874586331, - 3509595125, - 177628146, - 636146356, - 327060372, - 2062959146, - 3878947544, - 3681426176, - 3949634999, - 2808800170, - 2436834714, - 2191120890, - 861475444, - 1460146552, - 2534656096, - 2695580505, - 3231141844, - 891501660, - 2590918790, - 2852965648, - 1153552552, - 2055811739, - 1220881057, - 12231829, - 2348183184, - 3781523, - 3199554164, - 535637498, - 56043886, - 4261140590, - 2404997616, - 2545272961, - 3005669314, - 2680920781, - 144236399, - 1143864760, - 2866745076, - 447280153, - 2277613385, - 3134359552, - 1755669262, - 4151671496, - 4062977085, - 1758645452, - 1063321275, - 3340041821, - 1660252854, - 2047179209, - 2670602862, - 1627361305, - 3821730305, - 3019930007, - 2535300771, - 4174030087, - 3265140421, - 471812389, - 469812988, - 2968919365, - 1244488487, - 2652377110, - 2599330895, - 402841470, - 2181180752, - 3303852666, - 1473946195, - 4208598414, - 1494106027, - 1651185697, - 3023777602, - 2940623111, - 1942321347, - 1865162571, - 3175554896, - 2809784405, - 4081241976, - 1628465466, - 1298296152, - 1163146154, - 631475841, - 828339653, - 1563813393, - 3526482596, - 2467339573, - 3107262600, - 77866065, - 123308098, - 2021163660, - 1111695268, - 2745450946, - 1353863457, - 2177748869, - 3825101550, - 4247757640, - 1831169769, - 3034022236, - 2756701247, - 2856574476, - 2182830083, - 148764132, - 2665684479, - 1877721658, - 2169248550, - 3640273413, - 812473362, - 2524563232, - 1413991152, - 3186426511, - 2775549415, - 2078830463, - 135007748, - 797860578, - 2608657417, - 3308779882, - 2829518805, - 1686039697, - 1766723256, - 2922116728, - 3670898174, - 208689827, - 2367944542, - 1957511963, - 743147458, - 1447174212, - 3366677741, - 3784299582, - 1746882346, - 1105523253, - 2926688586, - 1676186511, - 2994583333, - 3049475174, - 1663516917, - 371148028, - 2787179013, - 2808599569, - 3707420840, - 3111499659, - 1340554476, - 2258013080, - 2432508358, - 1297948535, - 267790859, - 1889007338, - 1797729999, - 2249472629, - 2124800313, - 2532357069, - 1675562336, - 2440917337, - 1400584600, - 3102978430, - 1218234857, - 252563360, - 2014471586, - 4264815740, - 2380915597, - 516381793, - 1063081934, - 242721609, - 972980643, - 1340662027, - 3035465625, - 1426038012, - 2066424738, - 1854253419, - 421112555, - 2759791796, - 3824912897, - 4126775558, - 870359690, - 1371156852, - 657019171, - 3808106311, - 3246009115, - 1885730672, - 3185546659, - 2638362978, - 3460022142, - 2732331117, - 2145586383, - 153140066, - 399153389, - 1023338128, - 3563353222, - 2551135755, - 2834865036, - 2391056993, - 1804608957, - 3475372872, - 3723276541, - 2016164425, - 2942618278, - 3305714315, - 779677813, - 3330239715, - 3506056283, - 3874613734, - 1925076362, - 178432329, - 3465204693, - 645987330, - 634316918, - 3858874005, - 975840635, - 2406883788, - 966880408, - 1498555234, - 2480587558, - 2921471694, - 3010146228, - 1759765062, - 1369369559, - 2272492555, - 3177130259, - 1788165190, - 4008606702, - 2598301877, - 1753051809, - 235424201, - 4017180801, - 3384455964, - 2314510848, - 462576488, - 3478328565, - 3182730777, - 1301185007, - 2809587817, - 1670200678, - 2844376850, - 2026702143, - 1965579520, - 1969739944, - 1015247417, - 1207387677, - 3012876388, - 3654593342, - 4247989809, - 1910482913, - 3841494418, - 4197480798, - 257130038, - 1849218474, - 3953653058, - 1059842203, - 1530372218, - 4190459273, - 1232317726, - 1420143495, - 629788472, - 1444112819, - 3699494837, - 4034504374, - 3117625682, - 1145422702, - 3259578769, - 760393213, - 2621106297, - 356103021, - 1866573098, - 988687028, - 265107280, - 3235718858, - 3045792760, - 1879600152, - 3607633343, - 2833514314, - 999770005, - 3413672793, - 1716911, - 924181850, - 1473311524, - 183628012, - 2868621976, - 4170532789, - 759831317, - 3432438945, - 4045598884, - 2031911688, - 4099963572, - 1954468050, - 1443237918, - 2244504878, - 3343208137, - 3678964666, - 2142430931, - 3967330323, - 4219992999, - 3484384894, - 844565123, - 3736927431, - 2740482072, - 3849601737, - 2231667134, - 2329690578, - 3472343291, - 481247962, - 173325333, - 3754548094, - 3583752492, - 3230108333, - 3940423577, - 4147581008, - 2154901358, - 2983290314, - 3305516111, - 3010081208, - 1383259771, - 2472559758, - 559664913, - 3905877584, - 1250749164, - 928425334, - 2202830030, - 1475550410, - 1062868003, - 1167578779, - 1026372603, - 2225241851, - 3871540000, - 305492941, - 812680725, - 233342059, - 1965046994, - 1538341398, - 2921102919, - 1140628648, - 3479216949, - 2138179728, - 3907199601, - 2838841689, - 696203548, - 112361297, - 725701982, - 2214934234, - 2170064646, - 3943399764, - 262668738, - 2409268909, - 3002948643, - 567835367, - 473240191, - 1206263664, - 4093789555, - 4161225002, - 4163978907, - 1128856973, - 3269675880, - 3490021802, - 1882454363, - 153734620, - 1676123763, - 74822295, - 1973647089, - 1247718182, - 3212884319, - 509644500, - 3209352765, - 2108256249, - 325682765, - 3119861236, - 2907660477, - 3890649857, - 522453666, - 2371207118, - 2647722804, - 704984312, - 2664064770, - 3741897657, - 3345862193, - 304231368, - 4113369757, - 399605462, - 191760558, - 2000790212, - 1505825825, - 504449498, - 3621098064, - 2544738386, - 477564992, - 692030992, - 1924588525, - 3034839381, - 2524438662, - 2096475722, - 3838831212, - 685224395, - 2286186778, - 3801918096, - 2680268379, - 1629417023, - 1853731840, - 1181147155, - 3047472886, - 1546625162, - 1992176416, - 162577212, - 2399992448, - 1372350417, - 332889588, - 1587398909, - 1639452379, - 1272759974, - 3634344190, - 2378810218, - 3812582702, - 2098072731, - 1195401671, - 1770860215, - 3486336355, - 3244496345, - 3222476152, - 2264265809, - 433846116, - 2685410273, - 334631597, - 2584352482, - 2061107541, - 1277215284, - 3586813366, - 3274204231, - 357332957, - 2232648706, - 1206310995, - 3862522487, - 4005913032, - 748844232, - 2924561591, - 3650957856, - 1467874029, - 4077569837, - 2336914895, - 1769519553, - 807461060, - 3837644625, - 225146189, - 3821714779, - 3546443325, - 3357570394, - 859572706, - 2976477020, - 4083851849, - 882157472, - 2580800661, - 311129115, - 3887709154, - 3110227922, - 1085615525, - 1463581471, - 3105583183, - 484483135, - 1653794280, - 2087146220, - 2225803231, - 394229286, - 3289544124, - 1949536890, - 4181988629, - 3954706973, - 2844647404, - 2535383078, - 4009004153, - 2748724547, - 883690005, - 2927524032, - 2871200033, - 1418935334, - 132267623, - 4063540663, - 3107770058, - 155698042, - 3691419760, - 855270226, - 310211761, - 3010961285, - 2921288528, - 3076711303, - 2733926896, - 895150415, - 586652626, - 4100451035, - 956038445, - 1302754349, - 2469826407, - 3401397287, - 3944816693, - 3443299196, - 231082647, - 4033366501, - 506164880, - 2669672795, - 1186784809, - 2595144523, - 2012399471, - 1676032172, - 235434313, - 292684273, - 532022413, - 2623384471, - 4146571022, - 2208199620, - 3640092166, - 2650933676, - 1963330063, - 2887790042, - 2171234720, - 3823402491, - 7136469, - 2898541591, - 2940119355, - 2216067457, - 1937740990, - 4026584241, - 1741617590, - 196219765, - 1384068222, - 2825763032, - 1520911918, - 1473945856, - 2614832560, - 1429163546, - 2066167964, - 2934686141, - 1815875819, - 262774356, - 1601997373, - 3352077041, - 2543859514, - 1291051762, - 2481265819, - 3164829766, - 3345967331, - 2380387995, - 1516673146, - 3174471040, - 4005950503, - 483189288, - 1697331170, - 3637722098, - 4025951936, - 2597882868, - 1628241875, - 262959424, - 4134718862, - 567519367, - 3510394504, - 4273555284, - 2382325895, - 522073854, - 2966872822, - 2770320660, - 2750276149, - 3475342882, - 764647045, - 3492511598, - 2233432773, - 2579567406, - 3755324091, - 1248746669, - 2198126480, - 749802983, - 592898239, - 4115852907, - 2936566229, - 1233140610, - 1303522381, - 2673743171, - 2501150259, - 1705673652, - 2305717468, - 3553520649, - 3976427493, - 81237768, - 3988876991, - 1757156686, - 259488488, - 1857529873, - 3891589638, - 4177338936, - 1350985387, - 209069, - 2609330447, - 2736395369, - 4277960794, - 3969886286, - 4048223717, - 66267492, - 3006557081, - 2084048147, - 469244056, - 4123759237, - 528453119, - 4275445003, - 2093527079, - 4251813107, - 4035379007, - 2974094816, - 1473115719, - 2068238215, - 3139270316, - 2080411534, - 3833442214, - 3061399887, - 3761393919, - 3917224626, - 4246199762, - 2670693860, - 3372383465, - 513778669, - 1092767591, - 2117354412, - 4024631208, - 2930422786, - 1262711995, - 336000701, - 3083034064, - 2792517957, - 1851457367, - 3989599874, - 660711079, - 3121962327, - 2168859275, - 769388610, - 2567741172, - 4035023657, - 3272582136, - 2746916992, - 2875224088, - 130578967, - 2471835639, - 701807866, - 821600338, - 2317731514, - 3016637083, - 3907591217, - 4178256866, - 3840110531, - 4273065327, - 3463393994, - 2170708432, - 927946268, - 3893565528, - 1272350591, - 1228099794, - 589607858, - 2881777397, - 928610183, - 3136612674, - 4224396051, - 4238432115, - 544051112, - 2369757566, - 3564038751, - 2534448303, - 1097967059, - 1643487216, - 1691659570, - 1625270727, - 2634690674, - 3498341082, - 2448030387, - 2334916218, - 2945858410, - 2005609968, - 1006616926, - 825207472, - 4200858568, - 2762508291, - 2478633871, - 3144500370, - 1457982826, - 3070061459, - 2592254174, - 3556228836, - 3762475147, - 484767577, - 3650928454, - 2474871227, - 3836325432, - 4077979899, - 2756423594, - 791332504, - 126300951, - 52782395, - 234448427, - 52518534, - 2409505220, - 377146343, - 749168894, - 2167000025, - 4151779898, - 2218248597, - 2183505767, - 3268180370, - 2322843725, - 3319934506, - 1894020101, - 697767007, - 532579326, - 1679731260, - 149214614, - 2943005864, - 3297616014, - 2004231841, - 2218110953, - 355552287, - 4001815950, - 2121760123, - 1010576338, - 445042041, - 295367091, - 1030474710, - 1041327, - 4176354278, - 46389120, - 909027668, - 2936387394, - 1696213566, - 2172085839, - 3325963204, - 418358278, - 1296155254, - 2692120398, - 3410573915, - 2924290860, - 4110155636, - 1779457114, - 2672153755, - 3356347593, - 2549786183, - 388164965, - 963910434, - 552289781, - 575014694, - 1003489650, - 3697246721, - 4166723378, - 966382097, - 1677875563, - 2049856270, - 2463873435, - 3207131170, - 63899640, - 536865866, - 1388789977, - 1801447099, - 4228464196, - 3557005620, - 3119011143, - 3997062356, - 3391506937, - 3036410367, - 948599554, - 4156398544, - 619996018, - 2629789925, - 183753592, - 3084365760, - 2969726033, - 1743902211, - 6529346, - 825249674, - 2935588181, - 1991195319, - 1631151640, - 3148528744, - 1677910417, - 2519632137, - 4279470146, - 1738659028, - 2306378629, - 2419168149, - 3927154622, - 4179611483, - 394325720, - 2295511713, - 2400114723, - 1003613834, - 3134662667, - 57436306, - 2927323787, - 931858432, - 4190287089, - 3780048323, - 681724104, - 3670704026, - 1274811908, - 1064760152, - 119311864, - 544848511, - 3729897584, - 4257361565, - 3827033958, - 1344253468, - 69488766, - 220060901, - 7826248, - 1684194830, - 3995342240, - 3027592679, - 601966767, - 2600217709, - 461292105, - 4005284160, - 2280827409, - 3832731516, - 130640757, - 298921281, - 1502159015, - 3592556786, - 2311534730, - 3901490590, - 4004879905, - 343643049, - 1518687415, - 862725358, - 1553069054, - 4136580901, - 3540906501, - 2772475171, - 3378086187, - 3524541906, - 4102860814, - 2291675695, - 325806007, - 2178593332, - 213619667, - 57914922, - 2013467024, - 2772026905, - 2449779316, - 1165830470, - 2431306060, - 3142788597, - 1860053891, - 2266986914, - 3412601203, - 1260445187, - 2473904531, - 2573557863, - 2230158809, - 3872757417, - 3947251244, - 2187555505, - 673616717, - 1745902708, - 2766434892, - 1004465236, - 3192173882, - 3279444937, - 1865212581, - 232994447, - 3493173515, - 3734297387, - 222636713, - 2415038878, - 3426214319, - 3855310838, - 3711325232, - 700825272, - 3219135116, - 1196038758, - 2595000196, - 2645394292, - 542941691, - 13078439, - 1421488613, - 2458386364, - 2842436068, - 962337448, - 811037601, - 3849488673, - 1423242039, - 4175955222, - 1386386338, - 2988098535, - 236311168, - 905252403, - 3479732892, - 2446601376, - 3783645585, - 2563195432, - 2823776491, - 2095156223, - 3220201615, - 3688826122, - 730197312, - 2650159019, - 3533336150, - 2753606433, - 922680543, - 3036145667, - 2964294924, - 180688734, - 3909535987, - 2067848066, - 174678965, - 2640127126, - 2230151358, - 4044845933, - 1966497298, - 1200601243, - 562925350, - 3344271971, - 1751147756, - 3223655644, - 322060437, - 2539230296, - 1394977580, - 1732675678, - 1704066105, - 2136716848, - 3658539186, - 3856243251, - 2271440072, - 3128901788, - 2935991530, - 2101698071, - 3663342736, - 556732856, - 1910981283, - 4115792724, - 2639513391, - 4018853861, - 456965386, - 4229784719, - 1240957145, - 2324890775, - 3223331987, - 1105681966, - 3372527668, - 3348309225, - 2121652068, - 1540663813, - 2388990876, - 489452813, - 3115713072, - 782390049, - 2013376159, - 3976111118, - 1608665332, - 3958309385, - 535343372, - 42784577, - 702739220, - 243223655, - 2744752883, - 2485303914, - 2307467636, - 1469676004, - 660545440, - 2447557846, - 2538813409, - 2246548002, - 695172862, - 4064752271, - 3635969027, - 138295923, - 4039536289, - 2828153716, - 2510715694, - 2245315304, - 2983339223, - 3344090984, - 667193437, - 3437036025, - 766768962, + 1085536309, + 2117980490, + 3306799656, + 1841983944, + 1712404104, + 2262186587, + 2157777518, + 4150668383, + 325024600, + 2723506368, + 1206308595, + 1358232148, + 2189417967, + 935373780, + 1746313230, + 813265721, + 632010997, + 873467341, + 1229687147, + 2909524144, + 274973726, + 2347731465, + 1338722503, + 117948962, + 3986221270, + 1954094036, + 2410354209, + 2337266016, + 2703235468, + 4020650797, + 255509051, + 1020457150, + 464787633, + 988219266, + 2387495622, + 3263720956, + 1593144002, + 4255843372, + 755224522, + 1505632833, + 2965348174, + 2186504858, + 1989935671, + 2124542547, + 3329269656, + 2926109016, + 767012013, + 3813848097, + 1179253345, + 4268404168, + 2334814668, + 2069585766, + 4162817483, + 1351206093, + 2088099317, + 274081714, + 3360573100, + 3570951969, + 122144536, + 803393094, + 525261954, + 103852315, + 2288315336, + 3304167019, + 485424119, + 1204708526, + 2375713125, + 3992905210, + 2251893945, + 3195872956, + 4034441957, + 551949920, + 321179386, + 3825405905, + 2308875191, + 1968464978, + 321932415, + 3600315655, + 2378810327, + 3404894286, + 2549137935, + 2282859313, + 2056378516, + 1290587141, + 2396673450, + 2938124163, + 553437998, + 1881228625, + 2493651578, + 1105635434, + 1410816904, + 3126416201, + 3206121867, + 3997992572, + 3723531070, + 2059981921, + 642833016, + 856970710, + 1512233484, + 2760975260, + 2593280200, + 485980703, + 1008146337, + 1285607438, + 132594951, + 21374859, + 2353511677, + 3855326508, + 143163448, + 784630766, + 2732347331, + 561324291, + 525550156, + 445297160, + 1553083035, + 3064262450, + 30519137, + 1793458675, + 247355178, + 1134279062, + 3070881648, + 879418090, + 3766084383, + 1826713646, + 1571928438, + 1773517993, + 701054853, + 1340631117, + 3180730094, + 3670957644, + 1590914105, + 3075193379, + 2121316385, + 873305412, + 36462828, + 3114095964, + 16258677, + 1823083233, + 2500421037, + 3126003382, + 433577564, + 691671918, + 1709110358, + 928934042, + 766576115, + 3538168598, + 2154380651, + 1867334, + 2055348794, + 1186512319, + 1759112200, + 244091558, + 2701724438, + 2707506717, + 3254080342, + 1567682660, + 1929585230, + 2105902572, + 283649330, + 2808059267, + 21984088, + 3087283882, + 3711374378, + 1442386463, + 2283281989, + 1231006897, + 2951016785, + 2535367181, + 3231269074, + 1310639193, + 2395771573, + 3159821825, + 3498198914, + 1083619443, + 4004544097, + 1687463030, + 843828097, + 3529495248, + 1380398244, + 2340370140, + 3727070213, + 998110902, + 3471121416, + 3450073488, + 1748699998, + 3704610771, + 3340981647, + 3252624424, + 4286661960, + 35250130, + 3123278139, + 1985664207, + 3441207534, + 229839253, + 1632901441, + 3566351387, + 1110685166, + 1749390386, + 2185975594, + 1102555430, + 3622613397, + 163815443, + 794165064, + 1827716758, + 259310977, + 1601493030, + 2664759833, + 1482630097, + 448172366, + 1541517574, + 3361017453, + 12442949, + 1479440814, + 630107451, + 2363652437, + 657813023, + 2823395173, + 1989064237, + 2082361673, + 656868472, + 1985514535, + 2292221383, + 3026989151, + 326024269, + 3350802317, + 705140943, + 2775756921, + 4248267522, + 3117916652, + 2996183736, + 3342043667, + 2109816854, + 131735565, + 1286723674, + 2615653690, + 902288876, + 474764361, + 159250204, + 613017929, + 1465004958, + 3084856953, + 685984132, + 636194260, + 4202543318, + 3084072272, + 418110303, + 3230960619, + 2724188932, + 3943623534, + 630484881, + 4207055387, + 3970420488, + 742437020, + 857083048, + 2322487536, + 3035602435, + 3810119118, + 912608259, + 1185253669, + 3659899592, + 4293560105, + 842337637, + 1228345580, + 508065790, + 3878945463, + 2750671275, + 3444774053, + 674015543, + 203656467, + 845755672, + 829085505, + 1158820148, + 3749720690, + 2868569748, + 2163071279, + 4114830478, + 579975416, + 2045396288, + 3571456249, + 2880322776, + 3786611844, + 794247816, + 2948619451, + 3586079158, + 3423461974, + 2350879552, + 3525378884, + 3295686324, + 2647221739, + 571621210, + 2534614449, + 1934121825, + 3047948603, + 2163171068, + 3700716737, + 200034474, + 3296307452, + 593234142, + 2828846645, + 3202478166, + 2591283471, + 588523438, + 3640357483, + 2136994040, + 875940407, + 2784934541, + 1704795128, + 3417002414, + 3462664519, + 1087126640, + 2449528513, + 877045427, + 173316887, + 2786590841, + 3268851673, + 112842898, + 3026331273, + 1125625659, + 1744390383, + 1251409265, + 493181340, + 4284397165, + 187685552, + 686961052, + 2514440889, + 1199703023, + 4105973817, + 2532201153, + 1158600943, + 3992352775, + 2848387783, + 3450041125, + 2522573145, + 3012910917, + 3630260983, + 300646650, + 1470724861, + 1789793422, + 3468123469, + 4026949521, + 4191460865, + 4052970242, + 1634986326, + 1139983711, + 1349852605, + 48404602, + 2197053440, + 3668826336, + 1412743800, + 2008040771, + 3740902438, + 1759672555, + 2924707825, + 2293874499, + 1790332359, + 2708987650, + 3994362820, + 4113390121, + 1897115396, + 2976342123, + 3196098737, + 853770122, + 1875208302, + 3191047321, + 2407094587, + 4224537495, + 3222836545, + 266738156, + 1513423125, + 2353895039, + 2114425088, + 347189446, + 759583893, + 225464875, + 2672650166, + 2417275446, + 2781533356, + 1383969672, + 2241665535, + 1102721684, + 1261849564, + 547589615, + 3300301639, + 2077924940, + 2893284942, + 1724462014, + 3656845639, + 4007592035, + 2341091614, + 1016131472, + 2777015390, + 2620064722, + 2430166019, + 4126225278, + 3522875787, + 1736834077, + 2662098007, + 4205696438, + 2096953717, + 2810936588, + 804465856, + 4157128032, + 1391364766, + 1021569140, + 1800041575, + 1985623617, + 2684878686, + 555492403, + 2525696983, + 1957424468, + 3527909330, + 1767272532, + 21359733, + 3020321436, + 3113621569, + 2585617411, + 1769644790, + 2421298420, + 3343046082, + 1653058710, + 1753978670, + 2262285394, + 3684210024, + 4053929698, + 3517493344, + 767647572, + 1918390406, + 3857217723, + 1009110385, + 1588807323, + 2984683819, + 515580053, + 274701658, + 3642193630, + 1866506637, + 2821871632, + 2940469755, + 3823409929, + 1212094011, + 3256674403, + 881124354, + 3374665619, + 1346867969, + 1008100270, + 14227636, + 3402565768, + 1121304539, + 4281978325, + 391515698, + 1186667069, + 3949551662, + 348808556, + 1991003851, + 3500568082, + 1266300957, + 4094624212, + 2576304746, + 3066775131, + 3843275462, + 1593669605, + 2513036173, + 2194712539, + 1520341866, + 1903681252, + 1288071308, + 491381175, + 1675998185, + 3467438246, + 3649458153, + 3030470853, + 1437173994, + 3895538863, + 1940348158, + 4130367055, + 2786716829, + 1644435893, + 1115897528, + 710541201, + 829782636, + 1339769377, + 2325825718, + 1791970944, + 2870122030, + 2564980940, + 3742765748, + 262056850, + 2438400552, + 1545066443, + 437751495, + 4281005700, + 3536047487, + 1017035441, + 1659952381, + 2818011605, + 659048353, + 613227531, + 1757056971, + 4013740637, + 1024045180, + 2239597775, + 2199005600, + 1092296402, + 2621417337, + 161103729, + 2654561632, + 3705933021, + 4116218213, + 1830829484, + 3564566968, + 854043697, + 798165495, + 1039848474, + 992815413, + 1593642577, + 1630529842, + 1042937591, + 1919353167, + 3934530532, + 1788196668, + 352686720, + 561809958, + 4214087300, + 3983543634, + 3862801500, + 1938059223, + 1289654936, + 979897060, + 1085546499, + 1558904469, + 1505597737, + 927859918, + 2132736969, + 3840203115, + 718748248, + 2711576933, + 3652274438, + 1719411136, + 1352174115, + 2675475841, + 2706582439, + 1659077702, + 1340726061, + 1378024570, + 3357398503, + 1709691950, + 2175575740, + 1373359064, + 3970383223, + 4021502739, + 1061065488, + 2521840950, + 2727478941, + 1287270716, + 4093614367, + 3973488719, + 3818892763, + 2241497574, + 27943208, + 3273086853, + 1229171015, + 3807172897, + 853419415, + 3482645881, + 3348389970, + 286579536, + 3318504095, + 2632745197, + 3422016734, + 3355782082, + 1227116534, + 3040110007, + 1965638274, + 2923878905, + 3134737380, + 3993078563, + 764439995, + 672617995, + 1635580843, + 3872698746, + 906501977, + 413804239, + 2497558449, + 2970367944, + 3841168263, + 2875510725, + 1415468596, + 2909036228, + 4149918999, + 364026462, + 95761258, + 2113576534, + 1271972635, + 3548019621, + 2076287478, + 4017306184, + 1432084085, + 3904533826, + 1727767421, + 1246726402, + 3467134782, + 148650761, + 1523517883, + 2054849699, + 1494172447, + 1623295663, + 2303356161, + 3941327405, + 1144460138, + 1842096496, + 2785486950, + 1243220668, + 4192599507, + 4197006413, + 760779358, + 3529911028, + 1921874387, + 1137033380, + 3657072022, + 1965464, + 4097534457, + 622726730, + 3563055962, + 3227560617, + 2670112929, + 132777244, + 1996446330, + 4137170098, + 2463773609, + 4019090897, + 3075990034, + 3786380257, + 1871895767, + 1697895496, + 2152339617, + 3685772298, + 2632466713, + 3900014046, + 3802597910, + 4146641375, + 3472229045, + 3416299740, + 923870660, + 3078136920, + 1673760017, + 3888410813, + 668555154, + 1421568972, + 4163099040, + 1797926618, + 684468459, + 810168122, + 3187831210, + 895739160, + 2125158844, + 1139621122, + 3712920797, + 2392948680, + 4107942343, + 2566716375, + 2829940758, + 1299185369, + 2265529936, + 1320750171, + 3212833016, + 306728773, + 1490946164, + 654060455, + 1930075625, + 1850479267, + 1097511533, + 3169531684, + 2807088008, + 4291851712, + 2630499777, + 2458837671, + 2734383061, + 3191205200, + 1234431871, + 1086970216, + 3644867248, + 20628602, + 1851371314, + 740027643, + 1800020735, + 1284009340, + 1088068126, + 972631824, + 3155595352, + 3852420151, + 2831055692, + 2615080173, + 3966254480, + 1369070080, + 2972338444, + 2097907973, + 3384879341, + 670376159, + 1908843277, + 2478472478, + 3012775131, + 4017078504, + 1918175962, + 4176367612, + 1899461628, + 1309265813, + 1768396902, + 2735581699, + 2917380141, + 1420369113, + 2173130433, + 992948018, + 3548558875, + 882752605, + 3278439376, + 3742567342, + 843614826, + 4233940506, + 1503375458, + 3086495302, + 1468572611, + 3803815538, + 2002436, + 924633745, + 3091148320, + 2011946973, + 3601042758, + 3885399206, + 1141413576, + 455924506, + 2242084087, + 482292314, + 1289995553, + 1137511758, + 3374091575, + 2484871387, + 1161660739, + 4099020718, + 3709788906, + 268204138, + 1159671547, + 1120925946, + 1331589960, + 2228774068, + 1884234463, + 87065918, + 331876640, + 2024667893, + 1569341024, + 3194297700, + 228974915, + 1802023899, + 288979847, + 3978099659, + 1276612641, + 1903879029, + 1824108706, + 2785099701, + 1572215383, + 2108354016, + 124757570, + 3543597800, + 1713505691, + 189298904, + 3718097918, + 3058597427, + 697016060, + 563134350, + 1306892358, + 715629681, + 1715149316, + 2013036598, + 587581113, + 1175783125, + 3435805299, + 2549094051, + 23137363, + 3517267604, + 3718729935, + 36614599, + 2190115789, + 4141290992, + 831121502, + 1861553862, + 1460147035, + 3768730075, + 881891235, + 60943467, + 2453835910, + 3384049863, + 2942979188, + 850627836, + 3453777229, + 1189730303, + 3179914683, + 110596814, + 1699511782, + 3508351228, + 2467597347, + 948450290, + 2339131131, + 4203858520, + 1184983915, + 887835269, + 3702557317, + 737384437, + 3987894427, + 2182889881, + 1168958690, + 3133730747, + 2299665504, + 2341894245, + 352258370, + 4220265682, + 4267358390, + 1869770988, + 4138710032, + 3979166699, + 3341228075, + 2528541401, + 2491816908, + 989998214, + 2839646861, + 1642832573, + 681261255, + 227499726, + 168390039, + 2735463575, + 3224853574, + 3580448637, + 2415638956, + 156511130, + 150733499, + 651876887, + 4268328925, + 3838390413, + 482315457, + 250774004, + 4242931560, + 1242976733, + 193454103, + 3371065312, + 3105310558, + 493058998, + 3856586530, + 1213131937, + 588966907, + 2866296838, + 4136308488, + 1979871579, + 3173655368, + 898011574, + 3177135870, + 3779274634, + 1351221007, + 4026440860, + 975758770, + 2785454265, + 3976024752, + 2075739962, + 2055593271, + 3530532352, + 3929628720, + 1630735325, + 3201169807, + 1003927603, + 3359573138, + 3639507000, + 2193907242, + 1808613930, + 4926660, + 2293843044, + 1128173309, + 599268154, + 2352437900, + 1164710412, + 1078164082, + 2352986366, + 1014291081, + 180471276, + 3690798036, + 2715939279, + 4274194709, + 2796097386, + 556069314, + 2467288319, + 3318575738, + 3397344225, + 2370331535, + 401109326, + 2682380721, + 2208267970, + 4291881825, + 21151982, + 2513130965, + 493115451, + 311256861, + 920185639, + 3702037236, + 2414527279, + 2561577387, + 4170200332, + 3842142373, + 190252784, + 1351578482, + 2429577770, + 338312691, + 691950784, + 481636430, + 1268030088, + 1027901762, + 417511544, + 2451028617, + 3382180633, + 3655442788, + 2566230482, + 3022856301, + 1421301246, + 3980596582, + 2281646654, + 2872839212, + 1302221319, + 1365502589, + 684420550, + 2376737172, + 2242815931, + 240815042, + 1994752024, + 3906223201, + 2227728643, + 3156644912, + 2545145039, + 116841055, + 1403188980, + 2713624716, + 4232883436, + 294471405, + 3264851246, + 325824826, + 4182699313, + 2069684010, + 3908747227, + 1605574944, + 2955904779, + 561665202, + 3204320361, + 1721039018, + 2586223272, + 2492969823, + 221418941, + 538072918, + 2592803545, + 2409975204, + 3716452615, + 1830256694, + 441370728, + 1393024459, + 2025187967, + 28410291, + 4061041540, + 2143044681, + 3487302656, + 3697978158, + 2583859043, + 947239088, + 2374879810, + 3699100054, + 1165450777, + 3902700841, + 2682853655, + 3630317579, + 3989397112, + 3675920648, + 1384419455, + 792874141, + 1834510286, + 2013232656, + 1020868863, + 583064013, + 3119960720, + 961240503, + 1340286103, + 465734741, + 3116332080, + 918796867, + 4053666287, + 918620629, + 1107969022, + 2597755069, + 197634199, + 2236538035, + 2279996457, + 512417959, + 3604803260, + 3257914033, + 1067208903, + 2796581721, + 3822344664, + 1434667728, + 3384142244, + 1834585789, + 663644105, + 3313224659, + 1933518166, + 4129076894, + 56034124, + 1293769543, + 4144706345, + 269562093, + 979497717, + 1992170947, + 3491981621, + 963998994, + 1398280577, + 3908367368, + 3302647861, + 630817325, + 341943851, + 2842309547, + 1451926513, + 3397386232, + 1377364130, + 2345739802, + 4126351205, + 3901368148, + 2198039049, + 1887832386, + 933676044, + 2866875911, + 165950738, + 2763887966, + 1650072690, + 1106492579, + 2308285618, + 163580239, + 1581276944, + 1169410380, + 1161358853, + 444857632, + 3787905492, + 1293782100, + 2844263403, + 2886738872, + 3685395239, + 1601620975, + 2519290506, + 1519468745, + 3790210836, + 2094226512, + 2360380331, + 3398306834, + 3603134191, + 3332113386, + 1635903848, + 178751471, + 3884752923, + 181950687, + 2451078642, + 3196524723, + 104370528, + 3866181332, + 425923997, + 2725576019, + 362192892, + 3914497455, + 2141013009, + 691515102, + 942846390, + 3799111446, + 2609990188, + 433480365, + 2467198723, + 4022338036, + 323217851, + 217603350, + 3456859271, + 4007337888, + 614055466, + 2831894695, + 3114209577, + 3305676352, + 370137372, + 1263543610, + 2114082666, + 774629468, + 3567686344, + 3959253059, + 2250098679, + 2303246840, + 893454596, + 2307458021, + 892178040, + 1026600657, + 3694904182, + 37940190, + 1449101925, + 953326669, + 3367139175, + 1595256261, + 1507669056, + 269006317, + 223054571, + 1986003671, + 1039170294, + 297063699, + 3601488549, + 2316436874, + 3762033524, + 3209737797, + 2297588043, + 3366048335, + 2301410388, + 3097969278, + 839899417, + 3282442992, + 982221951, + 2064004791, + 1041347534, + 1811322312, + 1113771578, + 2306400708, + 3832725595, + 2467830746, + 3727517954, + 94094519, + 3355834865, + 2862703734, + 1421288556, + 120561901, + 118538990, + 668651291, + 2225407928, + 2677884571, + 3768050437, + 672390401, + 272943079, + 547980271, + 1925811509, + 1888786150, + 805660003, + 3778221757, + 1000452547, + 1192696063, + 417066177, + 3464037789, + 2591318094, + 3979809694, + 1931714040, + 348440986, + 3391534706, + 3186260453, + 3337558171, + 4241021284, + 4006316361, + 990024548, + 540018608, + 476468502, + 2364116836, + 2426963106, + 1138794555, + 2543232111, + 4033882589, + 2667360370, + 1718693827, + 3112965526, + 3352873059, + 2500162206, + 917631840, + 1785804200, + 1825480280, + 3237828092, + 882241639, + 2356332067, + 4068688306, + 2249583798, + 2245189527, + 1033607225, + 171187142, + 1037242576, + 3459046268, + 4198402784, + 1002293379, + 699804623, + 1722669777, + 692658988, + 3254296102, + 1110992290, + 2415906128, + 1705408318, + 1447584170, + 2730118847, + 381018471, + 2132602422, + 4188790718, + 4022681027, + 4116273564, + 2788641129, + 831585301, + 1022064242, + 99332243, + 3985257943, + 3014689974, + 2906967270, + 4119953521, + 1199742841, + 1529405814, + 2646244793, + 1525112483, + 1590133622, + 3956126953, + 3159372624, + 1041031400, + 523933088, + 713094885, + 4017730041, + 2474499427, + 2274032791, + 724020206, + 3989279254, + 990372080, + 84657200, + 805337745, + 3340497798, + 1447809889, + 948331174, + 2925341381, + 477410518, + 3728035563, + 4248868362, + 1207692044, + 3912942909, + 3956508190, + 2552096385, + 1306714499, + 3809440563, + 3584716001, + 3330104712, + 701943910, + 3351673601, + 1949167932, + 214999918, + 545869562, + 1771710239, + 912755144, + 1884714130, + 3187673820, + 451595313, + 74574051, + 1822316368, + 1519034119, + 2869003345, + 219978543, + 3982152564, + 2156669946, + 134026770, + 3456472507, + 281095340, + 4026024818, + 1290944174, + 3431292549, + 3849666943, + 147437883, + 4294390660, + 354898175, + 1289238387, + 2643957649, + 4088107573, + 3894154397, + 1140711818, + 3232485752, + 2095688689, + 4058965251, + 1406652907, + 1252766944, + 3633712660, + 2361045829, + 3143506670, + 14085845, + 526659795, + 1185408094, + 660814790, + 3693127140, + 3836439535, + 1404090576, + 4194958393, + 3483386595, + 2209987450, + 2514573304, + 2128755046, + 1620094387, + 3065537765, + 2821082377, + 4015520115, + 2699416714, + 1563727055, + 2318997610, + 3009096601, + 4240853802, + 3389576713, + 2694353822, + 2670277640, + 599701081, + 4281275375, + 2093999744, + 2282497145, + 3850236052, + 1250454676, + 1611058539, + 478316885, + 2658557842, + 2541479512, + 1237296715, + 1534834504, + 641294059, + 4257798485, + 747820946, + 4199063004, + 66708725, + 1633386582, + 4067017516, + 264319306, + 2961165265, + 4121665549, + 1160054202, + 1800798562, + 2500854702, + 3690464088, + 748471447, + 1417968525, + 1504925091, + 3328780343, + 1571974609, + 3872213942, + 2271639389, + 3376742129, + 1092290569, + 813770883, + 3097534802, + 2520919410, + 1858667872, + 3755951082, + 533261847, + 1278785348, + 3495927968, + 20611301, + 3059107985, + 285606830, + 1714648212, + 604659056, + 3504355677, + 3198889179, + 1380835512, + 621945771, + 2227978411, + 992577111, + 3218072902, + 3233400638, + 472491106, + 3670337329, + 3491503669, + 3469572829, + 3065199986, + 629845622, + 474179494, + 520889158, + 643711550, + 1419704879, + 352560427, + 2566502194, + 3538916883, + 3482193684, + 2417969778, + 1445022017, + 1584365077, + 2030671691, + 3395271660, + 1572877726, + 3487108276, + 2139837854, + 258499896, + 2034007946, + 3533608503, + 3796980424, + 2732144591, + 1700671060, + 379784746, + 1698797512, + 3707646685, + 2685937154, + 4154939131, + 2275770670, + 2005066042, + 3893824693, + 1053538583, + 1276583121, + 767392377, + 2329231744, + 1844349766, + 109361751, + 385742237, + 4177013648, + 4057721090, + 1557767944, + 872062825, + 3218329037, + 2309551843, + 1135602883, + 971028918, + 1179199150, + 1218017198, + 670702065, + 278119436, + 1654668553, + 2873844341, + 3329606815, + 1905513581, + 1970519013, + 2859566380, + 659735494, + 1270020706, + 352582354, + 1465898702, + 293457169, + 1113584096, + 1162900946, + 1511455801, + 1586301576, + 1684964370, + 3335102185, + 1918297563, + 867004800, + 168453004, + 1719614846, + 1918215285, + 533478097, + 222783604, + 3085341504, + 3464374801, + 733958310, + 2048411663, + 372217789, + 525798833, + 652234143, + 2907990843, + 4151310504, + 787515146, + 3385657458, + 2047711705, + 3081385223, + 1308309594, + 1001244157, + 2890086652, + 665270088, + 1775294635, + 63518953, + 649576616, + 3065301356, + 3502719016, + 3038287906, + 3879218427, + 3179851686, + 3939077162, + 4122811048, + 430501234, + 3035971460, + 902893366, + 427635638, + 2730011512, + 2523183069, + 3272786552, + 2387459551, + 417432700, + 3297045586, + 4060502711, + 939908102, + 3150410546, + 2553407803, + 1572709853, + 2068949466, + 2922742835, + 3439150707, + 3111744673, + 2614684063, + 1384767353, + 183056652, + 3597944569, + 2021718136, + 304391054, + 170753396, + 2455562492, + 3614369235, + 609588650, + 3458840801, + 1006680616, + 4056904962, + 1863866738, + 2624775390, + 186208854, + 1863997301, + 3698612585, + 1138494249, + 3377966973, + 2723569360, + 1696174713, + 1231594042, + 1775194393, + 3144809759, + 3273112075, + 707802245, + 1552489774, + 363893574, + 2570958438, + 2401223841, + 410129956, + 845767725, + 1848398988, + 1027174915, + 4290916351, + 2185755528, + 2478450258, + 209646199, + 3309366169, + 3363219442, + 4022905258, + 3254481525, + 2549408333, + 1172390740, + 4059818511, + 4274730824, + 537664603, + 836331631, + 541289355, + 272421737, + 3078435008, + 552598840, + 2851570968, + 3350772952, + 1238727654, + 1165004317, + 3005921682, + 1100856519, + 2285427145, + 2010991185, + 208585908, + 2673355770, + 3602091435, + 3038826454, + 1411288714, + 3809103665, + 3679331286, + 2932403084, + 2227258178, + 3835831617, + 229609334, + 741525388, + 2031293894, + 3416187957, + 3821780347, + 3370583115, + 3280734418, + 3103555194, + 3674388339, + 3423851486, + 886751471, + 2786691033, + 3002660367, + 3967826598, + 2097679392, + 500967744, + 368540462, + 2492935460, + 2359110139, + 1790252651, + 3331167825, + 2555117477, + 3505928082, + 27756334, + 2576122182, + 1452523965, + 3127160648, + 970813007, + 2565125282, + 1764322645, + 1556734926, + 2235987785, + 1844585726, + 354090626, + 2959351430, + 4058745243, + 2814170787, + 2537400646, + 1562236954, + 4191554414, + 3224368165, + 2221010518, + 4096018652, + 4249718209, + 2801370245, + 3502310993, + 3701664415, + 644714393, + 1347246098, + 544498242, + 1488153699, + 1038554259, + 906519409, + 203296356, + 1333971068, + 2896673434, + 1960913088, + 3197903801, + 3959393599, + 3445230438, + 2904728922, + 3068781177, + 947225288, + 3385573485, + 3344502910, + 2266445022, + 762210538, + 1647682671, + 3570494744, + 3203611513, + 1759931323, + 3856547856, + 729278528, + 3505860261, + 2370708653, + 707420715, + 2229528036, + 3009316585, + 2494180888, + 9884453, + 3480298928, + 3402220691, + 565537555, + 4065839344, + 494162827, + 47273717, + 1202321327, + 764916225, + 62629445, + 468672536, + 1857595355, + 2248643052, + 3811737927, + 2407314603, + 266433120, + 917558003, + 1066162414, + 2132792262, + 3274397917, + 3062020642, + 3765167416, + 2937911793, + 1471502165, + 2695678468, + 3846250022, + 786320910, + 2005279683, + 2393071957, + 811894284, + 775813278, + 450701352, + 1985137669, + 4158891467, + 723802896, + 2105155548, + 3654424836, + 1963782082, + 1575054543, + 676756874, + 335586126, + 452898663, + 573868637, + 2002705733, + 3475536239, + 3076138688, + 958013794, + 3493630565, + 1396510366, + 2234434287, + 1613914016, + 516569870, + 3850006518, + 2116956986, + 3443640709, + 2989496921, + 2367722093, + 1268049268, + 2047485689, + 1481674444, + 2386015486, + 2659193668, + 1447951666, + 4038982668, + 608427934, + 2484364432, + 3959694259, + 1101777239, + 2541413372, + 3565345852, + 2033902245, + 3005838160, + 206671101, + 3560968287, + 2595380916, + 1835881266, + 2975975710, + 513713116, + 3710862181, + 3395886503, + 1179658943, + 1355609248, + 1035428742, + 3890571246, + 3450601047, + 594177484, + 2613765624, + 1820083025, + 4255930630, + 262855535, + 1889063987, + 363624782, + 816015346, + 2415046995, + 2025925393, + 2480300231, + 1189630142, + 1079027428, + 3467742475, + 2136720262, + 1240187359, + 4244115934, + 3977185134, + 2003009330, + 4132006953, + 2679486124, + 350991967, + 2278323682, + 2136825081, + 2046729022, + 2496971673, + 3224982439, + 3661404587, + 1635139275, + 1938557213, + 1007151393, + 4170300162, + 1561838061, + 726973221, + 2454541846, + 2243697228, + 3968379842, + 2072199035, + 337229526, + 1678887996, + 1418737017, + 2705029522, + 1484579086, + 3367785465, + 84043031, + 236552638, + 419850644, + 738786398, + 221744287, + 2327919416, + 2321399546, + 2890018588, + 2396364255, + 3411006089, + 2270479906, + 749836993, + 3619820844, + 3901769328, + 645755936, + 1097476618, + 3074692798, + 2649128016, + 3688014132, + 1040479015, + 3235174851, + 2526083468, + 723743570, + 3499912066, + 1472139534, + 3981425735, + 2411967978, + 393981685, + 3197506880, + 3193695983, + 3106566367, + 2308231883, + 3513514431, + 2833504430, + 2987008140, + 2135808593, + 146921211, + 4033871712, + 865889974, + 871943688, + 2217860615, + 352283056, + 3305859944, + 2766718680, + 4218915183, + 3985342813, + 3564857507, + 3021895208, + 4059524907, + 107609467, + 411075653, + 988007600, + 3981366070, + 3311333667, + 3916627429, + 2422313573, + 211263061, + 964673394, + 2727372039, + 3084657920, + 3991582871, + 2393763400, + 787300852, + 3384399287, + 2867087104, + 3770294300, + 4185313109, + 3837187521, + 2949171090, + 1574658435, + 355529493, + 3093497543, + 3831625304, + 3949014000, + 1924756794, + 2818466556, + 2442202763, + 3741219349, + 2564966408, + 2350271716, + 3336975891, + 2374320083, + 1249800776, + 1628104960, + 3388187185, + 4071837186, + 4027707505, + 2318084914, + 493398431, + 2871559912, + 2538146973, + 3857323112, + 1537174147, + 1015084464, + 1007811740, + 333132683, + 1644187511, + 1403956233, + 3277269015, + 3193248913, + 1096101302, + 3889526377, + 1757280709, + 2289840040, + 3551445890, + 732839780, + 174143387, + 3770844883, + 3727157458, + 888524556, + 3007137413, + 616525632, + 1186691924, + 3588710648, + 2138217131, + 718200187, + 386851156, + 3439583794, + 1284831158, + 1398957631, + 1805694179, + 2343595504, + 1896230757, + 129676576, + 1111939, + 739712904, + 763237228, + 3951021027, + 2574622754, + 1482291256, + 3554150473, + 2118091338, + 1357825642, + 172790104, + 1612620497, + 2340040458, + 881797010, + 4199754598, + 2809796530, + 2157582657, + 447409858, + 111630638, + 3305781960, + 1506089898, + 538883796, + 624452361, + 4056631089, + 360790496, + 121620495, + 3972782410, + 3316390475, + 1243100344, + 1272260465, + 3080480127, + 4117340508, + 1749464451, + 981365532, + 697933675, + 2845166704, + 1701465677, + 30629043, + 1821385852, + 3248107258, + 3498909975, + 1899607140, + 1863657901, + 3863569867, + 3985200149, + 3745056166, + 3321582004, + 3786675024, + 2564687569, + 3294968771, + 2497175502, + 2202299910, + 3274078179, + 2247375753, + 2993709510, + 3847372958, + 3564909598, + 1037302070, + 2326183723, + 1687134302, + 3197806976, + 1870280613, + 3220346977, + 3767188335, + 287883389, + 1369958132, + 3968906012, + 4187815968, + 517411252, + 417572132, + 445283153, + 802966011, + 561525747, + 3571237682, + 1087063608, + 3657768501, + 3911387699, + 969413281, + 1350753161, + 1656035092, + 3598949444, + 2000957358, + 4174331559, + 208223383, + 641053106, + 3307602410, + 418749455, + 2834377163, + 2000100071, + 964986841, + 3630171042, + 936015290, + 3407561416, + 4129610805, + 2008747897, + 2390016283, + 2432469362, + 2729573545, + 947491001, + 1034576683, + 457016145, + 2844782857, + 1701411140, + 2613419907, + 2837373747, + 3369910856, + 3920500515, + 760078098, + 4092806494, + 3770906895, + 3991880946, + 3142762365, + 3505077500, + 1396880868, + 4242339755, + 2173915968, + 3326171033, + 4173722593, + 1542365999, + 1812653771, + 3419105672, + 2708438885, + 3754677701, + 2678918193, + 3566524992, + 392245357, + 1265078587, + 2760776098, + 1547631114, + 276955099, + 328401699, + 4192593419, + 3310988269, + 358135011, + 199398151, + 3431944137, + 2569765829, + 2814608953, + 2281035129, + 3542660350, + 4166401484, + 1895516702, + 4070375149, + 536281383, + 3225284325, + 990386775, + 155606229, + 2938788593, + 4124640509, + 1511989672, + 563440545, + 782802297, + 2461606529, + 1665138010, + 2837793684, + 2247000214, + 2345090351, + 712996271, + 2188840984, + 1283178059, + 4219541318, + 3458908497, + 1391689121, + 1965556179, + 1931654491, + 3320085720, + 246447155, + 2375859913, + 323897804, + 2172800095, + 1229550909, + 3071639249, + 3056011873, + 2781654953, + 2901636486, + 1253729459, + 379958792, + 948148906, + 735408387, + 2364665395, + 1968816518, + 3967119867, + 2270748854, + 938929383, + 1919976742, + 956393119, + 902842337, + 3470734462, + 1474455634, + 4131771354, + 3209173769, + 2143055986, + 3458402182, + 3995385184, + 3845450416, + 342378800, + 1083267321, + 598324069, + 4060045657, + 2310216831, + 2161885273, + 463740097, + 3320733088, + 2679788998, + 209328867, + 4226617336, + 4212229160, + 483698526, + 1333335662, + 1855535420, + 1917921508, + 1272816122, + 1378258668, + 2435066688, + 2140908948, + 3467362216, + 3004567456, + 4160999350, + 923888509, + 1645443836, + 909768267, + 4273537606, + 1960078345, + 4149063109, + 4104657233, + 145000137, + 2609957754, + 3310517860, + 2446897611, + 899164751, + 2229389676, + 2221036374, + 1539334398, + 3330089617, + 1765383615, + 3763711499, + 421910936, + 3448751869, + 1621049914, + 1147639911, + 1529686394, + 3318394034, + 1729090464, + 3435733535, + 1296433427, + 2270640204, + 4158787083, + 941176363, + 644501852, + 1947374962, + 2342262564, + 1749720161, + 145195583, + 3222901866, + 2979029761, + 2387384540, + 1578154743, + 493557811, + 4119914824, + 3755997140, + 1643071070, + 3053439258, + 3689323839, + 2313397055, + 4283660817, + 3464028766, + 1416559128, + 2105543596, + 2133014067, + 2112892883, + 259821502, + 149424272, + 512856554, + 1672418444, + 467361716, + 3250587977, + 908451294, + 1942816352, + 1582371453, + 2896119838, + 816486928, + 631734781, + 1844846662, + 1280076626, + 4170768206, + 3683173020, + 1873327373, + 3743983790, + 1852120419, + 3065944889, + 3061493292, + 1794699824, + 893250899, + 886609199, + 310126016, + 1419872854, + 3040226311, + 2878592974, + 582524702, + 2236999606, + 2025267490, + 4012515079, + 2165063746, + 730766085, + 4135351210, + 2993097062, + 1852127821, + 262657135, + 673567935, + 1775845310, + 4028399587, + 1230948317, + 4234050950, + 1362871290, + 2715924346, + 2066046778, + 3428929219, + 3341616640, + 2339788777, + 2086355126, + 2725199360, + 1849923452, + 1175973624, + 2233476211, + 1991347873, + 829014462, + 1825865238, + 1965184669, + 975267481, + 46595678, + 2557785106, + 811574266, + 3247915325, + 3368386019, + 2379601218, + 788907575, + 2293019734, + 1927501611, + 1605783919, + 2282191775, + 3661322353, + 2626382163, + 280497544, + 1189432262, + 57024590, + 2528929736, + 665327650, + 3870875322, + 1826638421, + 2722124092, + 3148857462, + 3064558822, + 2046711335, + 2034300465, + 1389355403, + 333000367, + 796860310, + 3043618406, + 1914834441, + 629799586, + 1569054821, + 2338392282, + 1094525589, + 3261070555, + 1223637506, + 4153619590, + 790684817, + 942549977, + 3267002064, + 2373342028, + 3994157485, + 3019208078, + 3859399771, + 3380633873, + 3642559906, + 2312856724, + 2500863374, + 437168953, + 2892679325, + 3182486398, + 981944237, + 2128742411, + 2218720288, + 3338824819, + 653202450, + 2934652617, + 2541100365, + 1155095450, + 422531864, + 791379979, + 952490545, + 2927357074, + 3948306482, + 2057902523, + 618351941, + 3235228745, + 483908376, + 710951527, + 3728070669, + 1059306030, + 4167701777, + 119489089, + 1832822470, + 3568246870, + 4060621488, + 4210996863, + 1087603107, + 4274997761, + 3681408298, + 674130540, + 1329482100, + 2151552180, + 2432543922, + 4193589882, + 2241350842, + 3577549991, + 754996105, + 908356157, + 382014215, + 3930049312, + 1610415709, + 1428026652, + 3807150068, + 2786632703, + 1155819630, + 483007583, + 3192245457, + 2270791414, + 1682658148, + 515988794, + 2642227880, + 3141783864, + 1386208320, + 4136005319, + 4294836958, + 76807116, + 3515803745, + 323171196, + 676738793, + 1600625392, + 614848098, + 3320690393, + 2487022598, + 4224312546, + 2054962818, + 1039108732, + 2452358650, + 3580765992, + 3827580575, + 3789921621, + 282750964, + 3532983241, + 3717378777, + 3441345302, + 4031416900, + 1963588498, + 4180140348, + 1629416353, + 1063923727, + 1814362711, + 3872921286, + 2439149639, + 3348820517, + 795110956, + 814070728, + 2120654863, + 2462730831, + 3156373086, + 1122068934, + 2690825438, + 2800882421, + 2333826303, + 4234259056, + 2222639281, + 3313869688, + 4231777954, + 3065460833, + 3342671295, + 3698903890, + 3994077534, + 3852728810, + 2873872122, + 1159732917, + 3664184002, + 3264754007, + 896131975, + 2933072998, + 1604402444, + 3900187825, + 1802668104, + 3240331040, + 2946561771, + 2537152642, + 777979871, + 3476612908, + 3545770134, + 3188490725, + 2062599962, + 843772765, + 4238226774, + 2089973090, + 803433102, + 796626338, + 3346404946, + 1996933728, + 431803177, + 3895904889, + 3063857733, + 1804009975, + 2644942897, + 402652845, + 3842152752, + 1403840951, + 187067630, + 3056934183, + 3183111748, + 2052064666, + 3850468557, + 2556325016, + 349411883, + 3414681905, + 1798381080, + 723299229, + 3351774329, + 3801910432, + 3137977407, + 1210204205, + 4232579347, + 784506804, + 171817963, + 3727539894, + 2056464132, + 677188962, + 355896687, + 2683106581, + 2941256671, + 3993809316, + 3524637956, + 2927742616, + 3050709280, + 3293512600, + 1266062346, + 2126843725, + 2921201184, + 672170225, + 619962259, + 3162636062, + 4281532913, + 65809470, + 1098388967, + 3365558796, + 830256247, + 2604354729, + 1872825359, + 3754882452, + 2442134391, + 3366691874, + 20293660, + 2597281258, + 1917390716, + 2098499144, + 2924053071, + 2787237213, + 1021351977, + 3918119068, + 775779388, + 3963416736, + 2249259797, + 1843819468, + 3740301475, + 736128240, + 3219278611, + 3605727023, + 2041006693, + 1623759851, + 1715504484, + 3862162669, + 2525974341, + 4078329804, + 1509016604, + 2697857437, + 2586819840, + 56523595, + 488930665, + 986413675, + 2642169353, + 138345293, + 2242917528, + 2268662711, + 346318898, + 147197773, + 3841837556, + 3954777469, + 3832129510, + 3640480623, + 2876814972, + 53301836, + 1178549125, + 1042964379, + 3615429497, + 1115665124, + 428385685, + 2106592676, + 2075308956, + 1139461837, + 3501607349, + 3830039987, + 1981667006, + 2078463130, + 2798192040, + 191463463, + 44484323, + 3793254519, + 1866180755, + 247842214, + 2310522219, + 115050127, + 16732262, + 4050705535, + 1520024558, + 76514101, + 684069373, + 1425023879, + 3339540216, + 648002628, + 999675462, + 777037211, + 3022428632, + 1285180889, + 1175523016, + 1864687914, + 3777599156, + 3394737841, + 1835871183, + 3951793852, + 1128392853, + 3797013159, + 1069116278, + 482270404, + 1915945080, + 3969998897, + 627469184, + 4042501448, + 1594261498, + 2589641094, + 1079246689, + 3838731206, + 594852130, + 4277053771, + 2429617003, + 676144522, + 1737892495, + 1227494051, + 2318611485, + 49013457, + 3921227835, + 2786762884, + 910731383, + 1168194859, + 9642575, + 127199527, + 3649925994, + 3769788722, + 1689201522, + 434989291, + 3941246669, + 1672216854, + 373412811, + 3867004420, + 2923749037, + 1626433843, + 3965331887, + 3584237300, + 2811371311, + 262404305, + 28091528, + 449025602, + 705504802, + 2089588493, + 3011712742, + 1470958528, + 763779268, + 618060199, + 3638654456, + 733096105, + 4064999083, + 926371104, + 1915264222, + 2582118306, + 3701511194, + 412821304, + 148261924, + 2949947625, + 2593835270, + 1532575812, + 850237218, + 2230704553, + 2524334149, + 3640940699, + 398723182, + 2219547792, + 4281683682, + 2081601378, + 2696413195, + 2013282210, + 4158801828, + 1971975224, + 3802489601, + 868706264, + 3457812525, + 656351966, + 2205423432, + 3657441610, + 2792302574, + 3917526583, + 3588617585, + 3505484893, + 65995440, + 4182870409, + 2109275659, + 3012147760, + 1353852274, + 2768903660, + 2275333747, + 2460876492, + 1875881233, + 3123444436, + 3616447766, + 1279491127, + 1378636072, + 198439464, + 774098742, + 3333629931, + 1263703364, + 2613493166, + 3759579338, + 3948784287, + 2866276072, + 1225201490, + 276201254, + 3881378375, + 1333270594, + 1167020381, + 3731137425, + 2013128523, + 1268423363, + 584405902, + 4055009526, + 596780805, + 177058501, + 1796575846, + 834791297, + 812106056, + 3930619616, + 2450687041, + 2398592133, + 73633268, + 2418428653, + 1323758359, + 3009947970, + 2059603695, + 3133027753, + 904932591, + 682965083, + 96681634, + 2351559393, + 1778180248, + 97684980, + 544087357, + 132510544, + 2238533140, + 1998974594, + 2218957079, + 3008380177, + 1277902456, + 1268966366, + 1799517096, + 1856927371, + 4089824585, + 2948753552, + 2568533261, + 521835068, + 4038746296, + 2534721955, + 1670201290, + 1811728319, + 1162167024, + 1898549625, + 2948654562, + 2901009959, + 2911677598, + 2815310171, + 2188874185, + 1412854430, + 3961550766, + 484486531, + 4085203874, + 3579822099, + 4008947238, + 1166984647, + 1721572921, + 736203889, + 2747611365, + 39535860, + 764171606, + 1257015503, + 450778859, + 85371943, + 1053725362, + 3644040440, + 2772669301, + 3233733039, + 1431861525, + 3038381423, + 2367217206, + 2283649730, + 2350364717, + 2318128572, + 4107324983, + 157401561, + 2083781953, + 3651226453, + 1235634317, + 3750381436, + 1675554264, + 4155575911, + 467446369, + 4214686705, + 702634488, + 712303856, + 1567960561, + 352541654, + 534026899, + 75369890, + 2267458491, + 3066769099, + 3590411684, + 2942380588, + 881135058, + 439876215, + 2082200170, + 959131200, + 3226184012, + 1805705006, + 416278905, + 782761798, + 2369948697, + 3572666534, + 2017624022, + 3047715234, + 3344610103, + 11286863, + 3614361294, + 419756996, + 3418374957, + 2392045573, + 3625839705, + 4153182098, + 1895009374, + 826795971, + 832382701, + 2855552421, + 516640076, + 3097326875, + 3644017095, + 1736375288, + 1300883159, + 1269079230, + 1674589912, + 837820457, + 3029532264, + 1490398314, + 354933151, + 930667207, + 3953267744, + 2680672153, + 1318017163, + 2378410107, + 3097115773, + 666792341, + 3990985381, + 1648033602, + 1224083901, + 3099232804, + 3602024913, + 523107329, + 1022998336, + 3947062226, + 1268698866, + 4112447150, + 4223496263, + 1895607367, + 1343346673, + 1569239232, + 2399117239, + 2759164767, + 424112782, + 2999714242, + 3839520214, + 3314031761, + 3013173863, + 4008685429, + 1859553225, + 3201257446, + 951117575, + 962987170, + 2171781711, + 2867468459, + 702794149, + 534839807, + 1098520569, + 1024505647, + 24855164, + 1256888684, + 710341630, + 1174171716, + 3969936172, + 352947582, + 1411359691, + 54895399, + 2892538927, + 3811309541, + 1176667248, + 3186571320, + 293018143, + 900275224, + 659668098, + 3631091882, + 3986557919, + 936854263, + 4126162164, + 199206557, + 800343554, + 2500420459, + 2458776993, + 1621984938, + 2230381795, + 3838336695, + 653186451, + 562093729, + 3349474947, + 2470582152, + 3546432662, + 3823404387, + 304228255, + 353650518, + 2795844961, + 3214597674, + 3015830200, + 4096190060, + 1543999773, + 2444608841, + 3075921961, + 2031701624, + 323849339, + 2014036834, + 1932434993, + 1783510482, + 3346370619, + 3330914332, + 3105291544, + 349723954, + 1675851464, + 2585923998, + 267181220, + 434982258, + 2927628937, + 879031861, + 829651118, + 1529714926, + 1305112881, + 655409987, + 294227343, + 3664549701, + 1965090441, + 2820969974, + 3312826721, + 1303484127, + 467549319, + 44215721, + 2655461949, + 703657140, + 3159835048, + 3294492288, + 488218680, + 1964778353, + 233844683, + 4185425450, + 3872509500, + 4098454089, + 2800291767, + 2049071061, + 908392705, + 1142278725, + 2090776485, + 3055917391, + 2147747064, + 3866581725, + 2697987686, + 4061072129, + 416325161, + 4024789556, + 3949568669, + 1651938261, + 2001230526, + 2214888316, + 1290801298, + 56776513, + 3076417836, + 782612911, + 4080283099, + 1316028805, + 1807111252, + 2777418569, + 3799697770, + 3330724764, + 2407025605, + 2192635776, + 1326386751, + 181906659, + 2704591245, + 2332288315, + 2737340993, + 4059819915, + 800157879, + 747116247, + 3945901931, + 458863766, + 378603463, + 91229112, + 3864173522, + 4214835466, + 3064324016, + 4031418592, + 2576908259, + 2186052755, + 693230468, + 821948431, + 1336473518, + 3207554338, + 335661082, + 1077176246, + 1426162940, + 1820590050, + 1417870939, + 3388072119, + 3246018275, + 3372034332, + 1695090955, + 533758541, + 3747368538, + 2774266417, + 2510062606, + 2704449381, + 4121145487, + 2462398255, + 3268788624, + 3053479996, + 1728135600, + 1938970514, + 486276401, + 755968338, + 2808294971, + 243486179, + 606849281, + 3481880608, + 1411375291, + 2656196723, + 4224811222, + 3631388422, + 2278146836, + 3733751032, + 3961916465, + 3261521110, + 1420196268, + 1258193807, + 2659699489, + 1611917429, + 158232153, + 1584612074, + 1267240863, + 2310854487, + 1850517899, + 3176110028, + 416228777, + 3597142880, + 1629335335, + 3536618743, + 3177662462, + 477969971, + 3209900985, + 2324893944, + 415783425, + 1618396469, + 1493894855, + 633482031, + 3982163311, + 733741291, + 3126125588, + 631696679, + 1662825477, + 4060849839, + 240321249, + 2629314498, + 2308625154, + 3298230757, + 2094035381, + 2448544132, + 644550256, + 4086036965, + 3904414106, + 1105783923, + 1999294884, + 12938091, + 3177597203, + 3515511920, + 949893149, + 302406862, + 2303518825, + 1860144458, + 3120657464, + 3694882408, + 533118851, + 3610021132, + 4180819413, + 4211694495, + 807526974, + 3082847119, + 253261122, + 2237573669, + 2801227628, + 1492451662, + 1924428806, + 2492168098, + 3160332356, + 3024419586, + 416040863, + 2865131814, + 3432150765, + 149942107, + 2648035347, + 1196590407, + 3250439732, + 1657627630, + 2921554569, + 3559902179, + 2585257874, + 2672141553, + 1599015564, + 1669205433, + 1232079306, + 2031093558, + 823815439, + 4150417094, + 1820201172, + 1815421953, + 3206591444, + 1858525952, + 3989297502, + 3897322535, + 3039237399, + 1822254544, + 1094685678, + 3014486625, + 3296369886, + 819605445, + 2301430806, + 758484992, + 3519565348, + 2941739604, + 1864720513, + 1001549772, + 3571932590, + 2837022153, + 3111394295, + 2930402870, + 336637292, + 201524449, + 3792470956, + 1441035357, + 4088850212, + 348517569, + 1099546100, + 2693113219, + 1302022858, + 2597824709, + 1460682945, + 3795402757, + 832670163, + 2161598456, + 272941335, + 1956615701, + 4289834837, + 3974568319, + 3129120079, + 2835024892, + 1535440269, + 2764283800, + 3849170740, + 2532849576, + 1393346290, + 3955100548, + 2176470259, + 1501367983, + 2889172817, + 955590644, + 3424074647, + 2823911740, + 138393248, + 2038338126, + 2195665969, + 1815047195, + 25304805, + 4119242750, + 757734669, + 158431202, + 1990222844, + 928084540, + 866445566, + 603077282, + 289207226, + 323744920, + 1673628820, + 230077529, + 1866750838, + 3762323375, + 1834075343, + 1654283938, + 1040388679, + 71195727, + 1992932072, + 2522787951, + 634128146, + 2876094984, + 415221617, + 1999215147, + 2608063424, + 2815438799, + 1530715007, + 2294075964, + 2566134908, + 490172150, + 1058618652, + 2651555573, + 704241932, + 3104613119, + 1307172836, + 77093844, + 615001013, + 2779210409, + 1313973035, + 2762574899, + 3074898898, + 441858423, + 2877948316, + 1094647799, + 3413922445, + 2378611449, + 329721039, + 2913598359, + 2864015854, + 3519308163, + 1729105743, + 1638298152, + 395083479, + 2106960342, + 983494394, + 611499992, + 1835906434, + 2727628623, + 2631083332, + 515509616, + 1452543625, + 2423944126, + 3700294992, + 3518701814, + 802711260, ]; static final String privateKeyFCM = String.fromCharCodes(List.generate( @@ -9238,459 +9274,459 @@ final class _Env { ).map((int i) => _envieddataprivateKeyFCM[i] ^ _enviedkeyprivateKeyFCM[i])); static const List _enviedkeywhatsapp = [ - 3025561408, - 2323768621, - 356160161, - 666624782, - 778591805, - 3215990109, - 1055135638, - 4230266310, - 126980174, - 983266223, - 2616239604, - 1398312905, - 3346561878, - 1317761850, - 420174868, - 3872420229, - 2144314412, - 1917925878, - 2771737144, - 434108975, - 3414147073, - 3193880414, - 2613696913, - 2189462405, - 407966081, - 1192783238, - 4177683614, - 718365242, - 4130926169, - 575217556, - 1384015408, - 2680683728, - 677608150, - 289069585, - 2624809177, - 353025099, - 1864743899, - 2278467233, - 126217184, - 3646743744, - 3832614672, - 1564447383, - 1434060370, - 3530015861, - 1804784803, - 943038022, - 3499407697, - 417839580, - 758645048, - 1894929736, - 1811590496, - 462002243, - 1722203009, - 4109420527, - 3395073550, - 2617569628, - 1228698267, - 2855844428, - 2346247699, - 2201628840, - 4037051392, - 1264122642, - 626047152, - 3435795320, - 2911182710, - 2630435326, - 2501994567, - 1244537161, - 2328860051, - 2648089134, - 1537685598, - 44369162, - 1692982937, - 3375327180, - 356834344, - 3070595931, - 2254674799, - 3892002829, - 47846027, - 3571821591, - 509393255, - 2123413397, - 1150817648, - 1006683867, - 4153747148, - 555290137, - 1770933901, - 794702483, - 3437352889, - 1368828532, - 23479437, - 1493879357, - 2132541480, - 190129794, - 2844601511, - 1655954878, - 432930106, - 4276653127, - 2329911425, - 1138308115, - 802900041, - 2969240477, - 2001434546, - 1975177370, - 1342778095, - 4084127286, - 2248188416, - 1070408410, - 2625360333, - 1931812403, - 3055374845, - 4145098109, - 2301869824, - 1466773213, - 2061231104, - 2522323510, - 1237056439, - 3025985308, - 4025252804, - 3835372717, - 357071643, - 2870689093, - 2970532822, - 131622512, - 4076922141, - 3078299387, - 1214310937, - 543720077, - 2074428609, - 1945888148, - 2447129460, - 942198481, - 3108992571, - 176767961, - 3532882768, - 2025111097, - 3929911050, - 719395109, - 1611617221, - 2260385028, - 324733287, - 1230534229, - 605040172, - 2782642333, - 3338377597, - 1583120922, - 1294550573, - 3444233991, - 320318449, - 3171069445, - 3341139326, - 2198923770, - 2906922107, - 3382038025, - 3952009712, - 2784113636, - 1958464738, - 3996740744, - 225648863, - 441050275, - 3223906212, - 986643040, - 2817847590, - 4094943907, - 1480385004, - 1798561602, - 2485988791, - 1676711418, - 3874964083, - 361542232, - 1651181911, - 1097360374, - 1415065677, - 1341580835, - 4087593513, - 864228650, - 2559406237, - 292639666, - 1059531576, - 1747382060, - 3347882355, - 1591396651, - 2328692428, - 3754873219, - 4157867242, - 3085109460, - 1228936804, - 11002725, - 12778944, - 2760974189, - 779153244, - 392181995, - 603104650, - 625274119, - 3979498036, - 1655186590, - 3718743488, - 4200298896, - 1027700300, - 689819993, - 3016459165, - 1945704930, - 2573791346, - 3460145037, - 687405377, - 3418674358, - 3916024870, - 779969407, - 15515983, - 2371212836, - 988293593, - 3905288316, - 3997187889, - 289996724, - 1977452052, - 402836494, - 919669584, - 1489589580, - 1557158588, - 585431070, - 1142348927, - 3845329337, - 1688693198, - 1401810212, - 598776959, + 2195178301, + 3209380850, + 1354557741, + 3929837379, + 1591686318, + 4071448521, + 3185014801, + 2843870169, + 4138568645, + 4151498043, + 2009638225, + 1788134088, + 692552165, + 1814325043, + 74171917, + 125768942, + 699397262, + 386340904, + 1662558290, + 2127416697, + 585544007, + 1965711064, + 1685593387, + 3809982822, + 1429440299, + 2822552659, + 682862704, + 2900742296, + 1315219140, + 2568147650, + 3433092805, + 2096720512, + 3558503385, + 3030328327, + 3978098942, + 2207533466, + 958706050, + 2404477182, + 4010028186, + 1254763188, + 2880760711, + 4232257065, + 2886911806, + 2223199226, + 1440935776, + 3660652774, + 1159627196, + 2870001472, + 90361961, + 3674388050, + 395337328, + 2431151023, + 372277701, + 24261392, + 3891421216, + 3397668061, + 862485094, + 3961829532, + 2293076854, + 2540450332, + 2677209958, + 432765038, + 1667396322, + 3809917285, + 3301074614, + 1274683329, + 1248313923, + 22214291, + 1711065323, + 2113754018, + 164312308, + 363863883, + 2238507626, + 2591288262, + 3960354826, + 2018244503, + 3477557962, + 1704464098, + 2877525932, + 257901994, + 1816659461, + 4229879381, + 3489093377, + 551393958, + 2537805475, + 1897371090, + 2763877329, + 1996277607, + 2399098915, + 1121715459, + 3614002814, + 2357512223, + 1296599339, + 1879213339, + 2923557284, + 421747258, + 4276033811, + 3304851021, + 1705047204, + 1995359807, + 2423007263, + 196793214, + 2222802126, + 779165875, + 3944609229, + 1600819663, + 958509817, + 1458920477, + 1557043792, + 4017603323, + 1921251172, + 3416801714, + 692142935, + 2175162433, + 1708936620, + 1755875901, + 3212952007, + 3701352111, + 2496150072, + 1852492092, + 3008159071, + 3127938689, + 3924346392, + 2965283356, + 2520654939, + 1887806822, + 4082420582, + 3786680357, + 389645735, + 1102559840, + 3433447458, + 1831088100, + 3654951710, + 3885368661, + 1820711043, + 2316653757, + 859130893, + 284201899, + 2775377843, + 2134107539, + 2511195831, + 1326689378, + 1768277617, + 1227335424, + 3034173561, + 4129615929, + 3071108492, + 2054831300, + 129591603, + 3567725506, + 3214497052, + 453068456, + 59334561, + 3676086223, + 693176829, + 301127476, + 1208826363, + 2521489431, + 611371415, + 1277900119, + 546156606, + 749490027, + 3111892475, + 5222637, + 2717236262, + 428555533, + 1624443954, + 2469656005, + 1567989936, + 947776256, + 597957949, + 3774420439, + 3528075689, + 3000608003, + 979036119, + 4022838460, + 3869851866, + 2585506398, + 3297419369, + 4096822531, + 3785166482, + 1241855345, + 3382265108, + 2071876894, + 3774296598, + 1859545063, + 48690547, + 2448172526, + 508575221, + 3079528144, + 2126566410, + 3719512705, + 3567964726, + 387031529, + 2940653106, + 4072585693, + 2710228746, + 1776950620, + 3178200575, + 159674039, + 386365052, + 1027281953, + 3038099569, + 1048572713, + 1770522600, + 1825291100, + 4197445491, + 2879263647, + 3866415307, + 3743397482, + 2882999645, + 3727700660, + 2370802571, + 4274588782, + 3006185657, + 814187990, + 2829073772, + 2988525058, + 1605832067, + 1320167835, + 3924541678, + 2238305706, + 978901059, + 1333890184, + 3405197759, ]; static const List _envieddatawhatsapp = [ - 3025561349, - 2323768684, - 356160224, - 666624833, - 778591817, - 3215990079, - 1055135692, - 4230266244, - 126980125, - 983266298, - 2616239551, - 1398312958, - 3346561890, - 1317761912, - 420174939, - 3872420351, - 2144314491, - 1917925839, - 2771737153, - 434109005, - 3414147126, - 3193880426, - 2613696980, - 2189462498, - 407966144, - 1192783350, - 4177683663, - 718365283, - 4130926125, - 575217629, - 1384015368, - 2680683752, - 677608120, - 289069640, - 2624809133, - 353025038, - 1864743906, - 2278467275, - 126217137, - 3646743721, - 3832614697, - 1564447430, - 1434060348, - 3530015801, - 1804784868, - 943038006, - 3499407654, - 417839599, - 758645118, - 1894929689, - 1811590416, - 462002208, - 1722203060, - 4109420427, - 3395073654, - 2617569557, - 1228698359, - 2855844360, - 2346247796, - 2201628926, - 4037051466, - 1264122728, - 626047187, - 3435795253, - 2911182607, - 2630435209, - 2501994498, - 1244537099, - 2328860130, - 2648089184, - 1537685511, - 44369260, - 1692982954, - 3375327167, - 356834320, - 3070595883, - 2254674692, - 3892002918, - 47846077, - 3571821684, - 509393213, - 2123413463, - 1150817605, - 1006683786, - 4153747196, - 555290221, - 1770933990, - 794702552, - 3437352908, - 1368828455, - 23479490, - 1493879399, - 2132541546, - 190129905, - 2844601576, - 1655954888, - 432930167, - 4276653085, - 2329911488, - 1138308128, - 802899997, - 2969240574, - 2001434566, - 1975177458, - 1342778079, - 4084127359, - 2248188524, - 1070408344, - 2625360261, - 1931812448, - 3055374748, - 4145098032, - 2301869910, - 1466773161, - 2061231203, - 2522323556, - 1237056493, - 3025985375, - 4025252791, - 3835372748, - 357071695, - 2870689038, - 2970532760, - 131622435, - 4076922184, - 3078299275, - 1214311039, - 543720129, - 2074428563, - 1945888211, - 2447129382, - 942198451, - 3108992523, - 176767915, - 3532882744, - 2025111157, - 3929911151, - 719395167, - 1611617163, - 2260385090, - 324733195, - 1230534201, - 605040220, - 2782642372, - 3338377535, - 1583121021, - 1294550592, - 3444234089, - 320318359, - 3171069543, - 3341139222, - 2198923695, - 2906922010, - 3382038131, - 3952009635, - 2784113598, - 1958464672, - 3996740817, - 225648775, - 441050311, - 3223906262, - 986643028, - 2817847574, - 4094943949, - 1480384897, - 1798561548, - 2485988739, - 1676711339, - 3874964022, - 361542207, - 1651181856, - 1097360275, - 1415065606, - 1341580817, - 4087593548, - 864228699, - 2559406276, - 292639715, - 1059531606, - 1747382136, - 3347882279, - 1591396709, - 2328692409, - 3754873329, - 4157867155, - 3085109376, - 1228936747, - 11002652, - 12778882, - 2760974086, - 779153175, - 392181937, - 603104712, - 625274166, - 3979498105, - 1655186630, - 3718743437, - 4200298983, - 1027700346, - 689819916, - 3016459178, - 1945704883, - 2573791260, - 3460145113, - 687405331, - 3418674407, - 3916024930, - 779969287, - 15515911, - 2371212870, - 988293516, - 3905288234, - 3997187933, - 289996741, - 1977452147, - 402836551, - 919669506, - 1489589528, - 1557158606, - 585431158, - 1142348830, - 3845329366, - 1688693153, - 1401810302, - 598776891, + 2195178360, + 3209380787, + 1354557804, + 3929837324, + 1591686362, + 4071448491, + 3185014859, + 2843870107, + 4138568598, + 4151498094, + 2009638170, + 1788134143, + 692552145, + 1814325105, + 74171970, + 125768852, + 699397337, + 386340881, + 1662558251, + 2127416603, + 585544048, + 1965711084, + 1685593454, + 3809982721, + 1429440362, + 2822552611, + 682862625, + 2900742337, + 1315219120, + 2568147595, + 3433092861, + 2096720568, + 3558503351, + 3030328414, + 3978098826, + 2207533535, + 958706107, + 2404477076, + 4010028235, + 1254763229, + 2880760766, + 4232257144, + 2886911824, + 2223199158, + 1440935719, + 3660652694, + 1159627211, + 2870001523, + 90361903, + 3674387971, + 395337216, + 2431151052, + 372277744, + 24261492, + 3891421272, + 3397667988, + 862485002, + 3961829592, + 2293076753, + 2540450378, + 2677209900, + 432764948, + 1667396225, + 3809917224, + 3301074639, + 1274683318, + 1248313862, + 22214353, + 1711065242, + 2113754092, + 164312237, + 363863853, + 2238507609, + 2591288245, + 3960354866, + 2018244583, + 3477557921, + 1704464009, + 2877525914, + 257902025, + 1816659551, + 4229879319, + 3489093428, + 551394039, + 2537805459, + 1897371046, + 2763877306, + 1996277548, + 2399098966, + 1121715536, + 3614002737, + 2357512261, + 1296599401, + 1879213416, + 2923557355, + 421747276, + 4276033886, + 3304850967, + 1705047269, + 1995359756, + 2423007307, + 196793117, + 2222802106, + 779165915, + 3944609277, + 1600819590, + 958509717, + 1458920543, + 1557043736, + 4017603240, + 1921251077, + 3416801791, + 692142849, + 2175162421, + 1708936655, + 1755875951, + 3212951965, + 3701352172, + 2496150091, + 1852492125, + 3008158987, + 3127938762, + 3924346454, + 2965283407, + 2520654862, + 1887806742, + 4082420480, + 3786680425, + 389645813, + 1102559783, + 3433447536, + 1831088006, + 3654951726, + 3885368615, + 1820711147, + 2316653809, + 859130984, + 284201937, + 2775377917, + 2134107605, + 2511195867, + 1326689294, + 1768277505, + 1227335513, + 3034173499, + 4129615966, + 3071108577, + 2054831274, + 129591637, + 3567725472, + 3214497140, + 453068541, + 59334592, + 3676086197, + 693176750, + 301127534, + 1208826297, + 2521489486, + 611371471, + 1277900083, + 546156620, + 749490015, + 3111892427, + 5222531, + 2717236299, + 428555587, + 1624443910, + 2469655956, + 1567990005, + 947776359, + 597957962, + 3774420402, + 3528075746, + 3000608049, + 979036082, + 4022838477, + 3869851779, + 2585506319, + 3297419271, + 4096822615, + 3785166534, + 1241855295, + 3382265185, + 2071876972, + 3774296687, + 1859545011, + 48690492, + 2448172439, + 508575159, + 3079528123, + 2126566465, + 3719512795, + 3567964788, + 387031512, + 2940653183, + 4072585605, + 2710228807, + 1776950571, + 3178200521, + 159674082, + 386365003, + 1027282032, + 3038099487, + 1048572797, + 1770522554, + 1825291021, + 4197445431, + 2879263719, + 3866415235, + 3743397384, + 2882999560, + 3727700706, + 2370802663, + 4274588703, + 3006185694, + 814187935, + 2829073726, + 2988525142, + 1605832177, + 1320167923, + 3924541583, + 2238305733, + 978901036, + 1333890258, + 3405197819, ]; static final String whatsapp = String.fromCharCodes(List.generate( @@ -9700,41 +9736,41 @@ final class _Env { ).map((int i) => _envieddatawhatsapp[i] ^ _enviedkeywhatsapp[i])); static const List _enviedkeywhatappID = [ - 3986785044, - 2736871244, - 4112484257, - 2666598803, - 1604302721, - 4205751762, - 314018622, - 4134815961, - 1542145417, - 3779008278, - 2945363415, - 2128114738, - 3129174119, - 3443807213, - 1679513943, - 540596746, + 989542896, + 1312943830, + 4249780588, + 662508841, + 2421555065, + 459150042, + 3082103575, + 3384119932, + 1156738938, + 1133581554, + 4137434583, + 3461970751, + 1388535488, + 304993762, + 356632629, + 253112440, ]; static const List _envieddatawhatappID = [ - 3986785063, - 2736871290, - 4112484248, - 2666598826, - 1604302770, - 4205751787, - 314018569, - 4134815978, - 1542145471, - 3779008292, - 2945363439, - 2128114691, - 3129174102, - 3443807189, - 1679513952, - 540596787, + 989542851, + 1312943840, + 4249780565, + 662508816, + 2421555018, + 459150051, + 3082103584, + 3384119887, + 1156738892, + 1133581504, + 4137434607, + 3461970702, + 1388535537, + 304993754, + 356632578, + 253112385, ]; static final String whatappID = String.fromCharCodes(List.generate( @@ -9744,65 +9780,65 @@ final class _Env { ).map((int i) => _envieddatawhatappID[i] ^ _enviedkeywhatappID[i])); static const List _enviedkeyserverPHP = [ - 2472738920, - 2747270090, - 530204703, - 2094874978, - 1843593077, - 3720021712, - 2806824956, - 2157844549, - 2649729433, - 4278176769, - 1896092159, - 2188939373, - 758094488, - 2204685383, - 3091896340, - 3451924279, - 2605031547, - 2620956915, - 3895781643, - 3294561142, - 658791778, - 755986472, - 2994627375, - 1681570669, - 3240736201, - 640069667, - 2185936386, - 245963436, + 1596386464, + 4184763474, + 3336799785, + 2511532898, + 1073383562, + 2680352819, + 6213250, + 3028870952, + 3765838608, + 667045674, + 2389685740, + 1318393649, + 3558916360, + 3107718237, + 1941477742, + 3568196280, + 550152871, + 3861822687, + 3516485351, + 3801468140, + 688236691, + 1449136176, + 3798082515, + 523384365, + 3379327226, + 1465957842, + 1673525064, + 3992363005, ]; static const List _envieddataserverPHP = [ - 2472738816, - 2747270078, - 530204779, - 2094874898, - 1843592966, - 3720021738, - 2806824915, - 2157844586, - 2649729528, - 4278176881, - 1896092054, - 2188939331, - 758094571, - 2204685346, - 3091896434, - 3451924306, - 2605031433, - 2620956893, - 3895781735, - 3294561055, - 658791700, - 755986509, - 2994627328, - 1681570590, - 3240736172, - 640069701, - 2185936487, - 245963486, + 1596386504, + 4184763430, + 3336799837, + 2511532818, + 1073383673, + 2680352777, + 6213293, + 3028870919, + 3765838705, + 667045722, + 2389685637, + 1318393631, + 3558916475, + 3107718200, + 1941477640, + 3568196317, + 550152917, + 3861822705, + 3516485259, + 3801468037, + 688236773, + 1449136213, + 3798082556, + 523384414, + 3379327135, + 1465957812, + 1673525037, + 3992362895, ]; static final String serverPHP = String.fromCharCodes(List.generate( @@ -9812,77 +9848,77 @@ final class _Env { ).map((int i) => _envieddataserverPHP[i] ^ _enviedkeyserverPHP[i])); static const List _enviedkeyseferAlexandriaServer = [ - 3265827787, - 4121061793, - 750456165, - 2607805150, - 1179894246, - 2065645615, - 2746892108, - 1848357661, - 597181889, - 2583656390, - 2757194038, - 1632562145, - 73294891, - 3593694684, - 2065540042, - 634644236, - 2228138870, - 4110457591, - 2703797041, - 826256544, - 1837099710, - 3946001248, - 163395287, - 2392928180, - 3018446499, - 1804584686, - 2276919964, - 775925618, - 1384768762, - 3411304539, - 1715869946, - 4001759312, - 512091137, - 2596666383, + 3358548595, + 2512426865, + 4211675632, + 736757099, + 4035970416, + 275731637, + 1556924929, + 229626338, + 2020624319, + 3797804671, + 2355630569, + 2593772477, + 2607101885, + 3119099041, + 2061692935, + 1999953759, + 2475610928, + 2999190758, + 1098196106, + 583762613, + 4184420487, + 2880339752, + 3518760739, + 2052354987, + 3672884492, + 2288706798, + 960697452, + 1237051374, + 4091542731, + 2885104159, + 3611912999, + 3730363361, + 3160794307, + 4128967402, ]; static const List _envieddataseferAlexandriaServer = [ - 3265827747, - 4121061845, - 750456081, - 2607805102, - 1179894165, - 2065645589, - 2746892131, - 1848357682, - 597181874, - 2583656355, - 2757194064, - 1632562052, - 73294937, - 3593694653, - 2065540006, - 634644329, - 2228138766, - 4110457494, - 2703797087, - 826256580, - 1837099724, - 3946001161, - 163395254, - 2392928154, - 3018446544, - 1804584583, - 2276920040, - 775925527, - 1384768725, - 3411304488, - 1715869855, - 4001759286, - 512091236, - 2596666493, + 3358548507, + 2512426757, + 4211675524, + 736757019, + 4035970307, + 275731599, + 1556924974, + 229626317, + 2020624332, + 3797804570, + 2355630479, + 2593772504, + 2607101903, + 3119099072, + 2061693035, + 1999953722, + 2475610952, + 2999190663, + 1098196196, + 583762641, + 4184420597, + 2880339777, + 3518760770, + 2052354949, + 3672884607, + 2288706695, + 960697368, + 1237051275, + 4091542756, + 2885104236, + 3611913026, + 3730363271, + 3160794278, + 4128967320, ]; static final String seferAlexandriaServer = String.fromCharCodes( @@ -9895,61 +9931,61 @@ final class _Env { _enviedkeyseferAlexandriaServer[i])); static const List _enviedkeyseferPaymentServer = [ - 1539147028, - 3419442361, - 2193515577, - 1464976166, - 2045946494, - 2470982050, - 252423899, - 1425711015, - 2371246273, - 394688319, - 2409929519, - 3217293867, - 2250188323, - 2743349979, - 465211813, - 3448772359, - 1359468109, - 1517312955, - 540332072, - 33389907, - 2758738093, - 1883668266, - 2925870890, - 2543051506, - 139801819, - 144826348, + 2536778377, + 914589121, + 4294383065, + 4187691988, + 1313379883, + 3096121362, + 2467489969, + 1785568245, + 2023741290, + 1558192803, + 4020226669, + 1287675149, + 3596015768, + 3697427363, + 3726876343, + 3117159911, + 314938860, + 1092767539, + 1505217695, + 714664040, + 2209431449, + 2772347254, + 1664626586, + 298494882, + 975206623, + 415930237, ]; static const List _envieddataseferPaymentServer = [ - 1539147132, - 3419442381, - 2193515597, - 1464976214, - 2045946381, - 2470982040, - 252423924, - 1425710984, - 2371246258, - 394688346, - 2409929545, - 3217293902, - 2250188369, - 2743349931, - 465211858, - 3448772393, - 1359468094, - 1517312979, - 540332103, - 33389859, - 2758738050, - 1883668313, - 2925870927, - 2543051412, - 139801790, - 144826270, + 2536778465, + 914589109, + 4294383021, + 4187691940, + 1313379928, + 3096121384, + 2467489950, + 1785568218, + 2023741209, + 1558192838, + 4020226571, + 1287675240, + 3596015850, + 3697427411, + 3726876352, + 3117159881, + 314938783, + 1092767579, + 1505217776, + 714663960, + 2209431478, + 2772347141, + 1664626687, + 298494916, + 975206586, + 415930127, ]; static final String seferPaymentServer = String.fromCharCodes( @@ -9961,95 +9997,95 @@ final class _Env { _envieddataseferPaymentServer[i] ^ _enviedkeyseferPaymentServer[i])); static const List _enviedkeyseferCairoServer = [ - 371938988, - 2498499501, - 3783736000, - 1705493421, - 880641856, - 2230861477, - 3285702681, - 4048653233, - 1035997457, - 2597978483, - 192571604, - 890551245, - 2310061030, - 1653487990, - 1984362240, - 379753372, - 910739194, - 1279722643, - 1483138613, - 1256069188, - 3681776588, - 3296418708, - 1951846389, - 1324207265, - 664766432, - 2839667729, - 4095367365, - 64439362, - 1898467721, - 65776023, - 2707517083, - 1226879812, - 2284504142, - 2876599676, - 362624477, - 928548031, - 3722299269, - 1902925794, - 2647321428, - 2961123914, - 1611069642, - 3782156464, - 2066475514, + 696334204, + 82205298, + 3710476921, + 4092767670, + 2190067332, + 1670086747, + 1381900254, + 1688623029, + 2013479453, + 1171258800, + 2598200499, + 2895700044, + 3077488725, + 121049537, + 882201803, + 2605480560, + 3705670814, + 1493938047, + 193485687, + 1588057356, + 215003196, + 1980543392, + 2593350780, + 696663381, + 1099553710, + 2824766986, + 1273774926, + 389654838, + 2798992030, + 3843201537, + 2443362958, + 2887005875, + 2521267288, + 162322523, + 2110833538, + 2692111954, + 1533322716, + 3324903079, + 77020491, + 116375034, + 3205463677, + 87462844, + 3463747915, ]; static const List _envieddataseferCairoServer = [ - 371939012, - 2498499545, - 3783735988, - 1705493469, - 880641843, - 2230861471, - 3285702710, - 4048653214, - 1035997538, - 2597978390, - 192571558, - 890551227, - 2310060931, - 1653487876, - 1984362286, - 379753455, - 910739103, - 1279722741, - 1483138640, - 1256069174, - 3681776610, - 3296418808, - 1951846300, - 1324207319, - 664766341, - 2839667774, - 4095367350, - 64439335, - 1898467823, - 65776114, - 2707517161, - 1226879850, - 2284504109, - 2876599568, - 362624436, - 928548060, - 3722299374, - 1902925773, - 2647321383, - 2961123887, - 1611069612, - 3782156501, - 2066475400, + 696334100, + 82205190, + 3710476813, + 4092767686, + 2190067447, + 1670086753, + 1381900273, + 1688623002, + 2013479534, + 1171258837, + 2598200513, + 2895700026, + 3077488688, + 121049523, + 882201829, + 2605480451, + 3705670907, + 1493937945, + 193485586, + 1588057470, + 215003154, + 1980543436, + 2593350677, + 696663331, + 1099553739, + 2824767013, + 1273774909, + 389654867, + 2798992120, + 3843201636, + 2443363068, + 2887005853, + 2521267259, + 162322487, + 2110833643, + 2692111921, + 1533322679, + 3324903048, + 77020472, + 116374943, + 3205463579, + 87462873, + 3463747897, ]; static final String seferCairoServer = String.fromCharCodes( @@ -10061,69 +10097,69 @@ final class _Env { _envieddataseferCairoServer[i] ^ _enviedkeyseferCairoServer[i])); static const List _enviedkeyseferGizaServer = [ - 3826712174, - 526453230, - 2251274695, - 1595889605, - 3746006334, - 2153520765, - 332690803, - 2066735898, - 2840013457, - 3907630384, - 3309681870, - 3378566877, - 1416402180, - 1831808436, - 1823261786, - 2191795304, - 2296922851, - 1472350032, - 2542303850, - 1194568401, - 2502929361, - 352536437, - 1933876455, - 2565241641, - 3070395187, - 1189985959, - 1653469745, - 3375817915, - 1668307583, - 1816884720, + 1896330948, + 2817987802, + 3416139627, + 1186349963, + 1973864273, + 2421814679, + 3267349214, + 366331080, + 3924450237, + 2494709682, + 361900306, + 609805057, + 2425514810, + 4085913011, + 723237017, + 4232595940, + 1644502061, + 1329346891, + 104712329, + 325616937, + 1372199061, + 939642319, + 2936220426, + 88034485, + 3569749753, + 628084804, + 937654873, + 3155284282, + 4070949377, + 2727816229, ]; static const List _envieddataseferGizaServer = [ - 3826712070, - 526453146, - 2251274675, - 1595889589, - 3746006349, - 2153520711, - 332690780, - 2066735925, - 2840013558, - 3907630425, - 3309681844, - 3378566844, - 1416402295, - 1831808465, - 1823261756, - 2191795213, - 2296922769, - 1472350078, - 2542303749, - 1194568383, - 2502929341, - 352536348, - 1933876361, - 2565241676, - 3070395164, - 1189986004, - 1653469780, - 3375817949, - 1668307482, - 1816884610, + 1896330924, + 2817987758, + 3416139551, + 1186350075, + 1973864226, + 2421814701, + 3267349233, + 366331111, + 3924450266, + 2494709723, + 361900392, + 609805152, + 2425514825, + 4085913046, + 723237119, + 4232595841, + 1644502111, + 1329346917, + 104712422, + 325616967, + 1372199161, + 939642278, + 2936220516, + 88034512, + 3569749718, + 628084791, + 937654844, + 3155284316, + 4070949476, + 2727816279, ]; static final String seferGizaServer = String.fromCharCodes(List.generate( @@ -10134,125 +10170,125 @@ final class _Env { (int i) => _envieddataseferGizaServer[i] ^ _enviedkeyseferGizaServer[i])); static const List _enviedkeychatGPTkeySeferNew = [ - 2310821620, - 4262628293, - 4007677812, - 1754532038, - 2587172012, - 2553933741, - 580318759, - 2222490254, - 2112368516, - 2747367648, - 1967871554, - 621769370, - 2929929630, - 3900633438, - 2774643298, - 2964843539, - 176299148, - 1760684446, - 1806029644, - 2934655005, - 1905058320, - 2601608646, - 2667627488, - 882654575, - 976683972, - 2127139060, - 3652061753, - 3818360904, - 1621376385, - 3626202257, - 2020947824, - 1892935680, - 1215030387, - 286090278, - 2595120709, - 3896263733, - 3743069055, - 2420576011, - 4044917159, - 2064939498, - 1983205551, - 3778897974, - 3670230793, - 1092828377, - 4083890247, - 2527874757, - 2032947878, - 2403589549, - 2590449503, - 1584881502, - 1654978230, - 3061169779, - 772648723, - 1640004409, - 1095083508, - 9794723, - 2043072971, - 600808776, + 3466533538, + 2038222324, + 424905249, + 657497677, + 318605853, + 25823056, + 2122702942, + 3276918720, + 229974915, + 313873793, + 66707537, + 2125062029, + 418011015, + 3286523022, + 3874869365, + 1738222491, + 1832141258, + 3991814487, + 1394206019, + 1362842969, + 2048833378, + 549182735, + 2582344274, + 3862745041, + 485631606, + 3396351541, + 3395759411, + 3923657519, + 2485452191, + 3450575002, + 51239110, + 701696952, + 169855577, + 2101939952, + 386881292, + 3931378865, + 1788305527, + 2140319768, + 915405024, + 2168797947, + 965441877, + 864489716, + 2459344062, + 4073375293, + 2027821373, + 3854161652, + 4247545755, + 2368242223, + 4156535058, + 4190459134, + 146823609, + 274418455, + 926108913, + 1213802406, + 1505340403, + 4248083829, + 283157476, + 1905871628, ]; static const List _envieddatachatGPTkeySeferNew = [ - 2310821518, - 4262628258, - 4007677785, - 1754531996, - 2587171992, - 2553933762, - 580318822, - 2222490308, - 2112368615, - 2747367585, - 1967871504, - 621769429, - 2929929721, - 3900633360, - 2774643258, - 2964843641, - 176299243, - 1760684524, - 1806029577, - 2934655060, - 1905058373, - 2601608702, - 2667627398, - 882654500, - 976683911, - 2127139021, - 3652061793, - 3818360890, - 1621376505, - 3626202358, - 2020947749, - 1892935749, - 1215030343, - 286090359, - 2595120689, - 3896263751, - 3743068941, - 2420576103, - 4044917206, - 2064939483, - 1983205590, - 3778898015, - 3670230908, - 1092828321, - 4083890295, - 2527874735, - 2032947946, - 2403589534, - 2590449467, - 1584881431, - 1654978274, - 3061169696, - 772648779, - 1640004427, - 1095083436, - 9794767, - 2043072905, - 600808740, + 3466533592, + 2038222227, + 424905228, + 657497623, + 318605865, + 25823039, + 2122702879, + 3276918666, + 229975008, + 313873856, + 66707459, + 2125062082, + 418011104, + 3286523072, + 3874869293, + 1738222577, + 1832141229, + 3991814437, + 1394205958, + 1362842896, + 2048833335, + 549182775, + 2582344244, + 3862744986, + 485631541, + 3396351500, + 3395759467, + 3923657565, + 2485452263, + 3450575101, + 51239059, + 701697021, + 169855597, + 2101939873, + 386881400, + 3931378883, + 1788305413, + 2140319860, + 915404945, + 2168797898, + 965441836, + 864489629, + 2459344075, + 4073375301, + 2027821325, + 3854161566, + 4247545815, + 2368242204, + 4156535158, + 4190459063, + 146823661, + 274418500, + 926108841, + 1213802452, + 1505340331, + 4248083737, + 283157414, + 1905871712, ]; static final String chatGPTkeySeferNew = String.fromCharCodes( @@ -10264,103 +10300,103 @@ final class _Env { _envieddatachatGPTkeySeferNew[i] ^ _enviedkeychatGPTkeySeferNew[i])); static const List _enviedkeycohere = [ - 1552967563, - 3361714149, - 2653196213, - 1531074283, - 2639449724, - 2925615790, - 4206661883, - 3773448825, - 1845085092, - 498591768, - 3683673965, - 716865708, - 2857001967, - 1868526277, - 3528996808, - 2211617674, - 2752598874, - 2389463698, - 3419493870, - 1261531995, - 3527632211, - 664571980, - 1326729145, - 2614810509, - 1980900098, - 2833775047, - 3995010436, - 2621413539, - 3350749339, - 2576865571, - 2786609633, - 1561919608, - 85142922, - 609465871, - 2561697680, - 3006904376, - 1809669930, - 3343822536, - 1131877042, - 1989880281, - 3647013051, - 2646548472, - 1657778973, - 870182025, - 3326538762, - 603263146, - 4004131578, + 461114257, + 1909279421, + 2571976523, + 3833424498, + 4108484119, + 2763189153, + 1555394195, + 768191425, + 2583342941, + 2986819785, + 3554360607, + 904530186, + 3674480823, + 511161046, + 2903018933, + 2034412479, + 1318265865, + 210960433, + 2648764878, + 1081389400, + 815968213, + 1680999960, + 3705188975, + 3217580678, + 3395565768, + 3707066727, + 2457012709, + 3196855878, + 1223377586, + 4269901275, + 2145367579, + 2084645856, + 919445276, + 887658305, + 39983299, + 2766187929, + 3565171062, + 3226295112, + 2524509497, + 4176116153, + 3325311635, + 2760789061, + 3596276175, + 2939813184, + 3655446295, + 139494125, + 3949175622, ]; static const List _envieddatacohere = [ - 1552967626, - 3361714064, - 2653196249, - 1531074204, - 2639449624, - 2925615766, - 4206661762, - 3773448780, - 1845085175, - 498591816, - 3683673914, - 716865731, - 2857001884, - 1868526325, - 3528996768, - 2211617728, - 2752598834, - 2389463806, - 3419493801, - 1261532011, - 3527632167, - 664571939, - 1326729196, - 2614810603, - 1980900154, - 2833775008, - 3995010507, - 2621413579, - 3350749390, - 2576865654, - 2786609555, - 1561919496, - 85143020, - 609465914, - 2561697729, - 3006904330, - 1809670014, - 3343822488, - 1131877087, - 1989880207, - 3647013116, - 2646548384, - 1657779055, - 870182097, - 3326538854, - 603263208, - 4004131478, + 461114320, + 1909279432, + 2571976487, + 3833424389, + 4108484211, + 2763189145, + 1555394282, + 768191476, + 2583342862, + 2986819737, + 3554360648, + 904530277, + 3674480836, + 511161062, + 2903018973, + 2034412533, + 1318265953, + 210960477, + 2648764809, + 1081389416, + 815968161, + 1681000055, + 3705188922, + 3217580768, + 3395565808, + 3707066624, + 2457012650, + 3196855854, + 1223377639, + 4269901198, + 2145367657, + 2084645776, + 919445370, + 887658356, + 39983250, + 2766187947, + 3565170978, + 3226295064, + 2524509524, + 4176116207, + 3325311700, + 2760789021, + 3596276157, + 2939813144, + 3655446395, + 139494063, + 3949175594, ]; static final String cohere = String.fromCharCodes(List.generate( @@ -10370,239 +10406,239 @@ final class _Env { ).map((int i) => _envieddatacohere[i] ^ _enviedkeycohere[i])); static const List _enviedkeyclaudeAiAPI = [ - 3047339884, - 677783528, - 1051275500, - 1281929904, - 2373301271, - 3241431888, - 1444107030, - 1591056626, - 1559310619, - 3092509201, - 3264607451, - 1818434302, - 3602342780, - 1966241010, - 1915741808, - 2003834417, - 2169725552, - 1603001396, - 507791910, - 1861015034, - 806640842, - 131668368, - 833198555, - 3552871777, - 1878886115, - 3798835882, - 2385718920, - 2679429067, - 1335991972, - 1648131177, - 108823842, - 3592590039, - 1582039231, - 845927746, - 1237497178, - 4184886162, - 178158018, - 3000361681, - 459877984, - 1656464903, - 3615337328, - 2494924979, - 4252533849, - 596108167, - 550810368, - 1256871972, - 2770502980, - 502505631, - 2155172458, - 1478616820, - 2124561927, - 709286939, - 3541503742, - 2203870869, - 3196991865, - 4173368898, - 3451600392, - 1234731111, - 1841312008, - 1545485574, - 3590062994, - 1770764324, - 1662785156, - 3368067889, - 1142667470, - 13465057, - 3942845867, - 291177812, - 2683368476, - 4241461511, - 2560660726, - 751071057, - 4038619890, - 808872030, - 3987821115, - 3418995235, - 773770676, - 1767927389, - 1711907531, - 2748159082, - 1339429692, - 4154547564, - 2719584718, - 229676108, - 2103058319, - 1145802456, - 421289320, - 1711864025, - 1537107140, - 1857240031, - 1221407927, - 2241322758, - 4208467934, - 3841374493, - 915360964, - 1177649164, - 3251510340, - 59695745, - 4069687918, - 2037298196, - 3750339311, - 3249022298, - 1512502181, - 3560716673, - 1418398519, - 2123244910, - 579961583, - 1872638196, - 1914423900, - 3824941279, - 918632904, - 1822381846, - 1150101687, - 3614888215, - 2183757766, + 3865518948, + 3691370737, + 153446920, + 2831596722, + 276220260, + 3835327173, + 2029631399, + 1751783204, + 3546570644, + 3223277567, + 2249520572, + 3021181899, + 4217743719, + 3054127439, + 3053149162, + 3407318902, + 2698972141, + 1463864797, + 3473787449, + 3149571604, + 2552911671, + 926290749, + 384126610, + 1186214951, + 2315825860, + 3624681797, + 1335410838, + 1725266679, + 3926100668, + 3167871771, + 155899774, + 3020911388, + 3210585518, + 1945161006, + 3469755727, + 223619508, + 811556885, + 3406051438, + 1257144806, + 512409761, + 2709697942, + 82036611, + 3464715523, + 1487923078, + 2660912469, + 2123828998, + 3927632976, + 3115047666, + 2387112906, + 3451946414, + 2038358785, + 656670454, + 1670023080, + 3545160744, + 3558280203, + 2680808716, + 1863700488, + 3991492399, + 3358198061, + 3173780453, + 974696064, + 2087721129, + 121537675, + 707663622, + 2009141519, + 3454852459, + 1387808088, + 1239033534, + 4184576603, + 458014798, + 2011840473, + 1826021233, + 776086541, + 1101947340, + 565508932, + 405292776, + 1312787214, + 656794198, + 290298861, + 1848376527, + 3931415046, + 2513478435, + 1212901434, + 4115540979, + 88458918, + 2791271761, + 1220140566, + 3518763645, + 1382833174, + 746086992, + 1546012069, + 1083122868, + 3393640872, + 2746504074, + 532953435, + 1027840401, + 2181683573, + 3123978849, + 3599977697, + 3838316380, + 173045403, + 3104850093, + 1404873562, + 3674449953, + 3614418559, + 2511654960, + 1427723575, + 121766171, + 3317988018, + 2951678773, + 4259760746, + 2956466636, + 684482035, + 387203139, + 1017126403, ]; static const List _envieddataclaudeAiAPI = [ - 3047339798, - 677783439, - 1051275457, - 1281929921, - 2373301365, - 3241431859, - 1444107067, - 1591056515, - 1559310701, - 3092509310, - 3264607464, - 1818434247, - 3602342672, - 1966240991, - 1915741704, - 2003834470, - 2169725503, - 1603001420, - 507791983, - 1861014973, - 806640829, - 131668423, - 833198479, - 3552871726, - 1878886041, - 3798835945, - 2385718990, - 2679429001, - 1335992010, - 1648131104, - 108823931, - 3592589956, - 1582039284, - 845927689, - 1237497138, - 4184886260, - 178158011, - 3000361643, - 459877951, - 1656464972, - 3615337254, - 2494925042, - 4252533807, - 596108277, - 550810440, - 1256871945, - 2770503026, - 502505664, - 2155172446, - 1478616750, - 2124561986, - 709286993, - 3541503666, - 2203870883, - 3196991809, - 4173368837, - 3451600471, - 1234731062, - 1841312074, - 1545485646, - 3590063008, - 1770764306, - 1662785259, - 3368067924, - 1142667418, - 13465006, - 3942845926, - 291177753, - 2683368563, - 4241461590, - 2560660611, - 751071030, - 4038619851, - 808871957, - 3987821134, - 3418995308, - 773770718, - 1767927351, - 1711907456, - 2748159033, - 1339429740, - 4154547507, - 2719584655, - 229676152, - 2103058396, - 1145802475, - 421289275, - 1711863948, - 1537107072, - 1857239987, - 1221407957, - 2241322878, - 4208467852, - 3841374500, - 915360928, - 1177649273, - 3251510290, - 59695867, - 4069687809, - 2037298245, - 3750339266, - 3249022231, - 1512502222, - 3560716761, - 1418398568, - 2123244859, - 579961534, - 1872638117, - 1914423821, - 3824941191, - 918632890, - 1822381902, - 1150101723, - 3614888277, - 2183757738, + 3865518878, + 3691370646, + 153446949, + 2831596739, + 276220166, + 3835327142, + 2029631370, + 1751783253, + 3546570722, + 3223277456, + 2249520527, + 3021181938, + 4217743627, + 3054127458, + 3053149074, + 3407318817, + 2698972066, + 1463864741, + 3473787504, + 3149571667, + 2552911680, + 926290794, + 384126662, + 1186215016, + 2315825854, + 3624681734, + 1335410896, + 1725266613, + 3926100690, + 3167871826, + 155899687, + 3020911439, + 3210585573, + 1945161061, + 3469755687, + 223619538, + 811556972, + 3406051348, + 1257144761, + 512409834, + 2709697984, + 82036674, + 3464715637, + 1487923188, + 2660912413, + 2123829035, + 3927632998, + 3115047597, + 2387112958, + 3451946484, + 2038358852, + 656670396, + 1670023140, + 3545160734, + 3558280243, + 2680808779, + 1863700567, + 3991492478, + 3358198127, + 3173780397, + 974696114, + 2087721119, + 121537764, + 707663715, + 2009141595, + 3454852388, + 1387808021, + 1239033587, + 4184576564, + 458014751, + 2011840428, + 1826021142, + 776086580, + 1101947271, + 565508913, + 405292711, + 1312787300, + 656794172, + 290298790, + 1848376476, + 3931415126, + 2513478524, + 1212901499, + 4115540935, + 88458997, + 2791271778, + 1220140613, + 3518763560, + 1382833234, + 746086972, + 1546012103, + 1083122892, + 3393640954, + 2746504115, + 532953407, + 1027840484, + 2181683491, + 3123978779, + 3599977614, + 3838316301, + 173045430, + 3104850144, + 1404873521, + 3674450041, + 3614418464, + 2511655013, + 1427723622, + 121766218, + 3317988067, + 2951678829, + 4259760664, + 2956466580, + 684481951, + 387203073, + 1017126511, ]; static final String claudeAiAPI = String.fromCharCodes(List.generate( @@ -10612,183 +10648,183 @@ final class _Env { ).map((int i) => _envieddataclaudeAiAPI[i] ^ _enviedkeyclaudeAiAPI[i])); static const List _enviedkeypayPalClientId = [ - 157827227, - 980055857, - 1392824202, - 1043584099, - 119220237, - 274850610, - 3276857482, - 618988149, - 492030981, - 4213209031, - 2356099662, - 4009595131, - 45166983, - 3885470774, - 4251235114, - 3063142316, - 417398428, - 762578659, - 1040913449, - 1852667472, - 684351877, - 2595891374, - 870652307, - 2574933356, - 1394797678, - 1115403867, - 3320079995, - 1986496547, - 1597543444, - 1085196455, - 731899004, - 2537215441, - 1616750133, - 1809294324, - 3224848236, - 4193077249, - 3768109607, - 3126319710, - 3830155626, - 2192514269, - 1186160585, - 3052680609, - 207666731, - 2018252675, - 261209375, - 3538084911, - 3238737074, - 4163539166, - 2608830758, - 2771768854, - 907925113, - 3819725912, - 2609872434, - 2532986066, - 106917266, - 39462904, - 725402915, - 2905971220, - 2050352280, - 1930676874, - 2976853784, - 3365841061, - 3000123028, - 3876756314, - 2290345038, - 1116065089, - 2454636000, - 1183415154, - 347224649, - 1634804597, - 3796639646, - 2555874456, - 1842330175, - 3807545992, - 1978640291, - 4017936189, - 3207541945, - 2039990441, - 1152904994, - 1676789590, - 2407804886, - 3096586556, - 3253153775, - 1741162403, - 2427230299, - 1786814752, - 1602651245, + 1417678867, + 859809472, + 1893866620, + 76147435, + 2344469715, + 27085632, + 1195225715, + 3334407434, + 2270571526, + 3830243977, + 2841189154, + 1406375990, + 2428043550, + 3394915516, + 1529631236, + 3192457920, + 904524636, + 2772367473, + 3581045416, + 3218543009, + 3102449874, + 2543684227, + 600303817, + 1891847041, + 856826713, + 1049355133, + 3672953571, + 389925974, + 55813972, + 3030235698, + 3435846944, + 3855759220, + 760590774, + 2624080268, + 3012415415, + 2143075304, + 3295633911, + 66346832, + 648991051, + 3718256520, + 10021964, + 4280365731, + 2978489502, + 1779750536, + 821551981, + 3363875568, + 3149066482, + 3879034467, + 2339143794, + 590415096, + 1499871715, + 2648064182, + 585275144, + 3000069715, + 4237559885, + 2787035513, + 200871348, + 3036013234, + 1460627235, + 3867857809, + 31809830, + 579752314, + 3008074094, + 502211605, + 269519034, + 3074850116, + 4019892143, + 382952498, + 3557029364, + 2516706871, + 3143765389, + 397362660, + 1352541903, + 2626325733, + 4165782338, + 2706947015, + 2891622639, + 3816666629, + 2977145829, + 2858774920, + 2442731139, + 1271073831, + 3394814892, + 2823537888, + 1253144115, + 1492966545, + 3940162498, ]; static const List _envieddatapayPalClientId = [ - 157827274, - 980055920, - 1392824262, - 1043584026, - 119220320, - 274850654, - 3276857580, - 618988091, - 492031052, - 4213209074, - 2356099610, - 4009595009, - 45167091, - 3885470722, - 4251235161, - 3063142273, - 417398501, - 762578576, - 1040913478, - 1852667434, - 684351923, - 2595891416, - 870652375, - 2574933336, - 1394797617, - 1115403829, - 3320079882, - 1986496635, - 1597543460, - 1085196532, - 731898921, - 2537215397, - 1616750174, - 1809294263, - 3224848179, - 4193077360, - 3768109694, - 3126319624, - 3830155591, - 2192514184, - 1186160558, - 3052680650, - 207666718, - 2018252772, - 261209470, - 3538084962, - 3238737133, - 4163539174, - 2608830844, - 2771768891, - 907925010, - 3819725887, - 2609872390, - 2532986014, - 106917287, - 39462859, - 725402952, - 2905971244, - 2050352333, - 1930676991, - 2976853856, - 3365841146, - 3000123040, - 3876756272, - 2290344971, - 1116065046, - 2454635960, - 1183415094, - 347224610, - 1634804539, - 3796639726, - 2555874496, - 1842330232, - 3807546075, - 1978640372, - 4017936237, - 3207541961, - 2039990496, - 1152905048, - 1676789522, - 2407804816, - 3096586596, - 3253153693, - 1741162491, - 2427230263, - 1786814818, - 1602651137, + 1417678914, + 859809409, + 1893866544, + 76147346, + 2344469694, + 27085612, + 1195225621, + 3334407492, + 2270571599, + 3830244028, + 2841189238, + 1406376012, + 2428043626, + 3394915464, + 1529631351, + 3192457965, + 904524581, + 2772367362, + 3581045447, + 3218543067, + 3102449892, + 2543684341, + 600303757, + 1891847093, + 856826630, + 1049355027, + 3672953490, + 389925902, + 55813988, + 3030235745, + 3435847029, + 3855759104, + 760590813, + 2624080335, + 3012415464, + 2143075225, + 3295633838, + 66346758, + 648991078, + 3718256605, + 10021931, + 4280365768, + 2978489515, + 1779750639, + 821551884, + 3363875517, + 3149066413, + 3879034459, + 2339143720, + 590415061, + 1499871624, + 2648064209, + 585275196, + 3000069663, + 4237559928, + 2787035466, + 200871391, + 3036013194, + 1460627318, + 3867857892, + 31809886, + 579752229, + 3008074074, + 502211711, + 269519103, + 3074850067, + 4019892215, + 382952566, + 3557029279, + 2516706937, + 3143765501, + 397362620, + 1352541832, + 2626325686, + 4165782293, + 2706946967, + 2891622559, + 3816666700, + 2977145759, + 2858774988, + 2442731205, + 1271073919, + 3394814942, + 2823537848, + 1253144159, + 1492966611, + 3940162478, ]; static final String payPalClientId = String.fromCharCodes(List.generate( @@ -10798,181 +10834,181 @@ final class _Env { ).map((int i) => _envieddatapayPalClientId[i] ^ _enviedkeypayPalClientId[i])); static const List _enviedkeypayPalSecret = [ - 3228715044, - 2051726110, - 1877697415, - 3127457581, - 3615094724, - 1457526353, - 1239837242, - 3361634792, - 2040986722, - 4201757197, - 4015770066, - 2645437381, - 686845892, - 1212153542, - 3313108882, - 233966921, - 469681160, - 450984116, - 1589812764, - 589184878, - 2863148407, - 3420344391, - 3092503022, - 154028670, - 3803765070, - 3337247994, - 2446997201, - 2500202470, - 2745282673, - 1001870357, - 2833128243, - 438970259, - 3654680696, - 181067405, - 275072225, - 4103332751, - 3930569602, - 849886007, - 2320005744, - 2730058932, - 2019134895, - 219570416, - 2661633035, - 1446191145, - 678891581, - 2042639538, - 576408586, - 454973475, - 3371775482, - 4077491871, - 4234663361, - 1624669048, - 1494693124, - 3276736269, - 2220108459, - 3761072142, - 494365835, - 1913954630, - 3395727170, - 1530512093, - 2950986345, - 3915950939, - 631514602, - 2661760932, - 3099508198, - 949025659, - 4115677883, - 1081386347, - 3611261531, - 4293502556, - 773010608, - 2811369255, - 3508228625, - 630309135, - 592780484, - 1834000478, - 1841117718, - 3610012083, - 3060506172, - 1441464161, - 3660732073, - 824334587, - 1887737781, - 2678118662, - 898443151, - 807091661, + 305307351, + 3871644781, + 689366590, + 1145404139, + 2738959721, + 2603602599, + 1954834424, + 248616681, + 2944246499, + 151733761, + 2982419777, + 3117076764, + 1066830186, + 822987100, + 187896188, + 78534598, + 1036683290, + 75687099, + 3120225806, + 2773389544, + 1767958175, + 1913249305, + 3440830193, + 846020206, + 184611923, + 3422454224, + 666548823, + 2890272748, + 311826648, + 656894851, + 1015140947, + 944766913, + 2824039557, + 1729684740, + 3823670423, + 2340377013, + 3488764746, + 4214065147, + 3592570438, + 2636452054, + 2933103145, + 655748206, + 3740569120, + 1506594710, + 2344840654, + 3783597206, + 1177928127, + 1803755571, + 3706364536, + 329851065, + 405114068, + 4165888009, + 1966619058, + 2914286955, + 4199143837, + 3319499606, + 1484938375, + 2281390537, + 3699915191, + 13784010, + 1905775355, + 2964823272, + 2833850347, + 2710162265, + 177271164, + 3402747143, + 643614458, + 2591204193, + 4248973377, + 3395135148, + 2934150319, + 1845856018, + 2286304688, + 1694302679, + 3169934074, + 3279088172, + 4149021202, + 2370967428, + 2749475055, + 2468489206, + 181482439, + 2194607960, + 2595544111, + 3739497023, + 510497184, + 2051497186, ]; static const List _envieddatapayPalSecret = [ - 3228715118, - 2051726172, - 1877697478, - 3127457644, - 3615094706, - 1457526304, - 1239837296, - 3361634745, - 2040986661, - 4201757272, - 4015770017, - 2645437326, - 686845824, - 1212153590, - 3313108936, - 233966883, - 469681248, - 450984064, - 1589812823, - 589184772, - 2863148306, - 3420344356, - 3092502932, - 154028550, - 3803765032, - 3337247928, - 2446997143, - 2500202398, - 2745282652, - 1001870374, - 2833128203, - 438970304, - 3654680604, - 181067489, - 275072131, - 4103332806, - 3930569681, - 849885954, - 2320005702, - 2730058978, - 2019134973, - 219570365, - 2661633075, - 1446191207, - 678891641, - 2042639572, - 576408687, - 454973461, - 3371775383, - 4077491957, - 4234663308, - 1624668957, - 1494693214, - 3276736327, - 2220108483, - 3761072192, - 494365895, - 1913954572, - 3395727143, - 1530512054, - 2950986332, - 3915950851, - 631514509, - 2661761013, - 3099508133, - 949025546, - 4115677936, - 1081386280, - 3611261459, - 4293502504, - 773010658, - 2811369281, - 3508228647, - 630309186, - 592780462, - 1834000396, - 1841117807, - 3610012062, - 3060506202, - 1441464153, - 3660732145, - 824334473, - 1887737837, - 2678118762, - 898443213, - 807091617, + 305307293, + 3871644719, + 689366655, + 1145404074, + 2738959647, + 2603602646, + 1954834354, + 248616632, + 2944246436, + 151733844, + 2982419762, + 3117076823, + 1066830126, + 822987116, + 187896102, + 78534572, + 1036683378, + 75687055, + 3120225861, + 2773389442, + 1767958266, + 1913249402, + 3440830091, + 846020118, + 184611893, + 3422454162, + 666548753, + 2890272660, + 311826677, + 656894896, + 1015140971, + 944766866, + 2824039649, + 1729684840, + 3823670517, + 2340377084, + 3488764697, + 4214065102, + 3592570480, + 2636451968, + 2933103227, + 655748131, + 3740569112, + 1506594776, + 2344840586, + 3783597296, + 1177928154, + 1803755525, + 3706364437, + 329851091, + 405114009, + 4165888108, + 1966619112, + 2914286881, + 4199143925, + 3319499544, + 1484938443, + 2281390467, + 3699915218, + 13783969, + 1905775310, + 2964823216, + 2833850252, + 2710162184, + 177271103, + 3402747254, + 643614385, + 2591204130, + 4248973321, + 3395135192, + 2934150397, + 1845856116, + 2286304646, + 1694302618, + 3169933968, + 3279088254, + 4149021291, + 2370967465, + 2749474953, + 2468489166, + 181482399, + 2194607914, + 2595544183, + 3739497043, + 510497250, + 2051497102, ]; static final String payPalSecret = String.fromCharCodes(List.generate( @@ -10982,101 +11018,101 @@ final class _Env { ).map((int i) => _envieddatapayPalSecret[i] ^ _enviedkeypayPalSecret[i])); static const List _enviedkeygeminiApi = [ - 105065984, - 3425654499, - 748595719, - 2240091015, - 860065220, - 453955836, - 4054487670, - 274261612, - 987644503, - 222427650, - 2587469617, - 1165908107, - 1059846446, - 3312373090, - 1840228401, - 1590036980, - 12416816, - 2507948556, - 1881961621, - 2771426077, - 923990353, - 4017172352, - 1168432657, - 1358785940, - 3086331190, - 2524434442, - 2276251304, - 4292352913, - 1270541147, - 2122192728, - 2617404729, - 289859340, - 2969384126, - 328457074, - 2674393624, - 807510810, - 1456924748, - 2185313589, - 1734020323, - 1303982906, - 4039438494, - 3739407630, - 4022309499, - 788182309, - 29874457, - 199456546, + 3690096455, + 1417732909, + 2764692064, + 3433425888, + 1659025258, + 2338551706, + 3239196813, + 3861595826, + 613546669, + 2587147504, + 2564872744, + 1394577429, + 2282407548, + 2183761185, + 4147587143, + 307911120, + 3228520373, + 863876420, + 562835940, + 3083656154, + 3581237596, + 4262756485, + 2080755889, + 1417423534, + 3270140256, + 1119288214, + 2335430493, + 2399828377, + 3105418678, + 3054840816, + 64685077, + 1056626707, + 1383961575, + 3919929174, + 2365849596, + 3191106216, + 1905457454, + 3855851362, + 1167805280, + 2040371101, + 2604217690, + 2712993575, + 3780772931, + 2641420901, + 603130156, + 3310724309, ]; static const List _envieddatageminiApi = [ - 105066065, - 3425654444, - 748595818, - 2240091126, - 860065182, - 453955727, - 4054487591, - 274261557, - 987644474, - 222427698, - 2587469577, - 1165908221, - 1059846466, - 3312373037, - 1840228416, - 1590036894, - 12416889, - 2507948603, - 1881961726, - 2771426161, - 923990279, - 4017172426, - 1168432759, - 1358786018, - 3086331238, - 2524434494, - 2276251391, - 4292352979, - 1270541085, - 2122192669, - 2617404758, - 289859433, - 2969384147, - 328456984, - 2674393727, - 807510883, - 1456924799, - 2185313548, - 1734020309, - 1303982931, - 4039438534, - 3739407740, - 4022309411, - 788182345, - 29874523, - 199456590, + 3690096406, + 1417732962, + 2764691981, + 3433425809, + 1659025200, + 2338551785, + 3239196892, + 3861595883, + 613546688, + 2587147456, + 2564872720, + 1394577507, + 2282407440, + 2183761262, + 4147587126, + 307911098, + 3228520444, + 863876467, + 562835855, + 3083656118, + 3581237514, + 4262756559, + 2080755927, + 1417423576, + 3270140208, + 1119288226, + 2335430410, + 2399828443, + 3105418736, + 3054840757, + 64685178, + 1056626806, + 1383961482, + 3919929148, + 2365849499, + 3191106257, + 1905457437, + 3855851355, + 1167805270, + 2040371188, + 2604217602, + 2712993621, + 3780772891, + 2641420809, + 603130222, + 3310724281, ]; static final String geminiApi = String.fromCharCodes(List.generate( @@ -11086,101 +11122,101 @@ final class _Env { ).map((int i) => _envieddatageminiApi[i] ^ _enviedkeygeminiApi[i])); static const List _enviedkeygeminiApiMasa = [ - 3934992632, - 764763948, - 2267871119, - 3855839780, - 1153064848, - 732311701, - 1179828671, - 3174006423, - 973588091, - 943303986, - 1464698165, - 2949907454, - 1930853247, - 1040572157, - 2722519914, - 2817945364, - 2485184548, - 3224904857, - 1595773520, - 501208695, - 2259934731, - 3967241952, - 1516445338, - 2495982510, - 380938217, - 717539397, - 3395056685, - 3778998916, - 3529023471, - 351089570, - 504507075, - 3297488223, - 2013175835, - 190269486, - 2212522675, - 2250658094, - 1508980155, - 2772266826, - 1556247438, - 4076272957, - 1404182606, - 1659594607, - 2407992445, - 452625595, - 1208881949, - 2377784153, + 3772131040, + 1688514242, + 3407103765, + 670407426, + 4245831149, + 1144564359, + 3133842252, + 2063063350, + 582842987, + 5693210, + 290490415, + 33367945, + 3516177805, + 889001519, + 4248627504, + 4255672262, + 3162735609, + 1898084084, + 3094835894, + 1217020613, + 2737831259, + 1746746299, + 2249501909, + 1281780688, + 1053716075, + 2903755646, + 299589947, + 1541045903, + 2814109884, + 2513653826, + 3410756219, + 2455411323, + 1199743729, + 4167850945, + 2855776277, + 959159085, + 356925827, + 1747777173, + 394036049, + 3414569226, + 361478210, + 2420080300, + 2520147016, + 2630978853, + 2043642686, + 3752728673, ]; static const List _envieddatageminiApiMasa = [ - 3934992553, - 764764003, - 2267871202, - 3855839829, - 1153064906, - 732311782, - 1179828718, - 3174006494, - 973587979, - 943304022, - 1464698232, - 2949907402, - 1930853181, - 1040572079, - 2722519833, - 2817945439, - 2485184585, - 3224904952, - 1595773460, - 501208637, - 2259934788, - 3967241904, - 1516445357, - 2495982538, - 380938163, - 717539381, - 3395056664, - 3778998953, - 3529023372, - 351089556, - 504507021, - 3297488136, - 2013175933, - 190269517, - 2212522715, - 2250658073, - 1508980203, - 2772266763, - 1556247522, - 4076273004, - 1404182550, - 1659594525, - 2407992357, - 452625623, - 1208882015, - 2377784117, + 3772130993, + 1688514189, + 3407103864, + 670407539, + 4245831095, + 1144564468, + 3133842205, + 2063063423, + 582842907, + 5693310, + 290490466, + 33367997, + 3516177871, + 889001597, + 4248627523, + 4255672205, + 3162735508, + 1898083989, + 3094835954, + 1217020559, + 2737831188, + 1746746347, + 2249501922, + 1281780660, + 1053716017, + 2903755534, + 299589902, + 1541045922, + 2814109919, + 2513653876, + 3410756149, + 2455411244, + 1199743639, + 4167850914, + 2855776381, + 959159066, + 356925907, + 1747777236, + 394036029, + 3414569307, + 361478170, + 2420080350, + 2520146960, + 2630978889, + 2043642748, + 3752728589, ]; static final String geminiApiMasa = String.fromCharCodes(List.generate( @@ -11190,87 +11226,87 @@ final class _Env { ).map((int i) => _envieddatageminiApiMasa[i] ^ _enviedkeygeminiApiMasa[i])); static const List _enviedkeyagoraAppId = [ - 2268833460, - 3736821493, - 1639855938, - 1997939392, - 3332154903, - 311515989, - 3498687715, - 3223108740, - 1179298355, - 3543414528, - 931396838, - 1722048944, - 126991863, - 298259690, - 2292898950, - 1031924869, - 1885575142, - 193606682, - 4246601565, - 3704160853, - 93533708, - 2333835790, - 1950084547, - 1425504381, - 742705795, - 2481797765, - 4194044943, - 1577987570, - 3892488405, - 3040041507, - 1303408690, - 4109082021, - 3291512768, - 1225880919, - 3986065754, - 2794127966, - 174956158, - 4117696676, - 2010325114, + 3832317263, + 824600247, + 3080315056, + 3900931085, + 3473146124, + 779342915, + 2106289893, + 4205358956, + 609217799, + 1622368308, + 1521325953, + 3605300568, + 1579213160, + 991885568, + 1524540163, + 2447823791, + 1013931428, + 918937707, + 3682127949, + 1050456304, + 3920967779, + 2171786206, + 1108080459, + 3070563345, + 2197592583, + 746902908, + 2210288744, + 1032466985, + 3021648317, + 126989861, + 2544891506, + 3009303115, + 2937548858, + 683882045, + 3936767547, + 370481240, + 3508452786, + 3339342045, + 3498572810, ]; static const List _envieddataagoraAppId = [ - 2268833411, - 3736821444, - 1639855994, - 1997939448, - 3332154919, - 311515955, - 3498687697, - 3223108846, - 1179298309, - 3543414579, - 931396816, - 1722048991, - 126991810, - 298259674, - 2292899007, - 1031924975, - 1885575124, - 193606702, - 4246601508, - 3704160864, - 93533758, - 2333835831, - 1950084599, - 1425504329, - 742705851, - 2481797813, - 4194045046, - 1577987521, - 3892488421, - 3040041558, - 1303408650, - 4109082001, - 3291512824, - 1225880847, - 3986065704, - 2794127878, - 174956050, - 4117696742, - 2010325014, + 3832317304, + 824600198, + 3080315016, + 3900931125, + 3473146172, + 779342885, + 2106289879, + 4205358854, + 609217841, + 1622368263, + 1521326007, + 3605300535, + 1579213149, + 991885616, + 1524540218, + 2447823813, + 1013931414, + 918937695, + 3682127924, + 1050456261, + 3920967761, + 2171786215, + 1108080511, + 3070563365, + 2197592639, + 746902860, + 2210288657, + 1032466970, + 3021648269, + 126989904, + 2544891466, + 3009303167, + 2937548802, + 683882085, + 3936767561, + 370481152, + 3508452830, + 3339341983, + 3498572902, ]; static final String agoraAppId = String.fromCharCodes(List.generate( @@ -11280,89 +11316,89 @@ final class _Env { ).map((int i) => _envieddataagoraAppId[i] ^ _enviedkeyagoraAppId[i])); static const List _enviedkeyagoraAppCertificate = [ - 486608803, - 2010057729, - 1032792219, - 1517240341, - 2018307767, - 251298216, - 2926601792, - 1603956114, - 1617082942, - 170343547, - 4211853352, - 953853312, - 3491273099, - 2804225769, - 3780753396, - 2873809570, - 1966877901, - 1778544739, - 2131285172, - 2878460689, - 1395155968, - 1603849681, - 2584026907, - 3982591870, - 1553335313, - 3676331109, - 1476222846, - 2992793937, - 1122899523, - 3460939556, - 2343409611, - 407689180, - 130408166, - 1720265565, - 516821793, - 2043573225, - 906103820, - 2393103880, - 3125480678, - 3663187616, + 1345790685, + 277008906, + 712387213, + 2289188027, + 1227355014, + 1836280768, + 1155062051, + 3431414770, + 3380335678, + 2131685751, + 65917614, + 2003693415, + 1644478452, + 994286877, + 2389817048, + 4038511669, + 2184300421, + 3864603606, + 1080502774, + 36888323, + 1215888920, + 1185478675, + 3510739353, + 3980684621, + 1870632155, + 2213035926, + 2857261249, + 3913977985, + 1356518905, + 753962228, + 734893468, + 3696638500, + 830484066, + 2698409883, + 1505861823, + 3692474140, + 21414369, + 1558490013, + 2378350697, + 3707537020, ]; static const List _envieddataagoraAppCertificate = [ - 486608841, - 2010057776, - 1032792236, - 1517240420, - 2018307726, - 251298204, - 2926601844, - 1603956199, - 1617082890, - 170343490, - 4211853339, - 953853369, - 3491273147, - 2804225667, - 3780753308, - 2873809619, - 1966877946, - 1778544726, - 2131285132, - 2878460772, - 1395156017, - 1603849703, - 2584026927, - 3982591815, - 1553335333, - 3676331089, - 1476222790, - 2992793888, - 1122899569, - 3460939613, - 2343409661, - 407689124, - 130408064, - 1720265512, - 516821881, - 2043573147, - 906103892, - 2393103972, - 3125480612, - 3663187660, + 1345790647, + 277008955, + 712387258, + 2289188042, + 1227355071, + 1836280820, + 1155062039, + 3431414663, + 3380335626, + 2131685710, + 65917597, + 2003693406, + 1644478404, + 994286967, + 2389817008, + 4038511684, + 2184300466, + 3864603619, + 1080502734, + 36888438, + 1215888937, + 1185478693, + 3510739373, + 3980684660, + 1870632175, + 2213035938, + 2857261305, + 3913978096, + 1356518859, + 753962125, + 734893482, + 3696638556, + 830483972, + 2698409966, + 1505861863, + 3692474222, + 21414329, + 1558490097, + 2378350635, + 3707536912, ]; static final String agoraAppCertificate = String.fromCharCodes( @@ -11375,183 +11411,183 @@ final class _Env { _enviedkeyagoraAppCertificate[i])); static const List _enviedkeypayPalClientIdLive = [ - 1575644338, - 2901001486, - 3252116551, - 3409538679, - 3653103343, - 1253959727, - 2143444761, - 367977867, - 2602189636, - 3242213038, - 669041041, - 2252155115, - 3089924207, - 4113843963, - 933416898, - 3496811008, - 2184833557, - 1807127718, - 2429952358, - 2339062514, - 1633702274, - 2008234723, - 3611742437, - 4144791893, - 461560612, - 207918756, - 2253356854, - 638726709, - 1493860712, - 945324076, - 1118958366, - 2605106661, - 311918559, - 3268876759, - 3780236542, - 4180743633, - 2590383454, - 1841411796, - 3970860485, - 1622357646, - 2483260171, - 2460323633, - 2256702177, - 2240934333, - 3884151055, - 1517212756, - 3321277636, - 4239891594, - 268671768, - 2444858553, - 3997255924, - 3933831467, - 2980330942, - 3163344034, - 1933940759, - 3914293088, - 4047638936, - 1082587052, - 1082641074, - 3775575769, - 3489554335, - 3705143733, - 2905905727, - 3605398211, - 1130546134, - 4201768963, - 1839208054, - 403591581, - 1397316572, - 3188117004, - 3282845941, - 2621430443, - 3449047544, - 1619093147, - 1052355132, - 1712331765, - 1039322283, - 1343885410, - 3319271146, - 1885952758, - 1744243820, - 2166516816, - 1419822372, - 1668818105, - 2749456908, - 3596431419, - 793969728, + 302903440, + 3292875835, + 2362055895, + 3585667840, + 743482780, + 1422113737, + 1444303642, + 3269260833, + 4164497487, + 1298032106, + 1671393889, + 532219890, + 948494266, + 2106157317, + 1441779883, + 3002736248, + 1545429168, + 751491591, + 1596665175, + 2684278206, + 3850460631, + 3040111389, + 2640275917, + 2251019271, + 1643537098, + 988976877, + 2600502720, + 2235958487, + 705192076, + 72114598, + 744847749, + 1201199910, + 847784818, + 3608902160, + 203114023, + 3337169304, + 837924028, + 2762310474, + 1520857522, + 3902653986, + 2364086535, + 1531387574, + 870549805, + 3403890842, + 782199654, + 603141943, + 567628668, + 2645511554, + 4091072485, + 1710195964, + 1164202158, + 2346576506, + 2689896013, + 3199516072, + 1284610630, + 705765155, + 2360233961, + 3772968831, + 2400775783, + 38939757, + 1165307680, + 3355269317, + 3723627239, + 924036739, + 553674211, + 113509580, + 4047501928, + 211915725, + 1380725891, + 1019477356, + 2473690813, + 207989982, + 669022980, + 3826644819, + 1184902078, + 3014826049, + 983172125, + 2389068590, + 2597841182, + 2566350736, + 1112051600, + 652592991, + 2989213427, + 689608253, + 1133723955, + 3001269612, + 1950515532, ]; static const List _envieddatapayPalClientIdLive = [ - 1575644387, - 2901001556, - 3252116481, - 3409538588, - 3653103237, - 1253959790, - 2143444854, - 367977937, - 2602189602, - 3242213097, - 669041125, - 2252155013, - 3089924104, - 4113843893, - 933416881, - 3496811109, - 2184833639, - 1807127754, - 2429952266, - 2339062468, - 1633702384, - 2008234704, - 3611742342, - 4144791830, - 461560593, - 207918738, - 2253356910, - 638726745, - 1493860697, - 945324127, - 1118958408, - 2605106601, - 311918478, - 3268876732, - 3780236432, - 4180743652, - 2590383418, - 1841411737, - 3970860455, - 1622357751, - 2483260270, - 2460323667, - 2256702089, - 2240934343, - 3884151109, - 1517212685, - 3321277681, - 4239891635, - 268671837, - 2444858600, - 3997255879, - 3933831491, - 2980330948, - 3163344021, - 1933940814, - 3914293016, - 4047639033, - 1082587113, - 1082641091, - 3775575708, - 3489554395, - 3705143788, - 2905905775, - 3605398167, - 1130546051, - 4201769029, - 1839207957, - 403591628, - 1397316491, - 3188117117, - 3282845827, - 2621430478, - 3449047464, - 1619093242, - 1052355181, - 1712331712, - 1039322366, - 1343885352, - 3319271072, - 1885952672, - 1744243774, - 2166516744, - 1419822422, - 1668818145, - 2749456992, - 3596431481, - 793969708, + 302903489, + 3292875873, + 2362055825, + 3585667947, + 743482870, + 1422113672, + 1444303733, + 3269260923, + 4164497449, + 1298032045, + 1671393813, + 532219804, + 948494301, + 2106157387, + 1441779928, + 3002736157, + 1545429186, + 751491691, + 1596665147, + 2684278152, + 3850460581, + 3040111406, + 2640275886, + 2251019332, + 1643537151, + 988976859, + 2600502680, + 2235958459, + 705192125, + 72114645, + 744847827, + 1201199978, + 847784739, + 3608902267, + 203114057, + 3337169325, + 837924056, + 2762310407, + 1520857552, + 3902654043, + 2364086626, + 1531387604, + 870549829, + 3403890912, + 782199596, + 603141998, + 567628617, + 2645511611, + 4091072416, + 1710195885, + 1164202141, + 2346576402, + 2689895991, + 3199516063, + 1284610591, + 705765211, + 2360233864, + 3772968762, + 2400775702, + 38939688, + 1165307748, + 3355269276, + 3723627191, + 924036823, + 553674166, + 113509514, + 4047501835, + 211915676, + 1380725972, + 1019477277, + 2473690827, + 207989947, + 669023060, + 3826644786, + 1184902127, + 3014826100, + 983172168, + 2389068644, + 2597841236, + 2566350790, + 1112051650, + 652592903, + 2989213313, + 689608293, + 1133723999, + 3001269550, + 1950515488, ]; static final String payPalClientIdLive = String.fromCharCodes( @@ -11563,185 +11599,185 @@ final class _Env { _envieddatapayPalClientIdLive[i] ^ _enviedkeypayPalClientIdLive[i])); static const List _enviedkeypayPalSecretLive = [ - 2645358721, - 4007215023, - 437082974, - 2603120339, - 2123199647, - 336379627, - 1381857902, - 1870577298, - 2276613151, - 3609885881, - 973755455, - 265773984, - 2910544763, - 1372984558, - 3048599258, - 1570392934, - 1934334482, - 1284909342, - 643917119, - 2524593802, - 1902545811, - 3803876884, - 2929188776, - 2570497309, - 3832512865, - 936341927, - 3622574815, - 919670938, - 4160266844, - 482229805, - 317278320, - 1339311965, - 1584417614, - 3174208977, - 1674661751, - 2466668408, - 2093299206, - 3462682279, - 1918846913, - 2178402788, - 1133331787, - 578935890, - 3878260355, - 2916627597, - 3949566112, - 2830438720, - 839345250, - 3615693855, - 4018035680, - 440933318, - 272557865, - 3004001851, - 4147027610, - 2466283890, - 2909821910, - 2820525859, - 2282547152, - 2152701821, - 1612457045, - 3276773992, - 877330984, - 35627815, - 2868930611, - 458875531, - 1409105135, - 3021267750, - 4002982330, - 3756769646, - 3491525814, - 1083539086, - 144782329, - 5371816, - 1304011684, - 203323481, - 3226838675, - 202093042, - 2997592275, - 717847011, - 2230138501, - 4206368552, - 1564991560, - 4001726808, - 2212855664, - 347796956, - 404562960, - 2624436069, - 4164822700, - 2549740953, + 695171155, + 2676646885, + 1862843345, + 3894515463, + 210448382, + 2644734685, + 652425667, + 3217376634, + 2924563208, + 1057937010, + 1241730561, + 3137465678, + 4006937194, + 4064330582, + 2756599958, + 23442622, + 750678129, + 1695865750, + 2651221535, + 1293424022, + 1108227265, + 2275950844, + 2170279363, + 1846839803, + 1630407691, + 4005371051, + 242932876, + 2923859209, + 3249150789, + 3306462476, + 1988415613, + 2496474295, + 4184579276, + 4282302872, + 97152587, + 4014492647, + 1793443824, + 4252275162, + 3167172389, + 997279167, + 3574485750, + 2385395859, + 2793682355, + 3851273543, + 2378925554, + 873578708, + 1873884350, + 991729440, + 2853049240, + 3733600232, + 3073646637, + 2552993454, + 4021513788, + 3719980103, + 267850051, + 2513587800, + 3006719392, + 995741028, + 2798205499, + 1606705869, + 2183257014, + 4258375452, + 785961064, + 3774608, + 3605921531, + 2433428076, + 1478600213, + 1631595295, + 1831698129, + 1447878570, + 2151237769, + 4126451914, + 3206123371, + 3709425729, + 3721487284, + 863078982, + 4272753026, + 3234564696, + 247470280, + 1897178236, + 1775541971, + 3704090925, + 2253986849, + 2833362075, + 1351938944, + 215728786, + 3308847238, + 3374445957, ]; static const List _envieddatapayPalSecretLive = [ - 2645358795, - 4007215102, - 437082906, - 2603120274, - 2123199691, - 336379546, - 1381857797, - 1870577401, - 2276613233, - 3609885949, - 973755481, - 265774025, - 2910544701, - 1372984478, - 3048599199, - 1570392871, - 1934334556, - 1284909352, - 643917071, - 2524593857, - 1902545873, - 3803876896, - 2929188824, - 2570497370, - 3832512785, - 936341987, - 3622574782, - 919670992, - 4160266806, - 482229844, - 317278209, - 1339311903, - 1584417551, - 3174208949, - 1674661710, - 2466668306, - 2093299326, - 3462682346, - 1918846851, - 2178402740, - 1133331771, - 578935848, - 3878260436, - 2916627672, - 3949566097, - 2830438672, - 839345235, - 3615693940, - 4018035667, - 440933262, - 272557848, - 3004001873, - 4147027648, - 2466283802, - 2909821831, - 2820525897, - 2282547134, - 2152701770, - 1612457062, - 3276773933, - 877331040, - 35627860, - 2868930680, - 458875610, - 1409105025, - 3021267783, - 4002982285, - 3756769626, - 3491525862, - 1083539126, - 144782217, - 5371793, - 1304011676, - 203323441, - 3226838772, - 202092989, - 2997592253, - 717846958, - 2230138596, - 4206368639, - 1564991512, - 4001726735, - 2212855592, - 347796910, - 404563016, - 2624435977, - 4164822766, - 2549741045, + 695171097, + 2676646836, + 1862843285, + 3894515526, + 210448298, + 2644734636, + 652425640, + 3217376529, + 2924563302, + 1057936950, + 1241730663, + 3137465639, + 4006937132, + 4064330534, + 2756600019, + 23442687, + 750678079, + 1695865760, + 2651221551, + 1293424093, + 1108227203, + 2275950792, + 2170279347, + 1846839740, + 1630407803, + 4005371119, + 242932973, + 2923859267, + 3249150767, + 3306462581, + 1988415500, + 2496474357, + 4184579213, + 4282302972, + 97152626, + 4014492557, + 1793443720, + 4252275095, + 3167172455, + 997279215, + 3574485638, + 2385395945, + 2793682404, + 3851273490, + 2378925507, + 873578628, + 1873884303, + 991729483, + 2853049259, + 3733600160, + 3073646620, + 2552993476, + 4021513830, + 3719980079, + 267850002, + 2513587762, + 3006719438, + 995741011, + 2798205448, + 1606705800, + 2183257086, + 4258375535, + 785960995, + 3774657, + 3605921429, + 2433427981, + 1478600226, + 1631595307, + 1831698049, + 1447878546, + 2151237881, + 4126451955, + 3206123347, + 3709425705, + 3721487315, + 863078921, + 4272753132, + 3234564629, + 247470249, + 1897178155, + 1775541891, + 3704091002, + 2253986937, + 2833362153, + 1351939032, + 215728894, + 3308847300, + 3374446057, ]; static final String payPalSecretLive = String.fromCharCodes( @@ -11753,35 +11789,35 @@ final class _Env { _envieddatapayPalSecretLive[i] ^ _enviedkeypayPalSecretLive[i])); static const List _enviedkeyintegrationIdPayMob = [ - 678969608, - 3759424090, - 2410103957, - 3354188659, - 3290001448, - 74563651, - 2402792386, - 76825456, - 61203237, - 3227015731, - 4008932001, - 2006474210, - 830007825, + 1453771218, + 99799846, + 2120053699, + 1415147158, + 1481111911, + 2831947708, + 408680540, + 1381239986, + 1498235397, + 385457610, + 2932459519, + 3703450582, + 1559665575, ]; static const List _envieddataintegrationIdPayMob = [ - 678969656, - 3759424104, - 2410103974, - 3354188612, - 3290001438, - 74563696, - 2402792434, - 76825384, - 61203287, - 3227015787, - 4008932045, - 2006474144, - 830007933, + 1453771234, + 99799828, + 2120053744, + 1415147169, + 1481111889, + 2831947663, + 408680556, + 1381240042, + 1498235511, + 385457554, + 2932459411, + 3703450516, + 1559665611, ]; static final String integrationIdPayMob = String.fromCharCodes( @@ -11794,53 +11830,53 @@ final class _Env { _enviedkeyintegrationIdPayMob[i])); static const List _enviedkeypasswordPayMob = [ - 1418248746, - 399514641, - 2937550616, - 2449766460, - 2317899535, - 2040535619, - 2151498027, - 669355612, - 3525524195, - 3640566438, - 3700856292, - 2338421171, - 750454941, - 4123339624, - 3468643165, - 1474747557, - 2758500132, - 950238984, - 3552183768, - 896665735, - 2679406184, - 1006016548, + 2651214382, + 2543188177, + 47156322, + 800364083, + 4209799751, + 676623082, + 832144016, + 4270956576, + 1996245296, + 2249932344, + 467292801, + 1298438647, + 1763820894, + 568046576, + 1851455399, + 3871675882, + 1470528502, + 2794214989, + 560206516, + 3419180189, + 3875504829, + 3938504646, ]; static const List _envieddatapasswordPayMob = [ - 1418248781, - 399514705, - 2937550710, - 2449766487, - 2317899595, - 2040535665, - 2151497992, - 669355621, - 3525524186, - 3640566477, - 3700856261, - 2338421211, - 750455001, - 4123339575, - 3468643187, - 1474747602, - 2758500220, - 950239098, - 3552183680, - 896665835, - 2679406122, - 1006016584, + 2651214409, + 2543188113, + 47156236, + 800364120, + 4209799683, + 676623064, + 832144051, + 4270956569, + 1996245257, + 2249932371, + 467292832, + 1298438559, + 1763820826, + 568046511, + 1851455369, + 3871675805, + 1470528430, + 2794214975, + 560206572, + 3419180273, + 3875504895, + 3938504618, ]; static final String passwordPayMob = String.fromCharCodes(List.generate( @@ -11850,43 +11886,43 @@ final class _Env { ).map((int i) => _envieddatapasswordPayMob[i] ^ _enviedkeypasswordPayMob[i])); static const List _enviedkeyusernamePayMob = [ - 2522500137, - 1783004150, - 2030407902, - 2394910832, - 3541470024, - 1863465945, - 3856985941, - 2634892935, - 3377559346, - 1098298399, - 755682477, - 15141924, - 3381002937, - 3833842223, - 1369619294, - 2759348377, - 2158260750, + 1143635967, + 3737213395, + 2565222656, + 489734030, + 3993568495, + 3599499068, + 4017240137, + 1318040604, + 2921759128, + 784177800, + 1318608577, + 2398722427, + 1340469675, + 2838957610, + 1566515748, + 1431741204, + 2301052706, ]; static const List _envieddatausernamePayMob = [ - 2522500122, - 1783004097, - 2030407917, - 2394910785, - 3541470065, - 1863465960, - 3856985957, - 2634892979, - 3377559298, - 1098298410, - 755682463, - 15142012, - 3381002955, - 3833842295, - 1369619250, - 2759348443, - 2158260834, + 1143635916, + 3737213412, + 2565222707, + 489734079, + 3993568470, + 3599499021, + 4017240185, + 1318040616, + 2921759144, + 784177853, + 1318608627, + 2398722339, + 1340469721, + 2838957682, + 1566515784, + 1431741270, + 2301052750, ]; static final String usernamePayMob = String.fromCharCodes(List.generate( @@ -11896,581 +11932,581 @@ final class _Env { ).map((int i) => _envieddatausernamePayMob[i] ^ _enviedkeyusernamePayMob[i])); static const List _enviedkeypayMobApikey = [ - 1196421823, - 1466467895, - 687966659, - 2895373993, - 3481091146, - 2820358746, - 1209219853, - 1896506686, - 3846308622, - 1453955551, - 1339329461, - 3179146108, - 2576691015, - 3550767379, - 3954411403, - 1524479269, - 3411130121, - 2956392039, - 1565044628, - 891820207, - 2850171361, - 2959874720, - 2940832198, - 4226354411, - 4174486851, - 1861272758, - 372571652, - 2223149492, - 3412766170, - 3338627371, - 494411116, - 4090460385, - 477482133, - 1150541659, - 3814598750, - 3009354931, - 3664567436, - 1239021057, - 3877169819, - 2643813584, - 1095315616, - 2370709680, - 138573559, - 4203714902, - 3873554901, - 3302042839, - 476305997, - 10281539, - 2291454929, - 4271134274, - 1995633011, - 1989731179, - 564106756, - 2764062158, - 644827228, - 1590875146, - 2137381392, - 1184267590, - 315915001, - 383581338, - 2044840601, - 954617733, - 3666654622, - 3589558086, - 3660748729, - 708927168, - 299199489, - 2331439800, - 1471131314, - 2321325129, - 1445207695, - 3078021387, - 3024206842, - 2587653657, - 771361727, - 2614975346, - 2624628500, - 1259421155, - 1584337126, - 3880479256, - 2985725203, - 1913419357, - 790477117, - 2067128918, - 2302326131, - 1059137133, - 2733069139, - 3701047236, - 197500749, - 4215108561, - 1198351896, - 35017866, - 1756341895, - 252095259, - 427316440, - 321799383, - 1392789609, - 2727015187, - 67557499, - 3712889606, - 3844827018, - 3248798679, - 1943160136, - 2705445240, - 2975206310, - 1104443520, - 504831374, - 137605402, - 3725075189, - 1009074357, - 3542720830, - 1321941277, - 3000352725, - 706088635, - 3013652058, - 3002930049, - 1094587762, - 2922378178, - 874794164, - 3296385699, - 3046648943, - 4177901318, - 3162454267, - 4132561721, - 3447683509, - 610842989, - 97519303, - 2386958363, - 1481393235, - 3998086509, - 3599842235, - 645062872, - 247761637, - 3735432896, - 641981623, - 1084261314, - 750475801, - 4264649799, - 726890674, - 395428357, - 67538211, - 4207888725, - 1233455186, - 597418071, - 3270366110, - 3511808920, - 4175290267, - 94906619, - 2028392480, - 3376065920, - 2768008554, - 1034810908, - 3084629173, - 1431087961, - 196764050, - 646401424, - 210412215, - 2665902042, - 1645671571, - 1092287726, - 2575253445, - 631913924, - 2901070278, - 2687934625, - 2584096568, - 3242038387, - 463083896, - 2084331084, - 1808162121, - 3389399846, - 2038139421, - 762744285, - 1390844751, - 2404131864, - 2398484672, - 2695859313, - 2080801833, - 3866807536, - 1169976345, - 1181327173, - 2484683640, - 566292916, - 2485289578, - 1058061328, - 3893308107, - 2904788453, - 1155740784, - 4104460751, - 4258445750, - 3361033611, - 164759153, - 337195317, - 1318122908, - 933753789, - 2190619952, - 3476044056, - 1835199087, - 1893160164, - 4133834445, - 722954789, - 1849236567, - 3876855457, - 525760755, - 3565337185, - 3055404564, - 2736726321, - 1346732290, - 3253019926, - 94163664, - 3123682332, - 3189006710, - 1650820432, - 3211376095, - 3617437478, - 3307839959, - 2655906420, - 3963094396, - 1066972513, - 1625259919, - 1339998607, - 507369592, - 2063929029, - 2908589567, - 2472827901, - 3728809368, - 1311431489, - 4274607309, - 48331427, - 2598654826, - 2569202918, - 1038138536, - 4180311589, - 1271889976, - 3054797588, - 3675637107, - 1112130851, - 3309396680, - 1264719143, - 1406943110, - 936680019, - 2903476349, - 1786828161, - 18371898, - 3096119126, - 92891013, - 1660625368, - 1008239006, - 4178820741, - 4073860486, - 1048794252, - 3238940083, - 2092940727, - 3728124088, - 1446781068, - 3069679589, - 3992128012, - 2012521168, - 4178288275, - 1696645163, - 3610243553, - 1666571294, - 3781469356, - 2520827429, - 376314764, - 2413271802, - 2345031947, - 3775868483, - 1636086259, - 883170543, - 3998789071, - 2386598506, - 3114415754, - 2024378080, - 3661845857, - 2776875336, - 1960150373, - 1344415271, - 3833058786, - 1850519078, - 3111327972, - 3326343399, - 1197469766, - 3477109895, - 2424487964, - 124922482, - 2971717460, + 877946335, + 990571313, + 23816359, + 1823019159, + 2064816345, + 4090654266, + 1795448028, + 3436525757, + 1774958597, + 3699700862, + 1989799618, + 3365842929, + 3970531925, + 1296526345, + 1133951785, + 3590514719, + 3588530864, + 2622815636, + 4088730428, + 3133503776, + 3327497261, + 1474374901, + 3583397553, + 2330124316, + 171747989, + 3917404514, + 2233312564, + 3686539197, + 2245010592, + 566840474, + 489723560, + 1821123120, + 1824596000, + 4161653166, + 2653471133, + 318268533, + 3370331868, + 553413114, + 611455261, + 3605201835, + 2963126191, + 1062589215, + 1615167122, + 2707234350, + 4199759030, + 2948947655, + 1160211393, + 1700873236, + 1938002794, + 3374199317, + 3465724160, + 4294693417, + 3911595922, + 2210748827, + 1852099657, + 2147815756, + 1549272082, + 4034263503, + 3707579325, + 748137275, + 3086794963, + 1789977551, + 1252684202, + 1270032683, + 1794697737, + 2993515719, + 1916813237, + 1630188210, + 3312639584, + 2938764538, + 1788738213, + 442600113, + 769817879, + 3388808280, + 1953112730, + 3607334401, + 1772739524, + 2065897249, + 1861719065, + 3423257774, + 3276171255, + 1891388347, + 4036029556, + 787258637, + 3361104153, + 1995069332, + 338144944, + 3577027112, + 3861579086, + 53129487, + 2318131426, + 2851713162, + 3889534770, + 4188327589, + 1119114777, + 3044759775, + 2125934961, + 674982934, + 2455174062, + 1358105253, + 2046998389, + 3899740613, + 3196420711, + 2814940357, + 2472907957, + 3349364562, + 3863504114, + 210642177, + 1266598270, + 3385216451, + 2302666667, + 2769963737, + 2278237766, + 2778874414, + 1304585274, + 334500021, + 3841074701, + 405695381, + 3178606810, + 911292980, + 3560803097, + 2698467315, + 2138540760, + 1708488625, + 1536010377, + 1740744300, + 3554944638, + 1338537760, + 153759107, + 2392258583, + 2517325729, + 1562137179, + 261181330, + 4057344068, + 3606326413, + 43284431, + 2576883894, + 867864581, + 47851640, + 2812786467, + 973176921, + 225989476, + 3632475970, + 3393105632, + 4119873963, + 305548531, + 1700626973, + 3305100287, + 213266753, + 2645964560, + 1249400330, + 1028029236, + 1979363583, + 352332716, + 2959904965, + 1222014745, + 335719055, + 3034844941, + 226441292, + 1926875436, + 3577159923, + 1775113424, + 3199679251, + 3830679614, + 3983650981, + 2954990804, + 1144108644, + 4193816731, + 2129708087, + 2232005629, + 509576731, + 2804010237, + 3348342995, + 3569501774, + 2480116438, + 3951430678, + 3690246575, + 4096388324, + 3733757497, + 800782411, + 2059710812, + 871457814, + 3428515992, + 1203485575, + 1966769807, + 874102638, + 3987488303, + 4263596618, + 3676547691, + 1030709040, + 3714933910, + 3610741808, + 1152296636, + 369443622, + 2966607033, + 2162159764, + 3673440552, + 735430115, + 588154192, + 65278090, + 645065734, + 2597761550, + 3763337418, + 3659667110, + 1631259412, + 2455931148, + 2718813596, + 2661144102, + 899770730, + 3944823544, + 1758731207, + 2967039660, + 1120523741, + 799682919, + 105499444, + 2163862354, + 3499198809, + 1366869290, + 3064414018, + 2952589477, + 4007837456, + 3407273905, + 94642333, + 2873343743, + 3785938068, + 51406210, + 1548429565, + 2243336746, + 4282623484, + 1996588028, + 689083797, + 401092822, + 1365669879, + 1860665063, + 3793892048, + 1338061163, + 1710252589, + 4182186618, + 3248149368, + 1401531703, + 2816626795, + 3034314057, + 3141649374, + 828841320, + 3911654567, + 25345696, + 3800395331, + 2960398276, + 3279834243, + 190002666, + 4163701276, + 1729602162, + 2048511200, + 463396109, + 3003408720, + 540446820, + 1847801397, + 641291196, + 851056219, + 747867377, + 1352886168, + 4277298099, + 2190596762, + 3330112223, + 835337040, + 3071117778, + 4057287278, + 2360094621, + 2955739871, + 3874768359, + 657711989, + 1291344580, + 3708415956, + 1542001892, + 1699492760, + 2559897189, + 363791616, + 2724635379, + 3720457045, + 4092067985, + 3528369260, + 4273739568, + 2810497199, + 1498459680, + 146421583, + 686612339, ]; static const List _envieddatapayMobApikey = [ - 1196421874, - 1466467955, - 687966641, - 2895374062, - 3481091131, - 2820358673, - 1209219912, - 1896506729, - 3846308701, - 1453955566, - 1339329479, - 3179146026, - 2576690998, - 3550767483, - 3954411489, - 1524479298, - 3411130222, - 2956391983, - 1565044706, - 891820266, - 2850171313, - 2959874788, - 2940832176, - 4226354363, - 4174486825, - 1861272828, - 372571699, - 2223149506, - 3412766080, - 3338627439, - 494411054, - 4090460324, - 477482221, - 1150541609, - 3814598673, - 3009354884, - 3664567519, - 1239021106, - 3877169881, - 2643813525, - 1095315682, - 2370709719, - 138573445, - 4203714874, - 3873554867, - 3302042754, - 476305978, - 10281495, - 2291454864, - 4271134321, - 1995632922, - 1989731166, - 564106838, - 2764062112, - 644827148, - 1590875199, - 2137381450, - 1184267560, - 315914895, - 383581429, - 2044840661, - 954617782, - 3666654675, - 3589558132, - 3660748778, - 708927225, - 299199603, - 2331439869, - 1471131376, - 2321325102, - 1445207805, - 3078021479, - 3024206772, - 2587653709, - 771361755, - 2614975255, - 2624628588, - 1259421099, - 1584337107, - 3880479336, - 2985725255, - 1913419277, - 790477147, - 2067128929, - 2302326077, - 1059137063, - 2733069089, - 3701047218, - 197500724, - 4215108576, - 1198351978, - 35017967, - 1756341981, - 252095313, - 427316398, - 321799398, - 1392789565, - 2727015293, - 67557452, - 3712889724, - 3844827116, - 3248798688, - 1943160126, - 2705445164, - 2975206383, - 1104443588, - 504831479, - 137605485, - 3725075103, - 1009074429, - 3542720857, - 1321941292, - 3000352662, - 706088588, - 3013651990, - 3002930148, - 1094587659, - 2922378225, - 874794124, - 3296385771, - 3046648891, - 4177901378, - 3162454146, - 4132561783, - 3447683572, - 610842974, - 97519281, - 2386958380, - 1481393159, - 3998086461, - 3599842269, - 645062844, - 247761565, - 3735432842, - 641981637, - 1084261283, - 750475873, - 4264649846, - 726890688, - 395428466, - 67538291, - 4207888696, - 1233455106, - 597418019, - 3270366163, - 3511808978, - 4175290338, - 94906497, - 2028392529, - 3376065995, - 2768008495, - 1034810949, - 3084629231, - 1431087932, - 196764149, - 646401528, - 210412230, - 2665902057, - 1645671646, - 1092287643, - 2575253385, - 631913873, - 2901070260, - 2687934695, - 2584096624, - 3242038336, - 463083833, - 2084331133, - 1808162056, - 3389399873, - 2038139477, - 762744254, - 1390844679, - 2404131881, - 2398484725, - 2695859250, - 2080801907, - 3866807497, - 1169976396, - 1181327140, - 2484683554, - 566292960, - 2485289510, - 1058061407, - 3893308083, - 2904788363, - 1155740679, - 4104460799, - 4258445812, - 3361033695, - 164759061, - 337195343, - 1318122964, - 933753845, - 2190619970, - 3476044122, - 1835199022, - 1893160086, - 4133834404, - 722954838, - 1849236493, - 3876855492, - 525760641, - 3565337140, - 3055404633, - 2736726372, - 1346732375, - 3253020012, - 94163594, - 3123682349, - 3189006644, - 1650820414, - 3211376029, - 3617437507, - 3307839890, - 2655906333, - 3963094294, - 1066972457, - 1625260025, - 1339998657, - 507369490, - 2063928988, - 2908589491, - 2472827795, - 3728809419, - 1311431536, - 4274607247, - 48331510, - 2598654755, - 2569202853, - 1038138597, - 4180311629, - 1271890027, - 3054797689, - 3675637027, - 1112130891, - 3309396617, - 1264719126, - 1406943155, - 936679994, - 2903476251, - 1786828233, - 18371907, - 3096119040, - 92891124, - 1660625299, - 1008239067, - 4178820808, - 4073860558, - 1048794331, - 3238940106, - 2092940796, - 3728124148, - 1446781166, - 3069679516, - 3992128121, - 2012521113, - 4178288323, - 1696645213, - 3610243458, - 1666571350, - 3781469333, - 2520827504, - 376314857, - 2413271734, - 2345031992, - 3775868469, - 1636086185, - 883170454, - 3998789003, - 2386598412, - 3114415799, - 2024377987, - 3661845783, - 2776875307, - 1960150333, - 1344415317, - 3833058746, - 1850519114, - 3111327910, - 3326343307, - 1197469732, - 3477109989, - 2424488062, - 124922384, - 2971717430, + 877946258, + 990571381, + 23816405, + 1823019216, + 2064816296, + 4090654321, + 1795447961, + 3436525802, + 1774958678, + 3699700815, + 1989799600, + 3365842855, + 3970531876, + 1296526433, + 1133951811, + 3590514808, + 3588530903, + 2622815708, + 4088730442, + 3133503845, + 3327497341, + 1474374833, + 3583397575, + 2330124364, + 171748095, + 3917404456, + 2233312515, + 3686539211, + 2245010682, + 566840542, + 489723626, + 1821123189, + 1824596056, + 4161653212, + 2653471186, + 318268482, + 3370331791, + 553413065, + 611455327, + 3605201902, + 2963126253, + 1062589304, + 1615167200, + 2707234370, + 4199759056, + 2948947602, + 1160211382, + 1700873280, + 1938002731, + 3374199334, + 3465724265, + 4294693404, + 3911595968, + 2210748917, + 1852099609, + 2147815801, + 1549272136, + 4034263457, + 3707579339, + 748137300, + 3086794911, + 1789977596, + 1252684263, + 1270032665, + 1794697818, + 2993515774, + 1916813255, + 1630188279, + 3312639522, + 2938764445, + 1788738263, + 442600157, + 769817945, + 3388808204, + 1953112830, + 3607334500, + 1772739516, + 2065897321, + 1861719084, + 3423257822, + 3276171171, + 1891388395, + 4036029458, + 787258682, + 3361104215, + 1995069406, + 338144962, + 3577027166, + 3861579063, + 53129534, + 2318131344, + 2851713263, + 3889534824, + 4188327663, + 1119114863, + 3044759790, + 2125934885, + 674983032, + 2455174041, + 1358105311, + 2046998291, + 3899740658, + 3196420625, + 2814940305, + 2472908028, + 3349364502, + 3863504011, + 210642294, + 1266598164, + 3385216395, + 2302666700, + 2769963752, + 2278237701, + 2778874393, + 1304585334, + 334500048, + 3841074804, + 405695398, + 3178606818, + 911293052, + 3560803149, + 2698467255, + 2138540705, + 1708488703, + 1536010440, + 1740744287, + 3554944520, + 1338537751, + 153759191, + 2392258631, + 2517325767, + 1562137151, + 261181418, + 4057344014, + 3606326527, + 43284398, + 2576883918, + 867864628, + 47851530, + 2812786516, + 973176841, + 225989385, + 3632475922, + 3393105556, + 4119874022, + 305548473, + 1700627044, + 3305100165, + 213266736, + 2645964635, + 1249400399, + 1028029293, + 1979363493, + 352332745, + 2959904930, + 1222014833, + 335719166, + 3034844990, + 226441217, + 1926875481, + 3577159871, + 1775113349, + 3199679329, + 3830679672, + 3983651053, + 2954990823, + 1144108581, + 4193816746, + 2129708150, + 2232005530, + 509576787, + 2804010142, + 3348342939, + 3569501823, + 2480116451, + 3951430741, + 3690246645, + 4096388317, + 3733757548, + 800782378, + 2059710726, + 871457858, + 3428516052, + 1203485640, + 1966769911, + 874102528, + 3987488344, + 4263596666, + 3676547625, + 1030709092, + 3714934002, + 3610741834, + 1152296692, + 369443694, + 2966607051, + 2162159830, + 3673440617, + 735430033, + 588154169, + 65278201, + 645065820, + 2597761643, + 3763337400, + 3659667187, + 1631259481, + 2455931225, + 2718813641, + 2661144156, + 899770672, + 3944823497, + 1758731141, + 2967039682, + 1120523679, + 799682818, + 105499505, + 2163862331, + 3499198771, + 1366869346, + 3064414004, + 2952589547, + 4007837562, + 3407273960, + 94642385, + 2873343633, + 3785938119, + 51406259, + 1548429503, + 2243336831, + 4282623413, + 1996587967, + 689083864, + 401092798, + 1365669796, + 1860664970, + 3793891968, + 1338061059, + 1710252652, + 4182186571, + 3248149325, + 1401531742, + 2816626701, + 3034313985, + 3141649319, + 828841278, + 3911654614, + 25345771, + 3800395270, + 2960398217, + 3279834315, + 190002621, + 4163701349, + 1729602105, + 2048511148, + 463396207, + 3003408681, + 540446737, + 1847801468, + 641291244, + 851056173, + 747867282, + 1352886224, + 4277298058, + 2190596815, + 3330112186, + 835336988, + 3071117793, + 4057287192, + 2360094663, + 2955739814, + 3874768291, + 657711891, + 1291344633, + 3708415927, + 1542001810, + 1699492859, + 2559897149, + 363791730, + 2724635307, + 3720457017, + 4092068051, + 3528369152, + 4273739602, + 2810497229, + 1498459714, + 146421549, + 686612241, ]; static final String payMobApikey = String.fromCharCodes(List.generate( @@ -12480,35 +12516,35 @@ final class _Env { ).map((int i) => _envieddatapayMobApikey[i] ^ _enviedkeypayMobApikey[i])); static const List _enviedkeyintegrationIdPayMobWallet = [ - 4115922943, - 4251618805, - 1493505980, - 3602078569, - 130803293, - 3622179182, - 3588312178, - 3760957507, - 3340963850, - 1567196068, - 3833181690, - 2330978728, - 827930480, + 2066270508, + 2179622687, + 4209350984, + 2023379120, + 918298745, + 4188540777, + 1436949766, + 1673129085, + 3096697544, + 1051366131, + 1844348124, + 3261881089, + 2688865342, ]; static const List _envieddataintegrationIdPayMobWallet = [ - 4115922895, - 4251618759, - 1493505931, - 3602078558, - 130803306, - 3622179165, - 3588312139, - 3760957467, - 3340963960, - 1567196156, - 3833181590, - 2330978794, - 827930396, + 2066270492, + 2179622701, + 4209351039, + 2023379079, + 918298702, + 4188540762, + 1436949823, + 1673128997, + 3096697530, + 1051366059, + 1844348080, + 3261881155, + 2688865362, ]; static final String integrationIdPayMobWallet = String.fromCharCodes( @@ -12521,41 +12557,41 @@ final class _Env { _enviedkeyintegrationIdPayMobWallet[i])); static const List _enviedkeysmsPasswordEgypt = [ - 3138230343, - 1326222164, - 3118186328, - 4207416562, - 829884857, - 1716268631, - 1602844974, - 747110482, - 3722519950, - 4264622573, - 88793360, - 790792568, - 1880811191, - 2069036204, - 2997704925, - 3424900395, + 1036102193, + 3328298157, + 1009522011, + 2154832644, + 146526601, + 3215783358, + 3428970750, + 833300789, + 2123059710, + 1796562644, + 1137775961, + 3063260733, + 2341043278, + 574608647, + 1146191723, + 2004583682, ]; static const List _envieddatasmsPasswordEgypt = [ - 3138230285, - 1326222205, - 3118186254, - 4207416474, - 829884804, - 1716268582, - 1602845004, - 747110525, - 3722520014, - 4264622496, - 88793416, - 790792458, - 1880811247, - 2069036224, - 2997704863, - 3424900423, + 1036102267, + 3328298116, + 1009521933, + 2154832748, + 146526644, + 3215783375, + 3428970652, + 833300762, + 2123059646, + 1796562585, + 1137775873, + 3063260751, + 2341043222, + 574608747, + 1146191657, + 2004583790, ]; static final String smsPasswordEgypt = String.fromCharCodes( @@ -12567,73 +12603,73 @@ final class _Env { _envieddatasmsPasswordEgypt[i] ^ _enviedkeysmsPasswordEgypt[i])); static const List _enviedkeyocpApimSubscriptionKey = [ - 1931975639, - 2185863135, - 4220171454, - 3610376743, - 2054550276, - 391794379, - 1163717857, - 2180355325, - 2379770853, - 821385067, - 2812884881, - 1329557577, - 787448902, - 2379599119, - 440198354, - 1336593156, - 2916424230, - 232959445, - 1478245248, - 3469154970, - 2039886385, - 2439505193, - 4198355199, - 1418624482, - 255219832, - 89731545, - 1216581514, - 2813421591, - 146472500, - 1717200606, - 2420080655, - 2747227835, + 2583408717, + 3139137085, + 3400535982, + 3371139763, + 2618732941, + 1135353242, + 2909433580, + 3199672204, + 1367475262, + 2731871611, + 2779704131, + 500958052, + 199224277, + 883083230, + 182004026, + 2635205194, + 2017358985, + 339330106, + 3582294687, + 3722754054, + 2438197565, + 453063356, + 1271826618, + 699223625, + 3158057028, + 514742855, + 2520546711, + 3825184791, + 140749722, + 1664915553, + 2427400812, + 2458460667, ]; static const List _envieddataocpApimSubscriptionKey = [ - 1931975655, - 2185863097, - 4220171403, - 3610376771, - 2054550373, - 391794344, - 1163717762, - 2180355230, - 2379770753, - 821384969, - 2812884978, - 1329557548, - 787448946, - 2379599166, - 440198369, - 1336593205, - 2916424260, - 232959460, - 1478245345, - 3469154991, - 2039886423, - 2439505168, - 4198355146, - 1418624464, - 255219777, - 89731552, - 1216581564, - 2813421604, - 146472452, - 1717200620, - 2420080746, - 2747227784, + 2583408765, + 3139137115, + 3400535963, + 3371139799, + 2618733036, + 1135353337, + 2909433487, + 3199672303, + 1367475290, + 2731871513, + 2779704096, + 500957953, + 199224289, + 883083247, + 182003977, + 2635205243, + 2017359083, + 339330059, + 3582294782, + 3722754099, + 2438197595, + 453063301, + 1271826575, + 699223675, + 3158057085, + 514742910, + 2520546721, + 3825184804, + 140749738, + 1664915539, + 2427400713, + 2458460616, ]; static final String ocpApimSubscriptionKey = String.fromCharCodes( @@ -12646,135 +12682,135 @@ final class _Env { _enviedkeyocpApimSubscriptionKey[i])); static const List _enviedkeychatGPTkeySeferNew4 = [ - 1695961864, - 1530478930, - 246948936, - 2531632766, - 996346896, - 2222348039, - 3873744652, - 3995059719, - 2137508477, - 4076228460, - 3329001636, - 1409154593, - 2158665704, - 2273914826, - 3215366428, - 2520856462, - 2655041840, - 2137099365, - 183303318, - 1778772891, - 474614115, - 936983322, - 2064617659, - 4010228543, - 2538797926, - 486500240, - 1223506117, - 2357872568, - 2908597084, - 2157120258, - 451553505, - 1333346621, - 932388216, - 3009785040, - 1294383786, - 1375524661, - 2419236131, - 3974346840, - 3913245476, - 1226655492, - 2952353638, - 707472353, - 803462797, - 1491717732, - 3622224479, - 2567166767, - 1467054684, - 314563993, - 1551564139, - 4052957610, - 3371552759, - 3495299575, - 1271523830, - 1288000288, - 945722017, - 1120748416, - 2295552349, - 946370134, - 1898524904, - 4005622178, - 2618947139, - 4110801980, - 1743164680, + 3406563435, + 3563034046, + 690649274, + 1554978139, + 2398992838, + 3639163103, + 2637637167, + 1772006303, + 938009264, + 2696239346, + 2751257740, + 3502166065, + 501613147, + 1577851406, + 375602274, + 2345443321, + 117707980, + 813125276, + 302861949, + 2000329884, + 642188689, + 4153850329, + 80129667, + 3196520857, + 1257144832, + 2517661876, + 3483222691, + 1853187444, + 2113711216, + 2506031566, + 2841945112, + 852129076, + 119027544, + 699426537, + 1235099854, + 3619798932, + 515995761, + 1863347877, + 2321798745, + 3540956111, + 157038889, + 4132801943, + 1528823742, + 1694756598, + 1915757126, + 3217481261, + 509534292, + 1017992970, + 1995797155, + 1353983403, + 3381841113, + 37576376, + 26142595, + 119998388, + 932911126, + 4200148166, + 689018464, + 293890884, + 1656791519, + 533099226, + 1586731781, + 1074321930, + 1198257812, ]; static const List _envieddatachatGPTkeySeferNew4 = [ - 1695961970, - 1530478901, - 246948965, - 2531632648, - 996347004, - 2222348142, - 3873744745, - 3995059754, - 2137508431, - 4076228352, - 3329001621, - 1409154683, - 2158665604, - 2273914810, - 3215366500, - 2520856551, - 2655041885, - 2137099305, - 183303388, - 1778772909, - 474614036, - 936983371, - 2064617716, - 4010228553, - 2538797828, - 486500338, - 1223506161, - 2357872620, - 2908597042, - 2157120321, - 451553496, - 1333346661, - 932388106, - 3009785000, - 1294383821, - 1375524704, - 2419236198, - 3974346785, - 3913245554, - 1226655573, - 2952353583, - 707472276, - 803462843, - 1491717680, - 3622224406, - 2567166827, - 1467054696, - 314564072, - 1551564091, - 4052957598, - 3371552689, - 3495299490, - 1271523747, - 1288000337, - 945722062, - 1120748499, - 2295552360, - 946370062, - 1898524826, - 4005622266, - 2618947119, - 4110802046, - 1743164772, + 3406563345, + 3563034073, + 690649239, + 1554978093, + 2398992810, + 3639163062, + 2637637194, + 1772006322, + 938009218, + 2696239262, + 2751257789, + 3502166123, + 501613111, + 1577851518, + 375602202, + 2345443216, + 117707937, + 813125328, + 302861879, + 2000329898, + 642188774, + 4153850248, + 80129740, + 3196520943, + 1257144930, + 2517661910, + 3483222679, + 1853187360, + 2113711134, + 2506031501, + 2841945121, + 852129132, + 119027498, + 699426449, + 1235099817, + 3619798977, + 515995700, + 1863347932, + 2321798671, + 3540956062, + 157038944, + 4132802018, + 1528823688, + 1694756514, + 1915757071, + 3217481321, + 509534304, + 1017993083, + 1995797235, + 1353983391, + 3381841055, + 37576429, + 26142678, + 119998405, + 932911225, + 4200148117, + 689018453, + 293890844, + 1656791469, + 533099138, + 1586731881, + 1074321992, + 1198257912, ]; static final String chatGPTkeySeferNew4 = String.fromCharCodes( @@ -12787,239 +12823,239 @@ final class _Env { _enviedkeychatGPTkeySeferNew4[i])); static const List _enviedkeyanthropicAIkeySeferNew = [ - 346455285, - 3148083938, - 2411902703, - 1908761616, - 3234471499, - 2405916588, - 3520866747, - 729399409, - 4284818629, - 914382030, - 408895964, - 50309340, - 1746184523, - 3630155109, - 2960500143, - 1577162029, - 241332952, - 664392790, - 546337512, - 2408571014, - 807144759, - 550817881, - 3336140904, - 4162385500, - 425797919, - 851806386, - 2899888330, - 2221963421, - 1106535332, - 1915447445, - 1696999941, - 3793639804, - 1261888061, - 2999185831, - 2733073195, - 2292706397, - 706377046, - 22717122, - 1462844257, - 1233962929, - 3181354061, - 3387146463, - 276914797, - 3297561679, - 2534971077, - 2090946941, - 191145128, - 115337763, - 3211917186, - 3505494982, - 3044990217, - 4178608287, - 3551314126, - 1191879564, - 392097861, - 1291480393, - 220022838, - 483043359, - 1195522524, - 723264457, - 1053605931, - 2511253499, - 2158522977, - 13039096, - 1912647977, - 2836307004, - 187694109, - 194760542, - 389391720, - 1323755735, - 1521561904, - 362860498, - 3511451178, - 1605837096, - 3196755939, - 2972541361, - 2110493123, - 3937697682, - 1564039271, - 554328097, - 828880203, - 823859607, - 104355668, - 1973530294, - 322604372, - 1277632707, - 1080316009, - 187252020, - 3864909910, - 1832064361, - 3794248508, - 2169489881, - 541720450, - 3711095397, - 149538454, - 388922902, - 1534310779, - 2576155506, - 765585710, - 2714442819, - 1294957788, - 1195702680, - 1083298307, - 1625696990, - 2141668453, - 1296693144, - 2110174357, - 1752030261, - 3437028342, - 859100509, - 793943962, - 966523906, - 373447080, - 3047412441, - 2034266248, + 1774799936, + 4115313919, + 3222156615, + 1546388780, + 378729630, + 4251115069, + 1979741490, + 1477855026, + 3897515850, + 1777461771, + 3243844657, + 1743983638, + 160886277, + 959562429, + 2949562129, + 4164593423, + 1954648346, + 1729455482, + 2596530700, + 2841153017, + 3299000959, + 2379089744, + 3801341164, + 4166410547, + 311752772, + 719169069, + 1251108655, + 528113318, + 1672114786, + 1309795872, + 1452399026, + 983970801, + 3790281399, + 2018982743, + 2679552167, + 1071484190, + 3918740730, + 167913724, + 3588254069, + 270495646, + 1098733191, + 2690937116, + 2429000554, + 1801335101, + 3364180440, + 1660330751, + 1671116610, + 3892754616, + 3802372244, + 1118700780, + 2139139595, + 1148740618, + 3164384937, + 482525141, + 490669876, + 1058435112, + 255814950, + 3262547038, + 3010417694, + 361682477, + 3462316701, + 3228240998, + 121976268, + 3984241679, + 1225063411, + 3464430938, + 882294470, + 1108727021, + 2416288074, + 3786161809, + 2271179934, + 2708159501, + 719018249, + 3887425679, + 990488566, + 2720536411, + 3066958953, + 3917248453, + 2517290334, + 835064590, + 785246896, + 1532626184, + 2052212562, + 2558974963, + 2364432277, + 1250335244, + 812639328, + 1610646406, + 1139612461, + 174768355, + 2085213186, + 176956703, + 3090364213, + 2582716285, + 3790544145, + 2285580486, + 284111530, + 792844130, + 1960788626, + 1607983971, + 408107270, + 116464010, + 4113203535, + 2301312800, + 4175271726, + 3821564429, + 2159091607, + 2671152551, + 895224109, + 472365106, + 2692906889, + 1641928316, + 397083448, + 1835071686, + 2561251042, ]; static const List _envieddataanthropicAIkeySeferNew = [ - 346455183, - 3148083845, - 2411902658, - 1908761697, - 3234471465, - 2405916623, - 3520866710, - 729399296, - 4284818611, - 914381985, - 408895983, - 50309349, - 1746184550, - 3630155016, - 2960500161, - 1577162009, - 241332878, - 664392754, - 546337445, - 2408571095, - 807144706, - 550817847, - 3336140829, - 4162385430, - 425798010, - 851806459, - 2899888275, - 2221963509, - 1106535401, - 1915447515, - 1696999985, - 3793639724, - 1261888121, - 2999185918, - 2733073241, - 2292706410, - 706376999, - 22717101, - 1462844185, - 1233962882, - 3181354080, - 3387146411, - 276914783, - 3297561638, - 2534971124, - 2090946865, - 191145152, - 115337748, - 3211917283, - 3505494920, - 3044990301, - 4178608347, - 3551314088, - 1191879637, - 392097795, - 1291480420, - 220022897, - 483043449, - 1195522532, - 723264446, - 1053605955, - 2511253422, - 2158522923, - 13039010, - 1912648042, - 2836307023, - 187694121, - 194760553, - 389391661, - 1323755698, - 1521561941, - 362860478, - 3511451233, - 1605837126, - 3196755931, - 2972541422, - 2110493078, - 3937697777, - 1564039178, - 554328180, - 828880134, - 823859706, - 104355645, - 1973530341, - 322604312, - 1277632674, - 1080315919, - 187251972, - 3864909827, - 1832064291, - 3794248539, - 2169489897, - 541720518, - 3711095315, - 149538499, - 388923002, - 1534310698, - 2576155392, - 765585770, - 2714442807, - 1294957809, - 1195702703, - 1083298357, - 1625696925, - 2141668407, - 1296693226, - 2110174462, - 1752030308, - 3437028263, - 859100421, - 793944040, - 966523994, - 373447108, - 3047412379, - 2034266340, + 1774799930, + 4115313816, + 3222156650, + 1546388829, + 378729724, + 4251115102, + 1979741471, + 1477855043, + 3897515836, + 1777461860, + 3243844610, + 1743983663, + 160886312, + 959562448, + 2949562239, + 4164593467, + 1954648396, + 1729455390, + 2596530753, + 2841152936, + 3299000906, + 2379089726, + 3801341081, + 4166410617, + 311752737, + 719169124, + 1251108726, + 528113358, + 1672114735, + 1309795950, + 1452398982, + 983970721, + 3790281459, + 2018982670, + 2679552213, + 1071484201, + 3918740619, + 167913619, + 3588253965, + 270495661, + 1098733226, + 2690937192, + 2429000536, + 1801335124, + 3364180457, + 1660330675, + 1671116586, + 3892754575, + 3802372341, + 1118700706, + 2139139679, + 1148740686, + 3164384975, + 482525068, + 490669938, + 1058435077, + 255815009, + 3262547000, + 3010417702, + 361682522, + 3462316789, + 3228240947, + 121976198, + 3984241749, + 1225063344, + 3464430889, + 882294514, + 1108727002, + 2416288015, + 3786161908, + 2271180027, + 2708159585, + 719018306, + 3887425761, + 990488526, + 2720536324, + 3066958908, + 3917248422, + 2517290291, + 835064667, + 785246973, + 1532626277, + 2052212539, + 2558974880, + 2364432345, + 1250335341, + 812639238, + 1610646454, + 1139612536, + 174768297, + 2085213285, + 176956719, + 3090364273, + 2582716171, + 3790544196, + 2285580458, + 284111611, + 792844048, + 1960788694, + 1607983895, + 408107307, + 116464061, + 4113203577, + 2301312867, + 4175271804, + 3821564543, + 2159091708, + 2671152630, + 895224188, + 472365162, + 2692907003, + 1641928228, + 397083476, + 1835071620, + 2561250958, ]; static final String anthropicAIkeySeferNew = String.fromCharCodes( @@ -13032,135 +13068,135 @@ final class _Env { _enviedkeyanthropicAIkeySeferNew[i])); static const List _enviedkeyllama3Key = [ - 1380882360, - 2369040535, - 4068496664, - 294904948, - 2744761061, - 2760091855, - 146240744, - 3946761209, - 1947315119, - 140552215, - 2676266939, - 3623436093, - 2968253112, - 3939606285, - 2776211038, - 3584347301, - 2018503609, - 1571970861, - 2695650108, - 2412507135, - 1512017808, - 2185923258, - 35844061, - 3902499829, - 842612569, - 996499560, - 2749441771, - 2574691265, - 2886524832, - 2689663510, - 1950003593, - 335732581, - 2836919679, - 1068927990, - 3677446066, - 1876160106, - 3444338251, - 2688042769, - 271292447, - 956216587, - 3541791010, - 3306662401, - 4173712245, - 2146429959, - 4107027239, - 2621365369, - 228941231, - 92040768, - 377264621, - 2262223440, - 3622910832, - 2704244892, - 1408346179, - 3446693656, - 3595367460, - 3353389792, - 2082150642, - 1799227616, - 3624172414, - 2276644242, - 588126981, - 721525016, - 193677945, + 308392153, + 4158758615, + 982779006, + 3149955873, + 1385267168, + 141885099, + 1096489902, + 2841193549, + 687730870, + 563592626, + 313475201, + 2241326636, + 892791234, + 2469874221, + 575276958, + 1494531917, + 2767395238, + 2624935926, + 3147383533, + 2963920132, + 1413102478, + 304928473, + 1491112895, + 439438177, + 2400647419, + 318979792, + 1749752019, + 1314764142, + 1750275808, + 3667490716, + 1199385559, + 1965244755, + 229689763, + 1947960280, + 3663549076, + 473770641, + 2884246786, + 2276123140, + 3444819483, + 3614132346, + 236508355, + 2239990175, + 2082265405, + 2051703147, + 624004786, + 2370235192, + 2673579557, + 2503825690, + 1524422255, + 2319767976, + 1618130579, + 4055760735, + 3483015048, + 733873214, + 329946775, + 3889718945, + 156964139, + 3979122586, + 142356391, + 33407231, + 3721123503, + 3443622753, + 3230200567, ]; static const List _envieddatallama3Key = [ - 1380882387, - 2369040621, - 4068496767, - 294904875, - 2744760976, - 2760091803, - 146240688, - 3946761088, - 1947315100, - 140552306, - 2676266882, - 3623436153, - 2968253178, - 3939606383, - 2776210973, - 3584347380, - 2018503560, - 1571970923, - 2695650130, - 2412507058, - 1512017879, - 2185923287, - 35844005, - 3902499756, - 842612526, - 996499516, - 2749441696, - 2574691256, - 2886524883, - 2689663598, - 1950003632, - 335732528, - 2836919596, - 1068927943, - 3677446096, - 1876160031, - 3444338233, - 2688042857, - 271292501, - 956216673, - 3541790998, - 3306662503, - 4173712179, - 2146430064, - 4107027304, - 2621365267, - 228941258, - 92040820, - 377264545, - 2262223370, - 3622910770, - 2704244937, - 1408346117, - 3446693715, - 3595367534, - 3353389747, - 2082150595, - 1799227576, - 3624172300, - 2276644298, - 588127081, - 721525082, - 193677845, + 308392114, + 4158758573, + 982778905, + 3149955966, + 1385267093, + 141885183, + 1096489974, + 2841193524, + 687730821, + 563592663, + 313475256, + 2241326696, + 892791168, + 2469874255, + 575277021, + 1494531868, + 2767395223, + 2624935856, + 3147383427, + 2963920201, + 1413102537, + 304928436, + 1491112903, + 439438136, + 2400647308, + 318979716, + 1749751960, + 1314764055, + 1750275731, + 3667490788, + 1199385582, + 1965244678, + 229689840, + 1947960297, + 3663549174, + 473770724, + 2884246896, + 2276123260, + 3444819537, + 3614132240, + 236508407, + 2239990265, + 2082265467, + 2051703068, + 624004861, + 2370235218, + 2673579584, + 2503825710, + 1524422179, + 2319768050, + 1618130641, + 4055760650, + 3483015118, + 733873269, + 329946845, + 3889719026, + 156964122, + 3979122626, + 142356437, + 33407143, + 3721123523, + 3443622691, + 3230200475, ]; static final String llama3Key = String.fromCharCodes(List.generate( @@ -13170,279 +13206,279 @@ final class _Env { ).map((int i) => _envieddatallama3Key[i] ^ _enviedkeyllama3Key[i])); static const List _enviedkeypayMobOutClientSecrret = [ - 714615910, - 1507264963, - 2453835768, - 206550317, - 926860385, - 3201248996, - 3264490113, - 1884247868, - 3319379291, - 294187455, - 4160180231, - 1902607083, - 3169649968, - 2682465042, - 4175376485, - 605434455, - 2217319601, - 1640001330, - 698936804, - 1515137955, - 3983020021, - 3611395178, - 1278954086, - 1885169484, - 65349222, - 3214614528, - 1902740823, - 1680692836, - 626877049, - 4159571502, - 1375600542, - 4167719357, - 987123721, - 1034635224, - 102408480, - 1510382570, - 4197905340, - 1742229621, - 1769919727, - 3206584930, - 1413166606, - 1180461407, - 3827460746, - 1795331620, - 3837646538, - 913823035, - 3970133888, - 26815920, - 2806002912, - 916596548, - 1623325860, - 221787865, - 2487627557, - 344149189, - 539140282, - 80018240, - 3702380883, - 2966736121, - 1906177422, - 1677563276, - 369581176, - 937965397, - 3201377856, - 424684015, - 1158337778, - 1148566883, - 1810647729, - 947072086, - 1626201505, - 1479050998, - 3112660626, - 3310099422, - 102881260, - 297657426, - 540832443, - 3375829403, - 675837798, - 1687922426, - 4283890544, - 2302989493, - 1237465607, - 364689358, - 3245556723, - 2403935266, - 1495675777, - 1023587194, - 4164072166, - 1065940442, - 1189929872, - 359609402, - 3609835382, - 1044407014, - 1222918689, - 616078677, - 101885188, - 3826867152, - 918277207, - 2330795904, - 1250847458, - 1711792591, - 2214637367, - 1472592958, - 2749529701, - 3724983558, - 232346607, - 2115963850, - 337483082, - 2451244499, - 1246287928, - 4080138856, - 2636001506, - 1924258009, - 3699121485, - 121858455, - 1164380424, - 1850303471, - 2960206629, - 639738198, - 1630218484, - 1086398327, - 123687187, - 2851885272, - 2174596542, - 880769286, - 2543705560, - 1288116516, - 2590103516, - 952185401, - 1102165020, - 1125890086, - 1359037925, - 2041542273, - 1884745451, - 3158243764, - 409784734, + 1401068748, + 2852926941, + 7309612, + 1220270238, + 2225174103, + 1809021950, + 681502915, + 1041622274, + 204886644, + 2510054244, + 1600712160, + 447707884, + 3739788400, + 2711169315, + 3013654206, + 138623278, + 2760079478, + 2293148410, + 2961417926, + 2195431184, + 340079548, + 2278256035, + 1390725642, + 1592619301, + 1654163042, + 3726373492, + 3404431385, + 1602641867, + 1931893044, + 4201216849, + 1467354191, + 3163854595, + 1209890042, + 402494834, + 247525392, + 3540720369, + 1681650873, + 1895858053, + 4085107428, + 811763435, + 2651306246, + 3221296577, + 3349009092, + 2049066983, + 2459049135, + 266771154, + 317642173, + 223911294, + 938180301, + 2457719457, + 1624489059, + 1089142449, + 1586059837, + 1454105334, + 2402239425, + 3983300033, + 1413704133, + 939762337, + 3791440635, + 1510012782, + 3847119353, + 4102874597, + 1325180195, + 1716945219, + 817591451, + 3505432673, + 151336573, + 3202100121, + 3481967218, + 4035017012, + 2587189393, + 1539541222, + 1214896486, + 187849261, + 1117745377, + 4112610466, + 2176732092, + 2818078659, + 310581177, + 1774722501, + 4215806903, + 31258578, + 3940850890, + 4189475214, + 1203541873, + 1253920281, + 1599786361, + 587131240, + 3972144197, + 378948903, + 2878531847, + 1325449357, + 2637176925, + 1429419831, + 1165038902, + 135116912, + 803089253, + 1110376659, + 631145643, + 792720530, + 2746536843, + 636317943, + 3246112219, + 3743508984, + 3274289987, + 1646025409, + 2088190630, + 2993345997, + 269781813, + 1105808031, + 3993656546, + 302451567, + 3290855526, + 827949003, + 736131779, + 2802076939, + 1422305308, + 836575547, + 1232893195, + 3608048317, + 119183246, + 1729831070, + 3875720567, + 4270978783, + 974762975, + 1665671485, + 3202954854, + 376161690, + 1074848150, + 1193482534, + 2950856016, + 2171813003, + 2198733550, + 2756081685, + 2406301479, ]; static const List _envieddatapayMobOutClientSecrret = [ - 714615838, - 1507264954, - 2453835666, - 206550343, - 926860339, - 3201248904, - 3264490218, - 1884247901, - 3319379251, - 294187509, - 4160180298, - 1902607067, - 3169650024, - 2682465137, - 4175376470, - 605434479, - 2217319654, - 1640001368, - 698936741, - 1515138003, - 3983019958, - 3611395109, - 1278953998, - 1885169524, - 65349124, - 3214614646, - 1902740784, - 1680692776, - 626876992, - 4159571549, - 1375600626, - 4167719419, - 987123833, - 1034635158, - 102408516, - 1510382503, - 4197905285, - 1742229548, - 1769919626, - 3206584865, - 1413166715, - 1180461414, - 3827460811, - 1795331660, - 3837646470, - 913823050, - 3970133986, - 26815967, - 2806002859, - 916596489, - 1623325940, - 221787821, - 2487627592, - 344149142, - 539140300, - 80018211, - 3702380897, - 2966736055, - 1906177463, - 1677563331, - 369581132, - 937965345, - 3201377816, - 424683927, - 1158337716, - 1148566831, - 1810647783, - 947072100, - 1626201579, - 1479050935, - 3112660676, - 3310099432, - 102881183, - 297657382, - 540832505, - 3375829448, - 675837746, - 1687922363, - 4283890487, - 2302989555, - 1237465664, - 364689293, - 3245556645, - 2403935319, - 1495675875, - 1023587133, - 4164072067, - 1065940460, - 1189929949, - 359609460, - 3609835270, - 1044406917, - 1222918678, - 616078616, - 101885310, - 3826867098, - 918277177, - 2330795994, - 1250847441, - 1711792540, - 2214637406, - 1472593002, - 2749529683, - 3724983617, - 232346527, - 2115963819, - 337483068, - 2451244433, - 1246287959, - 4080138795, - 2636001454, - 1924257934, - 3699121446, - 121858498, - 1164380542, - 1850303417, - 2960206663, - 639738162, - 1630218407, - 1086398259, - 123687282, - 2851885205, - 2174596494, - 880769404, - 2543705488, - 1288116562, - 2590103465, - 952185467, - 1102165075, - 1125890174, - 1359037847, - 2041542361, - 1884745351, - 3158243830, - 409784818, + 1401068724, + 2852926884, + 7309638, + 1220270324, + 2225174021, + 1809021842, + 681502888, + 1041622371, + 204886556, + 2510054190, + 1600712109, + 447707868, + 3739788328, + 2711169344, + 3013654157, + 138623254, + 2760079393, + 2293148304, + 2961417863, + 2195431264, + 340079615, + 2278256108, + 1390725730, + 1592619293, + 1654162944, + 3726373378, + 3404431486, + 1602641799, + 1931893005, + 4201216802, + 1467354147, + 3163854661, + 1209889930, + 402494780, + 247525492, + 3540720316, + 1681650816, + 1895858140, + 4085107329, + 811763368, + 2651306355, + 3221296632, + 3349009029, + 2049066895, + 2459049187, + 266771107, + 317642207, + 223911185, + 938180230, + 2457719532, + 1624489011, + 1089142469, + 1586059856, + 1454105253, + 2402239415, + 3983300002, + 1413704183, + 939762415, + 3791440578, + 1510012705, + 3847119309, + 4102874513, + 1325180283, + 1716945211, + 817591517, + 3505432621, + 151336491, + 3202100139, + 3481967160, + 4035017077, + 2587189447, + 1539541200, + 1214896405, + 187849305, + 1117745315, + 4112610545, + 2176732136, + 2818078594, + 310581246, + 1774722435, + 4215806960, + 31258513, + 3940850844, + 4189475323, + 1203541779, + 1253920350, + 1599786268, + 587131230, + 3972144136, + 378948969, + 2878531959, + 1325449454, + 2637176938, + 1429419898, + 1165038924, + 135116858, + 803089163, + 1110376585, + 631145624, + 792720577, + 2746536930, + 636317859, + 3246112237, + 3743508927, + 3274289971, + 1646025376, + 2088190672, + 2993345935, + 269781850, + 1105808092, + 3993656494, + 302451512, + 3290855437, + 827948958, + 736131765, + 2802077021, + 1422305406, + 836575583, + 1232893272, + 3608048377, + 119183343, + 1729831123, + 3875720519, + 4270978725, + 974762903, + 1665671499, + 3202954771, + 376161752, + 1074848217, + 1193482622, + 2950855970, + 2171813075, + 2198733442, + 2756081751, + 2406301515, ]; static final String payMobOutClientSecrret = String.fromCharCodes( @@ -13455,103 +13491,103 @@ final class _Env { _enviedkeypayMobOutClientSecrret[i])); static const List _enviedkeypayMobOutClient_id = [ - 3222445139, - 520890807, - 3943504473, - 3534765713, - 2359754122, - 3463251327, - 1248128135, - 794219966, - 1921063128, - 1871870486, - 649481688, - 2119668345, - 4009933848, - 4100801049, - 2031810819, - 310949809, - 1565166544, - 24394542, - 1060347996, - 839968486, - 22251967, - 1917423512, - 4184093480, - 1584165707, - 3606318766, - 1782110151, - 3241495001, - 3765893238, - 921701780, - 1521726109, - 2233516242, - 960803342, - 2347439187, - 278758149, - 1047865471, - 1355035703, - 436377810, - 2551562631, - 4077435876, - 112066145, - 3626591077, - 825340481, - 3104030368, - 2053662574, - 3162545171, - 1387355251, - 304396007, + 2706047868, + 2588692946, + 2641097301, + 4259575080, + 244793647, + 3990250407, + 3868644691, + 3866649017, + 2867711495, + 3666992980, + 3172122632, + 1574874074, + 2359181060, + 2082319323, + 1532227728, + 700856499, + 677493712, + 1664165460, + 1454264780, + 1279201775, + 2697895276, + 3462338334, + 422619954, + 972799563, + 2199129212, + 602887297, + 1520259867, + 3274221891, + 3723098123, + 1712911046, + 4012869951, + 2895804605, + 3033221215, + 1914940416, + 2747279918, + 2576389996, + 3413627825, + 3240731854, + 2771149372, + 3443093041, + 3726373400, + 2972420084, + 1435600490, + 439494205, + 1751083113, + 367769074, + 132705350, ]; static const List _envieddatapayMobOutClient_id = [ - 3222445065, - 520890759, - 3943504492, - 3534765796, - 2359754238, - 3463251275, - 1248128191, - 794219994, - 1921063054, - 1871870589, - 649481651, - 2119668266, - 4009933866, - 4100801150, - 2031810890, - 310949763, - 1565166506, - 24394571, - 1060347954, - 839968416, - 22252025, - 1917423611, - 4184093539, - 1584165688, - 3606318792, - 1782110083, - 3241494930, - 3765893136, - 921701852, - 1521726172, - 2233516167, - 960803390, - 2347439108, - 278758208, - 1047865395, - 1355035718, - 436377753, - 2551562750, - 4077435822, - 112066129, - 3626591017, - 825340441, - 3104030418, - 2053662518, - 3162545279, - 1387355185, - 304395915, + 2706047782, + 2588692962, + 2641097312, + 4259575133, + 244793691, + 3990250387, + 3868644715, + 3866649053, + 2867711569, + 3666992959, + 3172122723, + 1574873993, + 2359181110, + 2082319292, + 1532227801, + 700856449, + 677493674, + 1664165425, + 1454264738, + 1279201705, + 2697895210, + 3462338429, + 422620025, + 972799544, + 2199129114, + 602887365, + 1520259920, + 3274221861, + 3723098179, + 1712910983, + 4012869994, + 2895804557, + 3033221128, + 1914940485, + 2747279970, + 2576389917, + 3413627898, + 3240731831, + 2771149430, + 3443092993, + 3726373460, + 2972420012, + 1435600408, + 439494245, + 1751083013, + 367769008, + 132705322, ]; static final String payMobOutClient_id = String.fromCharCodes( @@ -13563,73 +13599,73 @@ final class _Env { _envieddatapayMobOutClient_id[i] ^ _enviedkeypayMobOutClient_id[i])); static const List _enviedkeypayMobOutPassword = [ - 3585616986, - 1598345924, - 2538130625, - 2426891531, - 3050812005, - 1324073243, - 416141524, - 297657577, - 1666084249, - 4142464383, - 4201987451, - 2115996973, - 1209127367, - 1949649152, - 988134459, - 743467721, - 1010668493, - 1885506639, - 3269700359, - 2819348246, - 2335381345, - 3360683012, - 322910884, - 3265419820, - 1437321377, - 1704356642, - 3172196321, - 1035484426, - 1327426644, - 3019808180, - 971611994, - 888050326, + 4117879067, + 4177992814, + 1707360739, + 474099042, + 836026737, + 4222508434, + 34728452, + 2579868690, + 315454297, + 4292997604, + 4221309985, + 3223671112, + 2133814021, + 4064322352, + 3128447263, + 3960859082, + 1057176922, + 3729780277, + 4089107523, + 1009047973, + 1403091786, + 1347590320, + 4227439091, + 1298645704, + 1703200248, + 1173335146, + 1364974508, + 3124789370, + 3917602715, + 2268510062, + 2967700802, + 2095458888, ]; static const List _envieddatapayMobOutPassword = [ - 3585616926, - 1598345974, - 2538130619, - 2426891585, - 3050811939, - 1324073315, - 416141503, - 297657516, - 1666084282, - 4142464307, - 4201987381, - 2115996998, - 1209127412, - 1949649270, - 988134465, - 743467770, - 1010668533, - 1885506613, - 3269700405, - 2819348338, - 2335381304, - 3360683132, - 322910932, - 3265419874, - 1437321415, - 1704356725, - 3172196281, - 1035484536, - 1327426572, - 3019808216, - 971611928, - 888050426, + 4117879135, + 4177992796, + 1707360665, + 474098984, + 836026679, + 4222508522, + 34728559, + 2579868759, + 315454330, + 4292997544, + 4221310063, + 3223671075, + 2133814070, + 4064322374, + 3128447333, + 3960859129, + 1057176930, + 3729780303, + 4089107569, + 1009048001, + 1403091731, + 1347590344, + 4227438979, + 1298645638, + 1703200158, + 1173335101, + 1364974580, + 3124789256, + 3917602755, + 2268509954, + 2967700736, + 2095458852, ]; static final String payMobOutPassword = String.fromCharCodes( @@ -13641,57 +13677,57 @@ final class _Env { _envieddatapayMobOutPassword[i] ^ _enviedkeypayMobOutPassword[i])); static const List _enviedkeypayMobOutUserName = [ - 2334944438, - 4104795632, - 2687744000, - 1987150422, - 1596380427, - 1572655388, - 3174032422, - 2010410931, - 1100454754, - 3825428439, - 2896442123, - 2350899857, - 3630009690, - 3372513542, - 664768283, - 2957686089, - 854243156, - 1968415637, - 3361738619, - 224477122, - 2248986807, - 4058630406, - 4201099137, - 773754026, + 2307033185, + 2818738602, + 2608114765, + 2801400093, + 3881127907, + 1822912763, + 3831048450, + 1062373761, + 1266949160, + 2988365597, + 547072755, + 2834290134, + 2196011376, + 627283096, + 1553087477, + 1107709085, + 2087146629, + 39030521, + 3443332468, + 2931076625, + 3067847490, + 1844056965, + 3767489181, + 545918313, ]; static const List _envieddatapayMobOutUserName = [ - 2334944460, - 4104795546, - 2687744117, - 1987150396, - 1596380519, - 1572655427, - 3174032471, - 2010410949, - 1100454669, - 3825428360, - 2896442221, - 2350899942, - 3630009649, - 3372513644, - 664768381, - 2957686062, - 854243134, - 1968415737, - 3361738531, - 224477104, - 2248986863, - 4058630506, - 4201099203, - 773754054, + 2307033115, + 2818738624, + 2608114744, + 2801400183, + 3881127823, + 1822912676, + 3831048563, + 1062373879, + 1266949191, + 2988365634, + 547072661, + 2834290081, + 2196011291, + 627283186, + 1553087379, + 1107709178, + 2087146735, + 39030421, + 3443332396, + 2931076707, + 3067847450, + 1844057065, + 3767489247, + 545918213, ]; static final String payMobOutUserName = String.fromCharCodes( @@ -13702,9 +13738,9 @@ final class _Env { ).map((int i) => _envieddatapayMobOutUserName[i] ^ _enviedkeypayMobOutUserName[i])); - static const List _enviedkeyA = [363925841]; + static const List _enviedkeyA = [3927393825]; - static const List _envieddataA = [363925760]; + static const List _envieddataA = [3927393904]; static final String A = String.fromCharCodes(List.generate( _envieddataA.length, @@ -13712,9 +13748,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataA[i] ^ _enviedkeyA[i])); - static const List _enviedkeyB = [2656355485]; + static const List _enviedkeyB = [1816253219]; - static const List _envieddataB = [2656355525]; + static const List _envieddataB = [1816253307]; static final String B = String.fromCharCodes(List.generate( _envieddataB.length, @@ -13722,9 +13758,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataB[i] ^ _enviedkeyB[i])); - static const List _enviedkeyC = [247870597]; + static const List _enviedkeyC = [1941444907]; - static const List _envieddataC = [247870659]; + static const List _envieddataC = [1941444973]; static final String C = String.fromCharCodes(List.generate( _envieddataC.length, @@ -13732,9 +13768,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataC[i] ^ _enviedkeyC[i])); - static const List _enviedkeyD = [1305983018]; + static const List _enviedkeyD = [884821849]; - static const List _envieddataD = [1305983091]; + static const List _envieddataD = [884821760]; static final String D = String.fromCharCodes(List.generate( _envieddataD.length, @@ -13742,9 +13778,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataD[i] ^ _enviedkeyD[i])); - static const List _enviedkeyE = [157558203]; + static const List _enviedkeyE = [3613623060]; - static const List _envieddataE = [157558257]; + static const List _envieddataE = [3613623134]; static final String E = String.fromCharCodes(List.generate( _envieddataE.length, @@ -13752,9 +13788,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataE[i] ^ _enviedkeyE[i])); - static const List _enviedkeyF = [1789370083]; + static const List _enviedkeyF = [65090977]; - static const List _envieddataF = [1789370038]; + static const List _envieddataF = [65091060]; static final String F = String.fromCharCodes(List.generate( _envieddataF.length, @@ -13762,9 +13798,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataF[i] ^ _enviedkeyF[i])); - static const List _enviedkeyG = [871708413]; + static const List _enviedkeyG = [1595226334]; - static const List _envieddataG = [871708342]; + static const List _envieddataG = [1595226261]; static final String G = String.fromCharCodes(List.generate( _envieddataG.length, @@ -13772,9 +13808,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataG[i] ^ _enviedkeyG[i])); - static const List _enviedkeyH = [3793542986]; + static const List _enviedkeyH = [590409698]; - static const List _envieddataH = [3793542941]; + static const List _envieddataH = [590409653]; static final String H = String.fromCharCodes(List.generate( _envieddataH.length, @@ -13782,9 +13818,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataH[i] ^ _enviedkeyH[i])); - static const List _enviedkeyI = [1262936494]; + static const List _enviedkeyI = [3473596254]; - static const List _envieddataI = [1262936545]; + static const List _envieddataI = [3473596177]; static final String I = String.fromCharCodes(List.generate( _envieddataI.length, @@ -13792,9 +13828,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataI[i] ^ _enviedkeyI[i])); - static const List _enviedkeyJ = [2954007079]; + static const List _enviedkeyJ = [756630357]; - static const List _envieddataJ = [2954007138]; + static const List _envieddataJ = [756630288]; static final String J = String.fromCharCodes(List.generate( _envieddataJ.length, @@ -13802,9 +13838,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataJ[i] ^ _enviedkeyJ[i])); - static const List _enviedkeyK = [2463780223]; + static const List _enviedkeyK = [1628007221]; - static const List _envieddataK = [2463780152]; + static const List _envieddataK = [1628007282]; static final String K = String.fromCharCodes(List.generate( _envieddataK.length, @@ -13812,9 +13848,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataK[i] ^ _enviedkeyK[i])); - static const List _enviedkeyL = [266128903]; + static const List _enviedkeyL = [2442154538]; - static const List _envieddataL = [266128981]; + static const List _envieddataL = [2442154616]; static final String L = String.fromCharCodes(List.generate( _envieddataL.length, @@ -13822,9 +13858,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataL[i] ^ _enviedkeyL[i])); - static const List _enviedkeyM = [1136215602]; + static const List _enviedkeyM = [3038562330]; - static const List _envieddataM = [1136215676]; + static const List _envieddataM = [3038562388]; static final String M = String.fromCharCodes(List.generate( _envieddataM.length, @@ -13832,9 +13868,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataM[i] ^ _enviedkeyM[i])); - static const List _enviedkeyN = [1458787741]; + static const List _enviedkeyN = [1744105640]; - static const List _envieddataN = [1458787807]; + static const List _envieddataN = [1744105706]; static final String N = String.fromCharCodes(List.generate( _envieddataN.length, @@ -13842,9 +13878,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataN[i] ^ _enviedkeyN[i])); - static const List _enviedkeyO = [658466729]; + static const List _enviedkeyO = [1804796630]; - static const List _envieddataO = [658466784]; + static const List _envieddataO = [1804796575]; static final String O = String.fromCharCodes(List.generate( _envieddataO.length, @@ -13852,9 +13888,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataO[i] ^ _enviedkeyO[i])); - static const List _enviedkeyP = [1802431044]; + static const List _enviedkeyP = [178819859]; - static const List _envieddataP = [1802430994]; + static const List _envieddataP = [178819909]; static final String P = String.fromCharCodes(List.generate( _envieddataP.length, @@ -13862,9 +13898,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataP[i] ^ _enviedkeyP[i])); - static const List _enviedkeyQ = [4209844319]; + static const List _enviedkeyQ = [563658548]; - static const List _envieddataQ = [4209844254]; + static const List _envieddataQ = [563658613]; static final String Q = String.fromCharCodes(List.generate( _envieddataQ.length, @@ -13872,9 +13908,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataQ[i] ^ _enviedkeyQ[i])); - static const List _enviedkeyR = [1305428188]; + static const List _enviedkeyR = [2594490884]; - static const List _envieddataR = [1305428112]; + static const List _envieddataR = [2594490952]; static final String R = String.fromCharCodes(List.generate( _envieddataR.length, @@ -13882,9 +13918,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataR[i] ^ _enviedkeyR[i])); - static const List _enviedkeyS = [3052036021]; + static const List _enviedkeyS = [1903746908]; - static const List _envieddataS = [3052036079]; + static const List _envieddataS = [1903746822]; static final String S = String.fromCharCodes(List.generate( _envieddataS.length, @@ -13892,9 +13928,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataS[i] ^ _enviedkeyS[i])); - static const List _enviedkeyT = [2678039640]; + static const List _enviedkeyT = [1513739119]; - static const List _envieddataT = [2678039579]; + static const List _envieddataT = [1513739052]; static final String T = String.fromCharCodes(List.generate( _envieddataT.length, @@ -13902,9 +13938,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataT[i] ^ _enviedkeyT[i])); - static const List _enviedkeyU = [235700394]; + static const List _enviedkeyU = [2646093318]; - static const List _envieddataU = [235700450]; + static const List _envieddataU = [2646093390]; static final String U = String.fromCharCodes(List.generate( _envieddataU.length, @@ -13912,9 +13948,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataU[i] ^ _enviedkeyU[i])); - static const List _enviedkeyV = [409825944]; + static const List _enviedkeyV = [1782962373]; - static const List _envieddataV = [409825992]; + static const List _envieddataV = [1782962325]; static final String V = String.fromCharCodes(List.generate( _envieddataV.length, @@ -13922,9 +13958,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataV[i] ^ _enviedkeyV[i])); - static const List _enviedkeyW = [2601586481]; + static const List _enviedkeyW = [1739500627]; - static const List _envieddataW = [2601586533]; + static const List _envieddataW = [1739500551]; static final String W = String.fromCharCodes(List.generate( _envieddataW.length, @@ -13932,9 +13968,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataW[i] ^ _enviedkeyW[i])); - static const List _enviedkeyX = [1238241163]; + static const List _enviedkeyX = [2642207717]; - static const List _envieddataX = [1238241231]; + static const List _envieddataX = [2642207649]; static final String X = String.fromCharCodes(List.generate( _envieddataX.length, @@ -13942,9 +13978,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataX[i] ^ _enviedkeyX[i])); - static const List _enviedkeyY = [8474653]; + static const List _enviedkeyY = [2532365704]; - static const List _envieddataY = [8474702]; + static const List _envieddataY = [2532365787]; static final String Y = String.fromCharCodes(List.generate( _envieddataY.length, @@ -13952,9 +13988,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataY[i] ^ _enviedkeyY[i])); - static const List _enviedkeyZ = [777149955]; + static const List _enviedkeyZ = [3659612056]; - static const List _envieddataZ = [777150030]; + static const List _envieddataZ = [3659612117]; static final String Z = String.fromCharCodes(List.generate( _envieddataZ.length, @@ -13962,9 +13998,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataZ[i] ^ _enviedkeyZ[i])); - static const List _enviedkeya = [497922193]; + static const List _enviedkeya = [1529015279]; - static const List _envieddataa = [497922272]; + static const List _envieddataa = [1529015198]; static final String a = String.fromCharCodes(List.generate( _envieddataa.length, @@ -13972,9 +14008,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataa[i] ^ _enviedkeya[i])); - static const List _enviedkeyb = [2716875017]; + static const List _enviedkeyb = [1505472212]; - static const List _envieddatab = [2716875121]; + static const List _envieddatab = [1505472172]; static final String b = String.fromCharCodes(List.generate( _envieddatab.length, @@ -13982,9 +14018,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatab[i] ^ _enviedkeyb[i])); - static const List _enviedkeyc = [2829544839]; + static const List _enviedkeyc = [817639110]; - static const List _envieddatac = [2829544929]; + static const List _envieddatac = [817639072]; static final String c = String.fromCharCodes(List.generate( _envieddatac.length, @@ -13992,9 +14028,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatac[i] ^ _enviedkeyc[i])); - static const List _enviedkeyd = [4022273503]; + static const List _enviedkeyd = [903440428]; - static const List _envieddatad = [4022273446]; + static const List _envieddatad = [903440469]; static final String d = String.fromCharCodes(List.generate( _envieddatad.length, @@ -14002,9 +14038,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatad[i] ^ _enviedkeyd[i])); - static const List _enviedkeye = [1441601786]; + static const List _enviedkeye = [2638867399]; - static const List _envieddatae = [1441601680]; + static const List _envieddatae = [2638867373]; static final String e = String.fromCharCodes(List.generate( _envieddatae.length, @@ -14012,9 +14048,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatae[i] ^ _enviedkeye[i])); - static const List _enviedkeyf = [675242734]; + static const List _enviedkeyf = [1828324771]; - static const List _envieddataf = [675242651]; + static const List _envieddataf = [1828324822]; static final String f = String.fromCharCodes(List.generate( _envieddataf.length, @@ -14022,9 +14058,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataf[i] ^ _enviedkeyf[i])); - static const List _enviedkeyg = [1524695741]; + static const List _enviedkeyg = [3603845793]; - static const List _envieddatag = [1524695766]; + static const List _envieddatag = [3603845834]; static final String g = String.fromCharCodes(List.generate( _envieddatag.length, @@ -14032,9 +14068,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatag[i] ^ _enviedkeyg[i])); - static const List _enviedkeyh = [4135120774]; + static const List _enviedkeyh = [1757567873]; - static const List _envieddatah = [4135120881]; + static const List _envieddatah = [1757567990]; static final String h = String.fromCharCodes(List.generate( _envieddatah.length, @@ -14042,9 +14078,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatah[i] ^ _enviedkeyh[i])); - static const List _enviedkeyi = [2705320911]; + static const List _enviedkeyi = [3471161909]; - static const List _envieddatai = [2705320864]; + static const List _envieddatai = [3471161946]; static final String i = String.fromCharCodes(List.generate( _envieddatai.length, @@ -14052,9 +14088,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatai[i] ^ _enviedkeyi[i])); - static const List _enviedkeyj = [1907598318]; + static const List _enviedkeyj = [1676293665]; - static const List _envieddataj = [1907598219]; + static const List _envieddataj = [1676293700]; static final String j = String.fromCharCodes(List.generate( _envieddataj.length, @@ -14062,9 +14098,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataj[i] ^ _enviedkeyj[i])); - static const List _enviedkeyk = [4224545047]; + static const List _enviedkeyk = [4187391328]; - static const List _envieddatak = [4224545136]; + static const List _envieddatak = [4187391239]; static final String k = String.fromCharCodes(List.generate( _envieddatak.length, @@ -14072,9 +14108,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatak[i] ^ _enviedkeyk[i])); - static const List _enviedkeyl = [3123199651]; + static const List _enviedkeyl = [1278707921]; - static const List _envieddatal = [3123199697]; + static const List _envieddatal = [1278707875]; static final String l = String.fromCharCodes(List.generate( _envieddatal.length, @@ -14082,9 +14118,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatal[i] ^ _enviedkeyl[i])); - static const List _enviedkeym = [2836523545]; + static const List _enviedkeym = [1916844783]; - static const List _envieddatam = [2836523639]; + static const List _envieddatam = [1916844673]; static final String m = String.fromCharCodes(List.generate( _envieddatam.length, @@ -14092,9 +14128,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatam[i] ^ _enviedkeym[i])); - static const List _enviedkeyn = [3446905466]; + static const List _enviedkeyn = [1362889177]; - static const List _envieddatan = [3446905368]; + static const List _envieddatan = [1362889147]; static final String n = String.fromCharCodes(List.generate( _envieddatan.length, @@ -14102,9 +14138,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatan[i] ^ _enviedkeyn[i])); - static const List _enviedkeyo = [1650805908]; + static const List _enviedkeyo = [418710104]; - static const List _envieddatao = [1650806013]; + static const List _envieddatao = [418710065]; static final String o = String.fromCharCodes(List.generate( _envieddatao.length, @@ -14112,9 +14148,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatao[i] ^ _enviedkeyo[i])); - static const List _enviedkeyp = [2683648408]; + static const List _enviedkeyp = [398109159]; - static const List _envieddatap = [2683648494]; + static const List _envieddatap = [398109073]; static final String p = String.fromCharCodes(List.generate( _envieddatap.length, @@ -14122,9 +14158,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatap[i] ^ _enviedkeyp[i])); - static const List _enviedkeyq = [621280579]; + static const List _enviedkeyq = [2105298030]; - static const List _envieddataq = [621280546]; + static const List _envieddataq = [2105297935]; static final String q = String.fromCharCodes(List.generate( _envieddataq.length, @@ -14132,9 +14168,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataq[i] ^ _enviedkeyq[i])); - static const List _enviedkeyr = [472835470]; + static const List _enviedkeyr = [2100108351]; - static const List _envieddatar = [472835554]; + static const List _envieddatar = [2100108371]; static final String r = String.fromCharCodes(List.generate( _envieddatar.length, @@ -14142,9 +14178,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatar[i] ^ _enviedkeyr[i])); - static const List _enviedkeys = [1034171284]; + static const List _enviedkeys = [4047470971]; - static const List _envieddatas = [1034171374]; + static const List _envieddatas = [4047470849]; static final String s = String.fromCharCodes(List.generate( _envieddatas.length, @@ -14152,9 +14188,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatas[i] ^ _enviedkeys[i])); - static const List _enviedkeyt = [1553506130]; + static const List _enviedkeyt = [1833080943]; - static const List _envieddatat = [1553506097]; + static const List _envieddatat = [1833080844]; static final String t = String.fromCharCodes(List.generate( _envieddatat.length, @@ -14162,9 +14198,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatat[i] ^ _enviedkeyt[i])); - static const List _enviedkeyu = [302029238]; + static const List _enviedkeyu = [2006201138]; - static const List _envieddatau = [302029278]; + static const List _envieddatau = [2006201178]; static final String u = String.fromCharCodes(List.generate( _envieddatau.length, @@ -14172,9 +14208,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatau[i] ^ _enviedkeyu[i])); - static const List _enviedkeyv = [3018700728]; + static const List _enviedkeyv = [825548532]; - static const List _envieddatav = [3018700744]; + static const List _envieddatav = [825548420]; static final String v = String.fromCharCodes(List.generate( _envieddatav.length, @@ -14182,9 +14218,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatav[i] ^ _enviedkeyv[i])); - static const List _enviedkeyw = [3613057064]; + static const List _enviedkeyw = [4292322568]; - static const List _envieddataw = [3613057116]; + static const List _envieddataw = [4292322684]; static final String w = String.fromCharCodes(List.generate( _envieddataw.length, @@ -14192,9 +14228,9 @@ final class _Env { growable: false, ).map((int i) => _envieddataw[i] ^ _enviedkeyw[i])); - static const List _enviedkeyx = [1954291884]; + static const List _enviedkeyx = [348180012]; - static const List _envieddatax = [1954291912]; + static const List _envieddatax = [348180040]; static final String x = String.fromCharCodes(List.generate( _envieddatax.length, @@ -14202,9 +14238,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatax[i] ^ _enviedkeyx[i])); - static const List _enviedkeyy = [1138960510]; + static const List _enviedkeyy = [2454981964]; - static const List _envieddatay = [1138960397]; + static const List _envieddatay = [2454981951]; static final String y = String.fromCharCodes(List.generate( _envieddatay.length, @@ -14212,9 +14248,9 @@ final class _Env { growable: false, ).map((int i) => _envieddatay[i] ^ _enviedkeyy[i])); - static const List _enviedkeyz = [1320334478]; + static const List _enviedkeyz = [1174677600]; - static const List _envieddataz = [1320334563]; + static const List _envieddataz = [1174677517]; static final String z = String.fromCharCodes(List.generate( _envieddataz.length, @@ -14223,85 +14259,85 @@ final class _Env { ).map((int i) => _envieddataz[i] ^ _enviedkeyz[i])); static const List _enviedkeykeyOfApp = [ - 3448682311, - 2356899516, - 2036085618, - 3112335130, - 3122115013, - 153151264, - 2631942892, - 735018129, - 1052846838, - 946752406, - 3220589991, - 3898283347, - 1617630699, - 4197886149, - 3599627797, - 227354908, - 532595763, - 2541450049, - 2138554209, - 2721293089, - 243017932, - 1416789424, - 3635668752, - 3222090079, - 1447883351, - 1790825237, - 2964991547, - 1915625727, - 2058096972, - 3103603385, - 2560880514, - 185732350, - 1466850376, - 2392610695, - 655651473, - 1749208374, - 3337615038, - 229533229, + 376420277, + 1964177614, + 266714728, + 1589971676, + 266386235, + 3307941698, + 1924858906, + 4256919686, + 1813772791, + 1728846133, + 798034838, + 3662472525, + 691128840, + 477115701, + 3282180146, + 1251529271, + 889650269, + 2707228821, + 4080664693, + 2355927710, + 1891415689, + 681110781, + 126791933, + 3944121008, + 1922649647, + 1159120196, + 828533761, + 2859252017, + 3822253640, + 101185729, + 793224752, + 721431820, + 1330516560, + 4291582049, + 3576316367, + 1170681606, + 1169376090, + 60979340, ]; static const List _envieddatakeyOfApp = [ - 3448682277, - 2356899549, - 2036085534, - 3112335209, - 3122114976, - 153151318, - 2631942828, - 735018150, - 1052846784, - 946752431, - 3220589969, - 3898283303, - 1617630602, - 4197886119, - 3599627899, - 227355005, - 532595794, - 2541450043, - 2138554116, - 2721293138, - 243017889, - 1416789461, - 3635668856, - 3222090042, - 1447883301, - 1790825328, - 2964991580, - 1915625605, - 2058096956, - 3103603423, - 2560880616, - 185732241, - 1466850320, - 2392610805, - 655651529, - 1749208388, - 3337615100, - 229533279, + 376420311, + 1964177583, + 266714628, + 1589971631, + 266386270, + 3307941684, + 1924858970, + 4256919729, + 1813772737, + 1728846092, + 798034848, + 3662472505, + 691128937, + 477115735, + 3282180188, + 1251529302, + 889650236, + 2707228911, + 4080664592, + 2355927789, + 1891415780, + 681110680, + 126791829, + 3944121045, + 1922649693, + 1159120161, + 828533862, + 2859252043, + 3822253624, + 101185703, + 793224794, + 721431907, + 1330516488, + 4291581971, + 3576316311, + 1170681716, + 1169376024, + 60979454, ]; static final String keyOfApp = String.fromCharCodes(List.generate( @@ -14311,63 +14347,63 @@ final class _Env { ).map((int i) => _envieddatakeyOfApp[i] ^ _enviedkeykeyOfApp[i])); static const List _enviedkeymapSaasKey = [ - 447230199, - 3784402066, - 209049725, - 1163712544, - 1219966561, - 3314696234, - 1490634313, - 143904302, - 3286644672, - 1016030579, - 520065505, - 3469792432, - 208856708, - 3606958981, - 678891176, - 1019175849, - 2060425392, - 3945918322, - 3824871000, - 1452455203, - 2229412851, - 1180357389, - 588858949, - 3686281572, - 2555121881, - 1074078990, - 806244004, + 2877431794, + 2886615796, + 4211327812, + 109001071, + 4034617210, + 3902380042, + 2590750097, + 3360017058, + 348778886, + 1822175429, + 2967876957, + 2935638874, + 1241006808, + 1499775304, + 661053536, + 1132994499, + 2067923235, + 145077982, + 2732841582, + 3799819178, + 2732272387, + 2586277473, + 3948821369, + 2593524521, + 1788404973, + 2721766612, + 3676918592, ]; static const List _envieddatamapSaasKey = [ - 447230110, - 3784402172, - 209049634, - 1163712537, - 1219966549, - 3314696221, - 1490634353, - 143904332, - 3286644723, - 1016030529, - 520065497, - 3469792387, - 208856754, - 3606959073, - 678891161, - 1019175824, - 2060425427, - 3945918228, - 3824870974, - 1452455188, - 2229412800, - 1180357481, - 588858919, - 3686281559, - 2555121897, - 1074079032, - 806243991, + 2877431707, + 2886615706, + 4211327771, + 109001046, + 4034617166, + 3902380093, + 2590750121, + 3360017088, + 348778933, + 1822175479, + 2967876965, + 2935638889, + 1241006830, + 1499775276, + 661053521, + 1132994554, + 2067923264, + 145077944, + 2732841480, + 3799819165, + 2732272432, + 2586277381, + 3948821275, + 2593524506, + 1788404957, + 2721766626, + 3676918643, ]; static final String mapSaasKey = String.fromCharCodes(List.generate(