diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ce2fd817 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ + +computer vis/Human detection/yolov3.weights +*.xml +*.weights diff --git a/Tracking/BLE-ESP32/BLE_client/BLE_client.ino b/Tracking/BLE-ESP32/BLE_client/BLE_client.ino new file mode 100644 index 00000000..8356158d --- /dev/null +++ b/Tracking/BLE-ESP32/BLE_client/BLE_client.ino @@ -0,0 +1,162 @@ +/** + * A BLE client example that is rich in capabilities. + * There is a lot new capabilities implemented. + * author unknown + * updated by chegewara + */ + +#include "BLEDevice.h" +//#include "BLEScan.h" + +// The remote service we wish to connect to. +static BLEUUID serviceUUID("adabfb00-6e7d-4601-bda2-bffaa68956ba"); +// The characteristic of the remote service we are interested in. +static BLEUUID charUUID("adabfb02-6e7d-4601-bda2-bffaa68956ba"); + +static boolean doConnect = false; +static boolean connected = false; +static boolean doScan = false; +static BLERemoteCharacteristic* pRemoteCharacteristic; +static BLEAdvertisedDevice* myDevice; + +static void notifyCallback( + BLERemoteCharacteristic* pBLERemoteCharacteristic, + uint8_t* pData, + size_t length, + bool isNotify) { + Serial.print("Notify callback for characteristic "); + Serial.print(pBLERemoteCharacteristic->getUUID().toString().c_str()); + Serial.print(" of data length "); + Serial.println(length); + Serial.print("data: "); + Serial.println((char*)pData); +} + +class MyClientCallback : public BLEClientCallbacks { + void onConnect(BLEClient* pclient) { + } + + void onDisconnect(BLEClient* pclient) { + connected = false; + Serial.println("onDisconnect"); + } +}; + +bool connectToServer() { + Serial.print("Forming a connection to "); + Serial.println(myDevice->getAddress().toString().c_str()); + + BLEClient* pClient = BLEDevice::createClient(); + Serial.println(" - Created client"); + + pClient->setClientCallbacks(new MyClientCallback()); + + // Connect to the remove BLE Server. + pClient->connect(myDevice); // if you pass BLEAdvertisedDevice instead of address, it will be recognized type of peer device address (public or private) + Serial.println(" - Connected to server"); + pClient->setMTU(517); //set client to request maximum MTU from server (default is 23 otherwise) + + // Obtain a reference to the service we are after in the remote BLE server. + BLERemoteService* pRemoteService = pClient->getService(serviceUUID); + if (pRemoteService == nullptr) { + Serial.print("Failed to find our service UUID: "); + Serial.println(serviceUUID.toString().c_str()); + pClient->disconnect(); + return false; + } + Serial.println(" - Found our service"); + + + // Obtain a reference to the characteristic in the service of the remote BLE server. + pRemoteCharacteristic = pRemoteService->getCharacteristic(charUUID); + if (pRemoteCharacteristic == nullptr) { + Serial.print("Failed to find our characteristic UUID: "); + Serial.println(charUUID.toString().c_str()); + pClient->disconnect(); + return false; + } + Serial.println(" - Found our characteristic"); + + // Read the value of the characteristic. + if(pRemoteCharacteristic->canRead()) { + std::string value = pRemoteCharacteristic->readValue(); + Serial.print("The characteristic value was: "); + Serial.println(value.c_str()); + } + + if(pRemoteCharacteristic->canNotify()) + pRemoteCharacteristic->registerForNotify(notifyCallback); + + connected = true; + return true; +} +/** + * Scan for BLE servers and find the first one that advertises the service we are looking for. + */ +class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { + /** + * Called for each advertising BLE server. + */ + void onResult(BLEAdvertisedDevice advertisedDevice) { + Serial.print("BLE Advertised Device found: "); + Serial.println(advertisedDevice.toString().c_str()); + + // We have found a device, let us now see if it contains the service we are looking for. + if (advertisedDevice.haveServiceUUID() && advertisedDevice.isAdvertisingService(serviceUUID)) { + + BLEDevice::getScan()->stop(); + myDevice = new BLEAdvertisedDevice(advertisedDevice); + doConnect = true; + doScan = true; + + } // Found our server + } // onResult +}; // MyAdvertisedDeviceCallbacks + + +void setup() { + Serial.begin(115200); + Serial.println("Starting Arduino BLE Client application..."); + BLEDevice::init(""); + + // Retrieve a Scanner and set the callback we want to use to be informed when we + // have detected a new device. Specify that we want active scanning and start the + // scan to run for 5 seconds. + BLEScan* pBLEScan = BLEDevice::getScan(); + pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks()); + pBLEScan->setInterval(1349); + pBLEScan->setWindow(449); + pBLEScan->setActiveScan(true); + pBLEScan->start(5, false); +} // End of setup. + + +// This is the Arduino main loop function. +void loop() { + + // If the flag "doConnect" is true then we have scanned for and found the desired + // BLE Server with which we wish to connect. Now we connect to it. Once we are + // connected we set the connected flag to be true. + if (doConnect == true) { + if (connectToServer()) { + Serial.println("We are now connected to the BLE Server."); + } else { + Serial.println("We have failed to connect to the server; there is nothin more we will do."); + } + doConnect = false; + } + + // If we are connected to a peer BLE Server, update the characteristic each time we are reached + // with the current time since boot. + if (connected) { + String newValue = "Time since boot: " + String(millis()/1000); + Serial.println("Setting new characteristic value to \"" + newValue + "\""); + + // Set the characteristic's value to be the array of bytes that is actually a string. + pRemoteCharacteristic->writeValue(newValue.c_str(), newValue.length()); + }else if(doScan){ + BLEDevice::getScan()->start(0); // this is just example to start scan after disconnect, most likely there is better way to do it in arduino + } + + delay(1000); // Delay a second between loops. +} // End of loop diff --git a/Tracking/BLE-ESP32/Magnetometer/Compass/Compass.ino b/Tracking/BLE-ESP32/Magnetometer/Compass/Compass.ino new file mode 100644 index 00000000..4f81ee75 --- /dev/null +++ b/Tracking/BLE-ESP32/Magnetometer/Compass/Compass.ino @@ -0,0 +1,159 @@ +/* + e-Gizmo QMC5883L GY-271 Compass + + Sample sketch for the GY-271 QMC5883L + for getting the raw data of x, y, z and + Radius in degrees. + + Codes by e-Gizmo Mechatronix Central + http://www.e-gizmo.com + July 10,2017 + +*/ + + +#include +#if defined(ESP32) + #include +#elif defined(ESP8266) + #include +#endif +#include + +//Provide the token generation process info. +#include "addons/TokenHelper.h" +//Provide the RTDB payload printing info and other helper functions. +#include "addons/RTDBHelper.h" + + +#include +#include + +QMC5883L compass; + +// Insert your network credentials +#define WIFI_SSID "paya1" +#define WIFI_PASSWORD "naina123" + +// Insert Firebase project API Key +#define API_KEY "AIzaSyA3sxz8LTLgtvdkvBAaLvZO7gBLqzuLM_A" + +// Insert RTDB URLefine the RTDB URL */ +#define DATABASE_URL "https://rudra-x-default-rtdb.firebaseio.com/" + +//Define Firebase Data object +FirebaseData fbdo; + +FirebaseAuth auth; +FirebaseConfig config; + +unsigned long sendDataPrevMillis = 0; +int count = 0; +bool signupOK = false; + + +const int trigPin1 = 15; +const int echoPin1 = 2; + + +//define sound speed in cm/uS +#define SOUND_SPEED 0.034 +#define CM_TO_INCH 0.393701 + +long duration1; +float distanceCm1; +float distanceInch; + + +void setup(){ + Serial.begin(115200); + pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output + pinMode(echoPin1, INPUT); // Sets the echoPin as an Input + WiFi.begin(WIFI_SSID, WIFI_PASSWORD); + Serial.print("Connecting to Wi-Fi"); + while (WiFi.status() != WL_CONNECTED){ + Serial.print("."); + delay(300); + } + Serial.println(); + Serial.print("Connected with IP: "); + Serial.println(WiFi.localIP()); + Serial.println(); + + /* Assign the api key (required) */ + config.api_key = API_KEY; + + /* Assign the RTDB URL (required) */ + config.database_url = DATABASE_URL; + + /* Sign up */ + if (Firebase.signUp(&config, &auth, "", "")){ + Serial.println("ok"); + signupOK = true; + } + else{ + Serial.printf("%s\n", config.signer.signupError.message.c_str()); + } + + /* Assign the callback function for the long running token generation task */ + config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h + + Firebase.begin(&config, &auth); + Firebase.reconnectWiFi(true); + + Wire.begin(); + compass.init(); +} + + +void loop() { + int x,y,z; + compass.read(&x,&y,&z); + + // Calculate heading when the magnetometer is level, then correct for signs of axis. + // Atan2() automatically check the correct formula taking care of the quadrant you are in + float heading = atan2(y, x); + + float declinationAngle = 0.0404; + heading += declinationAngle; + // Find yours here: http://www.magnetic-declination.com/ + + // Correct for when signs are reversed. + if(heading < 0) + heading += 2*PI; + + // Check for wrap due to addition of declination. + if(heading > 2*PI) + heading -= 2*PI; + + // Convert radians to degrees for readability. + float headingDegrees = heading * 180/M_PI; + + + Serial.print("x: "); + Serial.print(x); + Serial.print(" y: "); + Serial.print(y); + Serial.print(" z: "); + Serial.print(z); + Serial.print(" heading: "); + Serial.print(heading); + Serial.print(" Radius: "); + Serial.print(headingDegrees); + Serial.println(); + + if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 100 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "magnet/dir", headingDegrees)){ + Serial.println("PASSED"); + Serial.println("PATH: " + fbdo.dataPath()); + Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + } + delay(100); +} diff --git a/Tracking/BLE-ESP32/Magnetometer/mag_example/jscript.h b/Tracking/BLE-ESP32/Magnetometer/mag_example/jscript.h new file mode 100644 index 00000000..1e7151fa --- /dev/null +++ b/Tracking/BLE-ESP32/Magnetometer/mag_example/jscript.h @@ -0,0 +1,16 @@ +const String javascript PROGMEM = " $(document).ready(function(){\r\n" + " setInterval(getData,1000);\r\n" + " function getData(){\r\n" + " $.ajax({\r\n" + " type:\"GET\",\r\n" + " url:\"data\",\r\n" + " success: function(data){\r\n" + " $('#heading-value').val(data);\r\n" + " theta = data - 90;\r\n" + " $('#arrow').css({'transform' : 'rotate('+ theta +'deg)'});\r\n" + "}\r\n" + "}).done(function() {\r\n" + " console.log('ok'); " + "})\r\n" + "}\r\n" + "});"; diff --git a/Tracking/BLE-ESP32/Magnetometer/mag_example/mag_example.ino b/Tracking/BLE-ESP32/Magnetometer/mag_example/mag_example.ino new file mode 100644 index 00000000..16ecf3e4 --- /dev/null +++ b/Tracking/BLE-ESP32/Magnetometer/mag_example/mag_example.ino @@ -0,0 +1,115 @@ +/****************************************** +ESP32 Magnetometer with HMC5883L +by Roland Pelayo + +Full tutorial: Full Tutorial](https://www.teachmemicro.com/esp32-magnetometer-hmc5883l + +Rev 1.0 - Initial Code - June 5, 2020 +Rev 1.1 - Improved App UI - June 6, 2020 + +Uses Adafruit's Unified Sensor and HMC5883L libraries + +***************************************************************************/ + +#include +#include +#include +#include +#include +#include +#include "mainpage.h" +#include "jscript.h" + +/* Assign a unique ID to this sensor at the same time */ +Adafruit_HMC5883_Unified mag = Adafruit_HMC5883_Unified(12345); + +//provide your own WiFi SSID and password +const char* ssid = "paya1"; +const char* password = "naina123"; + +WebServer server(80); + +//For storing data as string +String text= ""; + +void setup(void) +{ + Serial.begin(115200); + Serial.println("HMC5883 Magnetometer Test"); Serial.println(""); + + /* Initialise the sensor */ + if(!mag.begin()) + { + /* There was a problem detecting the HMC5883 ... check your connections */ + Serial.println("Ooops, no HMC5883 detected ... Check your wiring!"); + while(1); + } + + //Use ESP32 as WiFi Station + WiFi.mode(WIFI_STA); + //Initiate WiFi Connection + WiFi.begin(ssid, password); + Serial.println(""); + // Wait for connection + while (WiFi.status() != WL_CONNECTED) { + delay(500); + Serial.print("."); + } + Serial.println(""); + Serial.print("Connected to "); + //Print your WiFi's SSID (might be insecure) + Serial.println(ssid); + Serial.print("IP address: "); + //Print your local IP address (needed for browsing the app) + Serial.println(WiFi.localIP()); + //Home page. Contents of 'page' is in mainpage.h + server.on("/", []() { + server.send(200, "text/html", page); + }); + //JavaScript! Contents of 'javascript' is in jscript.h + server.on("/jscript.js", []() { + server.send(200, "text/javascript", javascript); + }); + //Page for reading data. Sensor is read in this part + server.on("/data", [](){ + delay(100); + /* Get a new sensor event */ + sensors_event_t event; + mag.getEvent(&event); + + // Hold the module so that Z is pointing 'up' and you can measure the heading with x&y + // Calculate heading when the magnetometer is level, then correct for signs of axis. + float heading = atan2(event.magnetic.y, event.magnetic.x); + + // Once you have your heading, you must then add your 'Declination Angle', which is the 'Error' of the magnetic field in your location. + // Find yours here: http://www.magnetic-declination.com/ + // Mine is: -0* 58' W, which is ~58/60 Degrees, or (which we need) 0.0168 radians + // If you cannot find your Declination, comment out these two lines, your compass will be slightly off. + float declinationAngle = 0.0168; + heading += declinationAngle; + + // Correct for when signs are reversed. + if(heading < 0) + heading += 2*PI; + + // Check for wrap due to addition of declination. + if(heading > 2*PI) + heading -= 2*PI; + + // Convert radians to degrees for readability. + float headingDegrees = heading * 180/M_PI; + text = (String)headingDegrees; + server.send(200, "text/plain", text); + Serial.println(headingDegrees); + }); + //start web server + server.begin(); + //Just stating things + Serial.println("HTTP server started"); +} + +void loop(void) +{ + //Make the ESP32 always handle web clients + server.handleClient(); +} diff --git a/Tracking/BLE-ESP32/Magnetometer/mag_example/mainpage.h b/Tracking/BLE-ESP32/Magnetometer/mag_example/mainpage.h new file mode 100644 index 00000000..113dbde3 --- /dev/null +++ b/Tracking/BLE-ESP32/Magnetometer/mag_example/mainpage.h @@ -0,0 +1,31 @@ +const String page PROGMEM = "" + " " + " " + " " + " " + " " + " " + " " + "

ESP32 Magnetometer

" + "

Uses a NodeMCU-32S and HMC5883L Magnetometer

" + "

Full tutorial

" + " ""

\r\n" + " \r\n " + " " + ""; diff --git a/Tracking/BLE-ESP32/RSSI_final/RSSI_final.ino b/Tracking/BLE-ESP32/RSSI_final/RSSI_final.ino new file mode 100644 index 00000000..9f880791 --- /dev/null +++ b/Tracking/BLE-ESP32/RSSI_final/RSSI_final.ino @@ -0,0 +1,89 @@ +#include "BLEDevice.h" +int LED = 2; // on-board LED at pin 2 +int BUTTON = 0; +double distanceCalc; +double constDis = pow(10,1.4); +static BLEAddress *pServerAddress; +BLEScan* pBLEScan; +BLEClient* pClient; +bool deviceFound = false; +bool LEDoff = false; +bool BotonOff = false; +String knownAddresses[] = { "c8:23:86:d7:2e:e7"}; // change the MAC +unsigned long entry; + +static void notifyCallback( + BLERemoteCharacteristic* pBLERemoteCharacteristic, + uint8_t* pData, + size_t length, + bool isNotify) { + Serial.print("Notify callback for characteristic "); + Serial.print(pBLERemoteCharacteristic->getUUID().toString().c_str()); + Serial.print(" of data length "); + Serial.println(length); +} + +class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { + void onResult(BLEAdvertisedDevice Device){ + // show the MAC of other BLE devices + //Serial.print("BLE Advertised Device found: "); + //Serial.println(Device.toString().c_str()); + pServerAddress = new BLEAddress(Device.getAddress()); + bool known = false; + bool Master = false; + for (int i = 0; i < (sizeof(knownAddresses) / sizeof(knownAddresses[0])); i++) { + if (strcmp(pServerAddress->toString().c_str(), knownAddresses[i].c_str()) == 0) + known = true; + } + if (known) { + Serial.print("Our device found!"); + Serial.print("Device RSSI:"); + Serial.println(Device.getRSSI()); + + distanceCalc = pow(10, (-65-(Device.getRSSI()))/constDis); + Serial.print("Device distance:"); + Serial.println(distanceCalc); + // adjust the value. -85 is medium distance + // -60 is closer than -85 + if (Device.getRSSI() > -85) { + deviceFound = true; + } + else { + deviceFound = false; + } + Device.getScan()->stop(); + delay(100); + } + } +}; +void setup() { + Serial.begin(115200); + pinMode(LED,OUTPUT); + digitalWrite(LED,LOW); + BLEDevice::init(""); + pClient = BLEDevice::createClient(); + pBLEScan = BLEDevice::getScan(); + pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks()); + pBLEScan->setActiveScan(true); + Serial.println("Done"); +} +void Bluetooth() { + Serial.println(); + Serial.println("BLE Scan restarted....."); + deviceFound = false; + BLEScanResults scanResults = pBLEScan->start(5); + if (deviceFound) { + Serial.println("LED is ON now"); + LEDoff = true; + digitalWrite(LED,HIGH); + BUTTON = 0; + delay(10000); + } + else{ + digitalWrite(LED,LOW); + delay(1000); + } +} +void loop() { + Bluetooth(); +} diff --git a/Tracking/BLE-ESP32/kalman_filter/kalman_filter.ino b/Tracking/BLE-ESP32/kalman_filter/kalman_filter.ino new file mode 100644 index 00000000..bd902b28 --- /dev/null +++ b/Tracking/BLE-ESP32/kalman_filter/kalman_filter.ino @@ -0,0 +1,244 @@ +#include +#include +#include +#include + +// Comment this line out for the final version (terse output in the serial monitor) +//#define VERBOSE + +// Comment this out to re-enable connection signalling on pin 8 +//#define CONNECT_SIGNALLING + +BLECharacteristic *pCharacteristic; + +// See the following for generating UUIDs: +// https://www.uuidgenerator.net/ + +#define SERVICE_UUID "6012d087-05f8-41b0-90ed-07a75e80a104" +#define CHARACTERISTIC_UUID "73af693f-f43f-4997-817c-3c226530ad76" +#define DESCRIPTOR_UUID "e8f45c7e-8be5-4918-bb84-467d3fd354aa" + + +#ifdef CONNECT_SIGNALLING +// That pin used to be 2, feature removed +const uint8_t LED_CONNECT_PIN = 7; // Can be any other pin +#endif + +const uint8_t LED_ON_PIN = 2; //PUT INTERNAL LED PIN HERE +const uint8_t MOTOR_PIN = 6; // PUT YOUR MOTOR'S PIN HERE + + +template +void show_address(const T (&address)[N]) +{ + Serial.print(address[0], HEX); + for (uint8_t i = 1; i < N; i++) + Serial.printf(":%02x", address[i]); +} + + +class Monitor: public BLEServerCallbacks +{ +public: + static int16_t connection_id; + + // Motor state bits + enum motor_states { ENABLED, ON }; + static bool motor_state; + + // Durations for motor ON and motor OFF in milliseconds + // Note: make sure OFF_DELAY + ON_DELAY is equal to 1000! + static constexpr uint32_t ON_DELAY = 300; + static constexpr uint32_t OFF_DELAY = 700; + + /* dBm to distance parameters; How to update distance_factor 1.place the + * phone at a known distance (2m, 3m, 5m, 10m) 2.average about 10 RSSI + * values for each of these distances, Set distance_factor so that the + * calculated distance approaches the actual distances, e.g. at 5m. */ + static constexpr float reference_power = -50; //rssi reffrence + static constexpr float distance_factor = 3.5; + + static constexpr int8_t motor_threshold = -65; + + uint8_t get_value() { return value++; } + esp_err_t get_rssi() { return esp_ble_gap_read_rssi(remote_addr); } + + static float get_distance(const int8_t rssi) + { return pow(10, (reference_power - rssi)/(10*distance_factor)); } + +private: + void onConnect(BLEServer* pServer, esp_ble_gatts_cb_param_t *param) + { + // Update connection variables + connection_id = param->connect.conn_id; + memcpy(&remote_addr, param->connect.remote_bda, sizeof(remote_addr)); + + // Install the RSSI callback + BLEDevice::setCustomGapHandler(&Monitor::rssi_event); + +#ifdef VERBOSE + // Show new connection info + Serial.printf("Connection #: %i, remote: ", connection_id); + show_address(param->connect.remote_bda); + Serial.printf(" [Callback installed]\n"); +#endif + +#ifdef CONNECT_SIGNALLING + digitalWrite(LED_CONNECT_PIN, HIGH); +#endif + } + + void onDisconnect(BLEServer* pServer) + { + Serial.printf("Connection #%i closed\n", connection_id); + BLEDevice::setCustomGapHandler(nullptr); + connection_id = -1; + +#ifdef CONNECT_SIGNALLING + digitalWrite(LED_CONNECT_PIN, LOW); +#endif + } + + static void rssi_event(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param); + + static esp_bd_addr_t remote_addr; + uint8_t value = 0; +}; + +int16_t Monitor::connection_id = -1; +bool Monitor::motor_state = 0; +esp_bd_addr_t Monitor::remote_addr = {}; + +void Monitor::rssi_event(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t *param) +{ + static int16_t rssi_average = 0; + +#ifdef VERBOSE + show_address(remote_addr); +#endif + if (event == ESP_GAP_BLE_READ_RSSI_COMPLETE_EVT) + { + // Adjust damping_factor to lower values to have a more reactive response + const float damping_factor = 0.8; + rssi_average = rssi_average * damping_factor + + param->read_rssi_cmpl.rssi * (1 - damping_factor); + + // Flag motor as enabled, the loop function will turn it on in bursts + if (rssi_average < motor_threshold) + motor_state |= _BV(ENABLED); + else + { + motor_state &= ~_BV(ENABLED); + digitalWrite(MOTOR_PIN, LOW); + } + +#ifdef VERBOSE + Serial.printf(", rssi=%hi, distance~=%g", +#else + Serial.printf("%hi, %g\n", +#endif + param->read_rssi_cmpl.rssi, get_distance(rssi_average) + ); + } +#ifdef VERBOSE + Serial.printf("\n"); +#endif +} + +Monitor monitor; + + +void setup() +{ + Serial.begin(9600); + + pinMode(MOTOR_PIN, OUTPUT); + pinMode(LED_ON_PIN, OUTPUT); + +#ifdef CONNECT_SIGNALLING + pinMode(LED_CONNECT_PIN, OUTPUT); +#endif + + // Create the BLE Device + BLEDevice::init("Esp-32"); + + // Create the BLE Server + BLEServer *pServer = BLEDevice::createServer(); + pServer->setCallbacks(&monitor); + + // Create the BLE Service + BLEService *pService = pServer->createService(SERVICE_UUID); + + // Create a BLE Characteristic + pCharacteristic = pService->createCharacteristic( + CHARACTERISTIC_UUID, + BLECharacteristic::PROPERTY_READ | + BLECharacteristic::PROPERTY_WRITE | + BLECharacteristic::PROPERTY_NOTIFY | + BLECharacteristic::PROPERTY_INDICATE + ); + + // https://www.bluetooth.com/specifications/gatt/viewer?attributeXmlFile=org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml + // Create a BLE Descriptor + pCharacteristic->addDescriptor(new BLEDescriptor(DESCRIPTOR_UUID)); + + // Start the service + pService->start(); + + // Blink the LED on pin 8 three times + for (uint8_t i = 0; i < 3; i++) + { + digitalWrite(LED_ON_PIN, HIGH); + delay(500); + digitalWrite(LED_ON_PIN, LOW); + delay(500); + } + + // Start advertising + pServer->getAdvertising()->start(); + Serial.println("Waiting for incoming connections..."); +} + +void loop() +{ + static const uint32_t REFRESH_DELAY = 1000; + static uint32_t next_detection; + + uint32_t current_time = millis(); + if (Monitor::connection_id != -1) + { + if (current_time - next_detection >= REFRESH_DELAY) + { + // Prepare for the next detection + next_detection += REFRESH_DELAY; + + // Update the internal value (what for?) + auto value = monitor.get_value(); + //Serial.printf("*** NOTIFY: %d ***\n", value); + pCharacteristic->setValue(&value, sizeof(value)); + pCharacteristic->notify(); + + // Request RSSI from the remote address + if (monitor.get_rssi() != ESP_OK) + Serial.println("RSSI request failed"); + } + } + + // Let's turn the motor ON/OFF when enabled. The motor control pin will + // toggle every time the threshold below is reached. + static uint32_t motor_threshold; + if (Monitor::motor_state & _BV(Monitor::ENABLED)) + { + // Determine the next duration for either ON and OFF states + const uint32_t next_threshold = Monitor::motor_state & _BV(Monitor::ON) ? + Monitor::OFF_DELAY : Monitor::ON_DELAY; + + if (current_time - motor_threshold >= next_threshold) + { + // Toggle motor state + Monitor::motor_state ^= _BV(Monitor::ON); + digitalWrite(MOTOR_PIN, + Monitor::motor_state & _BV(Monitor::ON) ? HIGH : LOW); + } + } +} diff --git a/Tracking/BLE-ESP32/pairingWithCharge2/pairingWithCharge2.ino b/Tracking/BLE-ESP32/pairingWithCharge2/pairingWithCharge2.ino index be12bb8c..9ccd5a87 100644 --- a/Tracking/BLE-ESP32/pairingWithCharge2/pairingWithCharge2.ino +++ b/Tracking/BLE-ESP32/pairingWithCharge2/pairingWithCharge2.ino @@ -1,71 +1,237 @@ -/* - Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleScan.cpp - Ported to Arduino ESP32 by Evandro Copercini -*/ - -#include -#include -#include -#include - -String knownBLEAddresses[] = {"c8:23:86:d7:2e:e7"}; -int RSSI_THRESHOLD = -55; -bool device_found; -int scanTime = 5; //In seconds -BLEScan* pBLEScan; - -class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { +#include //Header file for BLE +#include + + +static BLEUUID serviceUUID("adabfb00-6e7d-4601-bda2-bffaa68956ba"); //Service UUID of fitnessband obtained through nRF connect application + +static BLEUUID charUUID("adabfb02-6e7d-4601-bda2-bffaa68956ba"); //Characteristic UUID of fitnessband obtained through nRF connect application + +String My_BLE_Address = "c8:23:86:d7:2e:e7"; //Hardware Bluetooth MAC of my fitnessband, will vary for every band obtained through nRF connect application + +static BLERemoteCharacteristic* pRemoteCharacteristic; + + +BLEScan* pBLEScan; //Name the scanning device as pBLEScan + +BLEScanResults foundDevices; + + +static BLEAddress *Server_BLE_Address; + +String Scaned_BLE_Address; + + +boolean paired = false; //boolean variable to togge light + + + + + +bool connectToserver (BLEAddress pAddress){ + + + + BLEClient* pClient = BLEDevice::createClient(); + + Serial.println(" - Created client"); + + + // Connect to the BLE Server. + + pClient->connect(pAddress); + + Serial.println(" - Connected to fitnessband"); + + + // Obtain a reference to the service we are after in the remote BLE server. + + BLERemoteService* pRemoteService = pClient->getService(serviceUUID); + + if (pRemoteService != nullptr) + + { + + Serial.println(" - Found our service"); + + return true; + + } + + else{ + Serial.println(" - Error finding service"); + return false; + } + + + + + // Obtain a reference to the characteristic in the service of the remote BLE server. + + pRemoteCharacteristic = pRemoteService->getCharacteristic(charUUID); + + if (pRemoteCharacteristic != nullptr) + + Serial.println(" - Found our characteristic"); + + + return true; + +} + + +class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks + +{ + void onResult(BLEAdvertisedDevice advertisedDevice) { - for (int i = 0; i < (sizeof(knownBLEAddresses) / sizeof(knownBLEAddresses[0])); i++) - { - //Uncomment to Enable Debug Information - Serial.println("*************Start**************"); - Serial.println(sizeof(knownBLEAddresses)); - Serial.println(sizeof(knownBLEAddresses[0])); - Serial.println(sizeof(knownBLEAddresses)/sizeof(knownBLEAddresses[0])); - Serial.println(advertisedDevice.getAddress().toString().c_str()); - Serial.println(knownBLEAddresses[i].c_str()); - Serial.println("*************End**************"); - if (strcmp(advertisedDevice.getAddress().toString().c_str(), knownBLEAddresses[i].c_str()) == 0) - { - device_found = true; - Serial.println("device found"); - break; - - } - else - device_found = false; - } - Serial.printf("Advertised Device: %s \n", advertisedDevice.toString().c_str()); + + Serial.printf("Scan Result: %s \n", advertisedDevice.toString().c_str()); + + Server_BLE_Address = new BLEAddress(advertisedDevice.getAddress()); + + + + Scaned_BLE_Address = Server_BLE_Address->toString().c_str(); + + + } + }; + + +static void my_gap_event_handler(esp_gap_ble_cb_event_t event, esp_ble_gap_cb_param_t* param) { + + Serial.print("RSSI status");Serial.println(param->read_rssi_cmpl.status); + Serial.print("RSSI ");Serial.println(param->read_rssi_cmpl.rssi); + + Serial.print("Address ");Serial.println(BLEAddress(param->read_rssi_cmpl.remote_addr).toString().c_str()); +} + + + void setup() { - Serial.begin(115200); - Serial.println("Scanning..."); - - BLEDevice::init(""); - pBLEScan = BLEDevice::getScan(); //create new scan - pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks()); - pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster - pBLEScan->setInterval(100); - pBLEScan->setWindow(99); // less or equal setInterval value - BLEScanResults foundDevices = pBLEScan->start(scanTime, false); - /*for (int i = 0; i < foundDevices.getCount(); i++) - { - BLEAdvertisedDevice device = foundDevices.getDevice(i); - int rssi = device.getRSSI(); - Serial.print("RSSI: "); - Serial.println(rssi); - if (rssi > RSSI_THRESHOLD && device_found == true) - digitalWrite(LED_BUILTIN, HIGH); - else - digitalWrite(LED_BUILTIN, LOW); - }*/ - pBLEScan->clearResults(); // delete results fromBLEScan buffer to release memory - delay(2000); + + Serial.begin(115200); //Start serial monitor + + Serial.println("ESP32 BLE Server program"); //Intro message + + + BLEDevice::init(""); + + pBLEScan = BLEDevice::getScan(); //create new scan + + pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks()); //Call the class that is defined above + + pBLEScan->setActiveScan(true); //active scan uses more power, but get results faster + + BLEDevice::setCustomGapHandler(my_gap_event_handler); + + + pinMode (LED_BUILTIN,OUTPUT); //Declare the in-built LED pin as output + } + void loop() { - + //getRssi(); + + + foundDevices = pBLEScan->start(3); //Scan for 3 seconds to find the Fitness band + + //Serial.println(BLEClient::getRssi()); + + + + while (foundDevices.getCount() >= 1) + + { + + if (Scaned_BLE_Address == My_BLE_Address && paired == false) + + { + + BLEDevice::setCustomGapHandler(my_gap_event_handler); + + Serial.println("Found Device :-)... connecting to Server as client"); + + if (connectToserver(*Server_BLE_Address)) + + { + + paired = true; + + Serial.println("********************LED turned ON************************"); + + digitalWrite (LED_BUILTIN,HIGH); + + break; + + } + + else + + { + + Serial.println("Pairing failed"); + + break; + + } + + } + + + + if (Scaned_BLE_Address == My_BLE_Address && paired == true) + + { + + Serial.println("Our device went out of range"); + + paired = false; + + Serial.println("********************LED OOOFFFFF************************"); + + digitalWrite (LED_BUILTIN,LOW); + + ESP.restart(); + + break; + + } + + else + + { + + Serial.println("We have some other BLe device in range"); + + break; + + } + + } + } + +/*int BLEClient::getRssi() { + ESP_LOGD(LOG_TAG, ">> getRssi()"); + if (!isConnected()) { + ESP_LOGD(LOG_TAG, "<< getRssi(): Not connected"); + return 0; + } + // We make the API call to read the RSSI value which is an asynchronous operation. We expect to receive + // an ESP_GAP_BLE_READ_RSSI_COMPLETE_EVT to indicate completion. + // + m_semaphoreRssiCmplEvt.take("getRssi"); + esp_err_t rc = ::esp_ble_gap_read_rssi(*getPeerAddress().getNative()); + if (rc != ESP_OK) { + ESP_LOGE(LOG_TAG, "<< getRssi: esp_ble_gap_read_rssi: rc=%d %s", rc, GeneralUtils::errorToString(rc)); + return 0; + } + int rssiValue = m_semaphoreRssiCmplEvt.wait("getRssi"); + ESP_LOGD(LOG_TAG, "<< getRssi(): %d", rssiValue); + return rssiValue; +}*/ diff --git a/Tracking/Direction/hmc/hmc.ino b/Tracking/Direction/hmc/hmc.ino new file mode 100644 index 00000000..cbd596da --- /dev/null +++ b/Tracking/Direction/hmc/hmc.ino @@ -0,0 +1,59 @@ +#include + +/* Define declination of location from where measurement going to be done. +e.g. here we have added declination from location Pune city, India. +we can get it from http://www.magnetic-declination.com */ +#define Declination -0.00669 +#define hmc5883l_address 0x1E + + +void setup() { + Serial.begin(9600); /* begin serial for debug */ + Wire.begin(D6, D5); /* join i2c bus with SDA=D6 and SCL=D5 of NodeMCU */ + hmc5883l_init(); +} + +void loop() { + Serial.print("Heading Angle : "); + Serial.println(hmc5883l_GetHeading()); + delay(150); +} + +void hmc5883l_init(){ /* Magneto initialize function */ + Wire.beginTransmission(hmc5883l_address); + Wire.write(0x00); + Wire.write(0x70); //8 samples per measurement, 15Hz data output rate, Normal measurement + Wire.write(0xA0); // + Wire.write(0x00); //Continuous measurement mode + Wire.endTransmission(); + delay(500); +} + +int hmc5883l_GetHeading(){ + int16_t x, y, z; + double Heading; + Wire.beginTransmission(hmc5883l_address); + Wire.write(0x03); + Wire.endTransmission(); + /* Read 16 bit x,y,z value (2's complement form) */ + Wire.requestFrom(hmc5883l_address, 6); + x = (((int16_t)Wire.read()<<8) | (int16_t)Wire.read()); + z = (((int16_t)Wire.read()<<8) | (int16_t)Wire.read()); + y = (((int16_t)Wire.read()<<8) | (int16_t)Wire.read()); + + Heading = atan2((double)y, (double)x) + Declination; + if (Heading>2*PI) /* Due to declination check for >360 degree */ + Heading = Heading - 2*PI; + if (Heading<0) /* Check for sign */ + Heading = Heading + 2*PI; + return (Heading* 180 / PI);/* Convert into angle and return */ +} + +/* Uncomment below function for reading status register */ +uint8_t readStatus(){ + Wire.beginTransmission(hmc5883l_address); + Wire.write(0x09); + Wire.endTransmission(); + Wire.requestFrom(hmc5883l_address, 1); + return (uint8_t) Wire.read(); +} diff --git a/Tracking/Proximity Testing/proxSensESP32/proxSensESP32.ino b/Tracking/Proximity Testing/proxSensESP32/proxSensESP32.ino new file mode 100644 index 00000000..d86cf644 --- /dev/null +++ b/Tracking/Proximity Testing/proxSensESP32/proxSensESP32.ino @@ -0,0 +1,161 @@ + +#include +#if defined(ESP32) + #include +#elif defined(ESP8266) + #include +#endif +#include + +//Provide the token generation process info. +#include "addons/TokenHelper.h" +//Provide the RTDB payload printing info and other helper functions. +#include "addons/RTDBHelper.h" + +// Insert your network credentials +#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512" + +// Insert Firebase project API Key +#define API_KEY "AIzaSyA3sxz8LTLgtvdkvBAaLvZO7gBLqzuLM_A" + +// Insert RTDB URLefine the RTDB URL */ +#define DATABASE_URL "https://rudra-x-default-rtdb.firebaseio.com/" + +//Define Firebase Data object +FirebaseData fbdo; + +FirebaseAuth auth; +FirebaseConfig config; + +unsigned long sendDataPrevMillis = 0; +int count = 0; +bool signupOK = false; + + +const int trigPin1 = 15; +const int echoPin1 = 2; + + +//define sound speed in cm/uS +#define SOUND_SPEED 0.034 +#define CM_TO_INCH 0.393701 + +long duration1; +float distanceCm1; +float distanceInch; + + +void setup(){ + Serial.begin(115200); + pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output + pinMode(echoPin1, INPUT); // Sets the echoPin as an Input + WiFi.begin(WIFI_SSID, WIFI_PASSWORD); + Serial.print("Connecting to Wi-Fi"); + while (WiFi.status() != WL_CONNECTED){ + Serial.print("."); + delay(300); + } + Serial.println(); + Serial.print("Connected with IP: "); + Serial.println(WiFi.localIP()); + Serial.println(); + + /* Assign the api key (required) */ + config.api_key = API_KEY; + + /* Assign the RTDB URL (required) */ + config.database_url = DATABASE_URL; + + /* Sign up */ + if (Firebase.signUp(&config, &auth, "", "")){ + Serial.println("ok"); + signupOK = true; + } + else{ + Serial.printf("%s\n", config.signer.signupError.message.c_str()); + } + + /* Assign the callback function for the long running token generation task */ + config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h + + Firebase.begin(&config, &auth); + Firebase.reconnectWiFi(true); +} + +void loop(){ + // Clears the trigPin + digitalWrite(trigPin1, LOW); + delayMicroseconds(2); + // Sets the trigPin on HIGH state for 10 micro seconds + digitalWrite(trigPin1, HIGH); + delayMicroseconds(10); + digitalWrite(trigPin1, LOW); + + // Reads the echoPin, returns the sound wave travel time in microseconds + duration1 = pulseIn(echoPin1, HIGH); + + // Calculate the distance + distanceCm1 = duration1 * SOUND_SPEED/2; + + + // Prints the distance in the Serial Monitor + Serial.print("Distance1: "); + Serial.println(distanceCm1); + if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 100 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "proximity sensor/S1", distanceCm1)){ + Serial.println("PASSED"); + Serial.println("PATH: " + fbdo.dataPath()); + Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + } + delay(1000); +} +/* +const int trigPin1 = 15; +const int echoPin1 = 2; + + +//define sound speed in cm/uS +#define SOUND_SPEED 0.034 +#define CM_TO_INCH 0.393701 + +long duration1; +float distanceCm1; +float distanceInch; + +void setup() { + Serial.begin(115200); // Starts the serial communication + pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output + pinMode(echoPin1, INPUT); // Sets the echoPin as an Input +} + +void loop() { + // Clears the trigPin + digitalWrite(trigPin1, LOW); + delayMicroseconds(2); + // Sets the trigPin on HIGH state for 10 micro seconds + digitalWrite(trigPin1, HIGH); + delayMicroseconds(10); + digitalWrite(trigPin1, LOW); + + // Reads the echoPin, returns the sound wave travel time in microseconds + duration = pulseIn(echoPin1, HIGH); + + // Calculate the distance + distanceCm1 = duration1 * SOUND_SPEED/2; + + + // Prints the distance in the Serial Monitor + Serial.print("Distance1: "); + Serial.println(distanceCm1); + + + delay(1000); +}*/ diff --git a/Tracking/Proximity Testing/reciever/reciever.ino b/Tracking/Proximity Testing/reciever/reciever.ino index ffe16581..34aa0185 100644 --- a/Tracking/Proximity Testing/reciever/reciever.ino +++ b/Tracking/Proximity Testing/reciever/reciever.ino @@ -17,6 +17,8 @@ if (Pdistance==distance || Pdistance==distance+1 || Pdistance==distance-1 ) Serial.print("Measured Distance: "); Serial.println(distance/2); } +Serial.print("Distance: "); +Serial.println(distance/2); //Serial.print("Distance: "); //Serial.println(distance/2); delay(500); diff --git a/Tracking/Proximity Testing/transmitter/transmitter.ino b/Tracking/Proximity Testing/transmitter/transmitter.ino index 2e3a40fe..19348bbb 100644 --- a/Tracking/Proximity Testing/transmitter/transmitter.ino +++ b/Tracking/Proximity Testing/transmitter/transmitter.ino @@ -1,5 +1,5 @@ // defines pins numbers -const int trigPin = 9; +/*const int trigPin = 9; const int echoPin = 10; // defines variables long duration; @@ -15,4 +15,44 @@ digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); delay(2); +}*/ + +// ---------------------------------------------------------------- // +// Arduino Ultrasoninc Sensor HC-SR04 +// Re-writed by Arbi Abdul Jabbaar +// Using Arduino IDE 1.8.7 +// Using HC-SR04 Module +// Tested on 17 September 2019 +// ---------------------------------------------------------------- // +#define echoPin 10 // attach pin D2 Arduino to pin Echo of HC-SR04 +#define trigPin 9 //attach pin D3 Arduino to pin Trig of HC-SR04 + +// defines variables +long duration; // variable for the duration of sound wave travel +int distance; // variable for the distance measurement + +void setup() { + pinMode(trigPin, OUTPUT); // Sets the trigPin as an OUTPUT + pinMode(echoPin, INPUT); // Sets the echoPin as an INPUT + Serial.begin(9600); // // Serial Communication is starting with 9600 of baudrate speed + Serial.println("Ultrasonic Sensor HC-SR04 Test"); // print some text in Serial Monitor + Serial.println("with Arduino UNO R3"); +} +void loop() { + + // Sets the trigPin HIGH (ACTIVE) for 10 microseconds + digitalWrite(trigPin, HIGH); + delayMicroseconds(10); + // Clears the trigPin condition + digitalWrite(trigPin, LOW); + delayMicroseconds(2); + //digitalWrite(trigPin, LOW); + // Reads the echoPin, returns the sound wave travel time in microseconds + duration = pulseIn(echoPin, HIGH); + // Calculating the distance + distance = duration * 0.034 / 2; // Speed of sound wave divided by 2 (go and back) + // Displays the distance on the Serial Monitor + Serial.print("Distance: "); + Serial.print(distance); + Serial.println(" cm"); } diff --git a/Tracking/README.md b/Tracking/README.md index d751be0d..a102bc01 100644 --- a/Tracking/README.md +++ b/Tracking/README.md @@ -1,3 +1,5 @@ +https://github.com/jiteshsaini/robotics-level-4/blob/main/earthrover/human_following/human_follower2.py + # Rudra - Tracking 🖲️ ## 👩‍💻 Technologies Required @@ -46,3 +48,6 @@ https://www.researchgate.net/publication/322877438_Estimate_distance_measurement https://www.ijert.org/research/accurate-estimation-of-bluetooth-rssi-and-distance-IJERTV5IS030130.pdf https://nothans.com/measure-wi-fi-signal-levels-with-the-esp8266-and-thingspeak + +## Measuring distance using Ultrasonic Proximity Sensors - Triangulation +- [Dist. between 2 HC-SR04](https://circuitdigest.com/microcontroller-projects/measuring-distance-between-two-ultrasonic-sensors-using-arduino) diff --git a/Tracking/WiFi RSSI/.vscode/settings.json b/Tracking/WiFi RSSI/.vscode/settings.json new file mode 100644 index 00000000..a89daed1 --- /dev/null +++ b/Tracking/WiFi RSSI/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "cstdarg": "cpp" + } +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/Map final/output/output.ino b/Tracking/WiFi RSSI/Map final/output/output.ino new file mode 100644 index 00000000..03204e9a --- /dev/null +++ b/Tracking/WiFi RSSI/Map final/output/output.ino @@ -0,0 +1,12 @@ +#include "model.h" + +void loop() { + scan(); + classify(); + delay(3000); +} + +void classify() { + Serial.print("You are in "); + Serial.println(classIdxToName(predict(features))); +} diff --git a/Tracking/WiFi RSSI/RSSI datasets.txt b/Tracking/WiFi RSSI/RSSI datasets.txt new file mode 100644 index 00000000..5a040736 --- /dev/null +++ b/Tracking/WiFi RSSI/RSSI datasets.txt @@ -0,0 +1,123 @@ +"paya1", "Airtel", "FTTH", "Jaishree", "www.excitel.com", "pwd555307", "TP-Link_B65C", "88Medha", "151*", "TanuAbhi136", "JioFiber-Dinesh_4G", "Sunny", "DoozyPixie", "MALHOTRA", "ladoobala", "Rahul Iyer _ 2g", "BatCave", "157medha", "Sagar 1", "airtel171", "pranav4g" + +Mishty Room: + +-63.00,-59.00,-75.00,-71.00,-75.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-57.00,-69.00,-79.00,-68.00,-82.00,0.00,0.00,0.00,0.00,0.00,-88.00,0.00,-92.00,0.00,-93.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-65.00,-61.00,-73.00,-70.00,-77.00,-91.00,0.00,0.00,-95.00,0.00,0.00,0.00,0.00,-93.00,-93.00,-94.00,0.00,0.00,-91.00,0.00,0.00n +-60.00,-73.00,-77.00,-66.00,-82.00,-95.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-57.00,-60.00,-77.00,-70.00,-74.00,-91.00,0.00,0.00,-94.00,0.00,-87.00,0.00,0.00,-91.00,-94.00,-91.00,0.00,0.00,-92.00,0.00,0.00n +-59.00,-64.00,-79.00,-73.00,-77.00,-93.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,-89.00,0.00,0.00n +-59.00,-67.00,-76.00,-68.00,-77.00,-93.00,-94.00,0.00,0.00,0.00,0.00,-92.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-93.00n +-59.00,-68.00,-78.00,-69.00,-77.00,-92.00,-93.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-56.00,-66.00,-78.00,-68.00,-77.00,0.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-57.00,-64.00,-80.00,-69.00,-82.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-59.00,-69.00,-80.00,-70.00,-87.00,0.00,0.00,0.00,0.00,0.00,-86.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-60.00,-63.00,-76.00,-65.00,-76.00,-89.00,-90.00,0.00,-92.00,0.00,0.00,0.00,-92.00,-95.00,-88.00,-91.00,0.00,0.00,-94.00,0.00,0.00n +-78.00,-59.00,-76.00,-72.00,-76.00,-94.00,-91.00,-92.00,-93.00,0.00,0.00,0.00,-92.00,-92.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00n +-69.00,-61.00,-75.00,-75.00,-75.00,-93.00,-90.00,0.00,-93.00,0.00,0.00,0.00,-88.00,0.00,-92.00,-93.00,0.00,0.00,-90.00,0.00,0.00n +-60.00,-73.00,-79.00,-69.00,-76.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-90.00,-93.00,-93.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-60.00,-70.00,-75.00,-69.00,-74.00,-92.00,0.00,0.00,0.00,0.00,-89.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00n +-60.00,-76.00,-74.00,-68.00,-77.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00n +-69.00,-59.00,-77.00,-74.00,-78.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-93.00,0.00,0.00,0.00,-93.00,0.00,0.00n +-70.00,-55.00,-77.00,-77.00,-77.00,0.00,0.00,-96.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-96.00,0.00,0.00n +-67.00,-58.00,-78.00,-78.00,-77.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-90.00,0.00,0.00n + +Bedroom: + +-50.00,-85.00,-83.00,0.00,-66.00,0.00,-90.00,0.00,-90.00,0.00,-82.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-56.00,-70.00,-80.00,-81.00,-60.00,0.00,0.00,0.00,-91.00,0.00,-76.00,0.00,-90.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-56.00,-75.00,-80.00,-85.00,-61.00,0.00,-89.00,-91.00,-94.00,0.00,-72.00,0.00,-92.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-55.00,-82.00,-79.00,-82.00,-66.00,0.00,-90.00,0.00,-91.00,0.00,-73.00,0.00,-91.00,-89.00,0.00,-96.00,0.00,0.00,0.00,0.00,0.00n +-64.00,-83.00,-79.00,-77.00,-65.00,0.00,-91.00,-93.00,-92.00,0.00,-72.00,0.00,-90.00,-86.00,0.00,-95.00,0.00,0.00,0.00,0.00,0.00n +-53.00,-80.00,-94.00,-81.00,-59.00,0.00,0.00,-95.00,-92.00,0.00,-71.00,0.00,-90.00,-85.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00n +-51.00,0.00,-60.00,-83.00,-59.00,0.00,0.00,0.00,-91.00,0.00,-74.00,0.00,-92.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00n +-50.00,-78.00,-79.00,-80.00,-60.00,0.00,-87.00,-91.00,-91.00,0.00,-75.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-51.00,-79.00,-61.00,-79.00,-59.00,0.00,-86.00,-93.00,-89.00,0.00,-74.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-48.00,-82.00,-80.00,-82.00,-64.00,0.00,0.00,0.00,-93.00,0.00,-73.00,0.00,-92.00,-90.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-53.00,-79.00,-80.00,-81.00,-62.00,0.00,-91.00,-89.00,-94.00,0.00,-74.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-52.00,-85.00,-86.00,-83.00,-62.00,0.00,-87.00,0.00,-94.00,0.00,-78.00,0.00,-93.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-47.00,-86.00,-82.00,-85.00,-60.00,0.00,0.00,0.00,-89.00,0.00,0.00,0.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-54.00,-76.00,-83.00,-91.00,-62.00,0.00,-91.00,-94.00,-92.00,0.00,-76.00,0.00,-92.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-53.00,-81.00,-78.00,-83.00,-61.00,0.00,-87.00,-94.00,-87.00,0.00,-74.00,0.00,-90.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-50.00,-85.00,-80.00,-84.00,-64.00,0.00,0.00,0.00,-88.00,0.00,-73.00,0.00,-92.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-49.00,-82.00,-80.00,-86.00,-63.00,0.00,-87.00,-90.00,-91.00,0.00,-69.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-49.00,-81.00,-81.00,-86.00,-62.00,0.00,-87.00,-94.00,-86.00,0.00,-75.00,0.00,-92.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-50.00,-83.00,-82.00,-83.00,-59.00,0.00,-86.00,-92.00,-89.00,0.00,-72.00,0.00,-90.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-49.00,-73.00,-81.00,-79.00,-63.00,0.00,-90.00,0.00,-86.00,0.00,-73.00,0.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-44.00,-84.00,-83.00,-86.00,-64.00,0.00,-89.00,-95.00,-91.00,0.00,-71.00,0.00,-90.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-58.00,-75.00,-79.00,-90.00,-60.00,0.00,0.00,-90.00,-89.00,0.00,-74.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-49.00,-81.00,-83.00,-80.00,-64.00,0.00,-91.00,-90.00,-89.00,0.00,-74.00,0.00,-91.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n + + +Naina room: + +-54.00,-83.00,-93.00,-80.00,-91.00,0.00,-78.00,-86.00,-91.00,0.00,-81.00,0.00,-82.00,-90.00,0.00,-93.00,0.00,-95.00,0.00,0.00,0.00n +-54.00,-82.00,-86.00,-91.00,-66.00,-88.00,-86.00,0.00,-94.00,0.00,-84.00,0.00,-80.00,-86.00,0.00,-86.00,0.00,0.00,0.00,0.00,0.00n +-57.00,0.00,-91.00,0.00,-61.00,-92.00,-81.00,-87.00,-86.00,0.00,-83.00,0.00,-79.00,-86.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00n +-56.00,-86.00,-84.00,-91.00,-61.00,-95.00,-81.00,-88.00,-87.00,0.00,-81.00,0.00,-79.00,-88.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00n +-53.00,-87.00,-90.00,-86.00,-60.00,-94.00,-83.00,0.00,-88.00,0.00,-82.00,0.00,-80.00,-86.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00n +-57.00,-85.00,-84.00,-83.00,-58.00,-92.00,-82.00,0.00,-88.00,0.00,-82.00,0.00,-81.00,-85.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00n +-56.00,-84.00,-88.00,-84.00,-60.00,0.00,-83.00,-89.00,-88.00,0.00,-78.00,0.00,-80.00,-83.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00n +-55.00,-83.00,-88.00,-85.00,-61.00,-93.00,0.00,0.00,-87.00,0.00,0.00,0.00,-81.00,-86.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-89.00,-89.00,-85.00,-63.00,-93.00,-84.00,0.00,0.00,0.00,-87.00,0.00,-90.00,-89.00,0.00,-93.00,0.00,0.00,-96.00,0.00,0.00n +-59.00,-94.00,-90.00,-89.00,-68.00,-94.00,-85.00,0.00,0.00,0.00,-84.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-89.00,-92.00,-89.00,-68.00,0.00,-89.00,0.00,0.00,0.00,-85.00,0.00,-91.00,-95.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00n +-64.00,-90.00,-69.00,0.00,-66.00,0.00,-86.00,0.00,0.00,0.00,-85.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-88.00,-92.00,-90.00,-67.00,0.00,-88.00,0.00,0.00,0.00,-86.00,0.00,-92.00,-91.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-88.00,-90.00,-88.00,-66.00,0.00,-87.00,-91.00,0.00,0.00,-81.00,0.00,-91.00,-96.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-62.00,-85.00,-92.00,0.00,-67.00,0.00,-87.00,0.00,0.00,0.00,-82.00,0.00,-91.00,-91.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-86.00,-90.00,-86.00,-69.00,0.00,-87.00,0.00,0.00,0.00,-82.00,0.00,-92.00,-88.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00n +-64.00,-83.00,-90.00,-89.00,-71.00,0.00,-87.00,0.00,0.00,0.00,-81.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-84.00,-89.00,-90.00,-71.00,-96.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-86.00,-94.00,-90.00,-69.00,-93.00,-88.00,0.00,0.00,0.00,-81.00,0.00,0.00,-94.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-86.00,-87.00,-93.00,-68.00,0.00,-83.00,0.00,0.00,0.00,-87.00,0.00,-94.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n + + +Hall: + +-79.00,-62.00,-87.00,-77.00,-62.00,0.00,0.00,0.00,-85.00,-88.00,-84.00,0.00,0.00,-88.00,-90.00,0.00,0.00,0.00,0.00,0.00,-93.00n +-62.00,-66.00,-77.00,0.00,-68.00,0.00,0.00,-92.00,-83.00,-93.00,-79.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-87.00n +-67.00,-63.00,-78.00,0.00,-63.00,0.00,0.00,-92.00,-79.00,-88.00,-82.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00n +-59.00,-62.00,-81.00,-73.00,-89.00,0.00,0.00,-94.00,-80.00,-94.00,-77.00,0.00,-88.00,-92.00,-92.00,-94.00,-94.00,0.00,0.00,0.00,-89.00n +-63.00,-65.00,-79.00,-78.00,-93.00,0.00,0.00,0.00,-87.00,0.00,-78.00,0.00,-91.00,-87.00,-91.00,0.00,-92.00,0.00,0.00,-95.00,-86.00n +-60.00,-69.00,-81.00,-79.00,-93.00,0.00,0.00,0.00,-82.00,0.00,-76.00,0.00,-91.00,-89.00,-88.00,0.00,-93.00,0.00,0.00,-93.00,0.00n +-56.00,-61.00,-81.00,-76.00,-91.00,0.00,0.00,0.00,-81.00,0.00,-81.00,0.00,0.00,-89.00,-89.00,-94.00,0.00,0.00,0.00,-96.00,-87.00n +-62.00,-65.00,-83.00,-70.00,-82.00,0.00,0.00,-93.00,-81.00,-85.00,-77.00,0.00,-89.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00n +-58.00,-62.00,-80.00,-69.00,-90.00,0.00,0.00,0.00,-80.00,-86.00,-76.00,0.00,-89.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,-86.00n +-63.00,-65.00,-79.00,-69.00,-88.00,0.00,0.00,0.00,-79.00,-86.00,-77.00,0.00,0.00,-91.00,-90.00,-94.00,0.00,0.00,0.00,0.00,-89.00n +-64.00,-62.00,-90.00,-69.00,-92.00,0.00,0.00,0.00,-78.00,-89.00,-79.00,0.00,-90.00,-90.00,-90.00,0.00,0.00,0.00,0.00,0.00,-88.00n +-64.00,-61.00,-75.00,-70.00,-67.00,0.00,0.00,0.00,-81.00,-89.00,-82.00,0.00,-88.00,0.00,-92.00,-92.00,0.00,0.00,0.00,0.00,-87.00n +-61.00,-64.00,-87.00,-71.00,-89.00,0.00,0.00,-93.00,-79.00,-86.00,-80.00,0.00,-87.00,-89.00,-89.00,-94.00,0.00,0.00,0.00,-96.00,-92.00n +-64.00,-62.00,-74.00,-71.00,-89.00,0.00,0.00,0.00,-80.00,-87.00,0.00,0.00,-90.00,-89.00,-91.00,0.00,0.00,0.00,0.00,0.00,-91.00n +-63.00,-63.00,-75.00,-74.00,-66.00,0.00,0.00,0.00,-82.00,-86.00,-86.00,0.00,-89.00,-94.00,-91.00,0.00,0.00,0.00,0.00,-92.00,-92.00n +-63.00,-60.00,-77.00,-74.00,-66.00,0.00,0.00,0.00,-82.00,-89.00,0.00,0.00,-89.00,-92.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00n +-62.00,-63.00,-90.00,-73.00,-88.00,-93.00,0.00,0.00,-83.00,-85.00,-79.00,0.00,-89.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00n +-64.00,-61.00,-77.00,-81.00,-68.00,-92.00,0.00,0.00,-82.00,-89.00,-81.00,0.00,-87.00,-90.00,-92.00,-95.00,0.00,0.00,0.00,0.00,0.00n +-62.00,-60.00,-80.00,-77.00,-68.00,0.00,0.00,0.00,-80.00,-90.00,-79.00,0.00,-87.00,-88.00,-90.00,0.00,0.00,0.00,0.00,0.00,-88.00n +-63.00,-63.00,-80.00,-76.00,-93.00,-92.00,-89.00,0.00,-82.00,-88.00,-77.00,0.00,-87.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00n + + +Living room: + +-74.00,-72.00,-74.00,-76.00,-73.00,0.00,0.00,0.00,0.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-68.00,-77.00,-75.00,-80.00,-94.00,0.00,0.00,0.00,-94.00,0.00,-83.00,-91.00,-93.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00n +-67.00,-74.00,-79.00,-81.00,-78.00,-91.00,0.00,0.00,-93.00,0.00,-89.00,-91.00,-91.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-62.00,-76.00,-79.00,-71.00,-94.00,0.00,0.00,0.00,-89.00,-93.00,0.00,-90.00,-88.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-76.00,-76.00,-71.00,-90.00,0.00,0.00,0.00,-92.00,0.00,0.00,-95.00,-90.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00n +-61.00,-76.00,-76.00,-74.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00n +-68.00,-73.00,-78.00,-74.00,-79.00,-93.00,0.00,0.00,-95.00,0.00,-92.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-72.00,-72.00,-79.00,-74.00,-76.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-68.00,-75.00,-79.00,-75.00,-92.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-65.00,-77.00,-79.00,-71.00,-76.00,-93.00,0.00,0.00,-93.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-67.00,-79.00,-79.00,-75.00,-74.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-72.00,-76.00,-79.00,-72.00,-72.00,0.00,0.00,0.00,-91.00,0.00,0.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-69.00,-73.00,-78.00,-69.00,-72.00,0.00,0.00,0.00,-87.00,0.00,-87.00,-94.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-71.00,-74.00,-79.00,-77.00,-72.00,0.00,0.00,0.00,0.00,0.00,-94.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-74.00,-73.00,-79.00,-71.00,-73.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-69.00,-76.00,-78.00,-75.00,-74.00,0.00,0.00,0.00,0.00,0.00,-92.00,-92.00,-89.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-63.00,-74.00,-77.00,-73.00,-73.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00n +-68.00,-71.00,-77.00,-72.00,-95.00,0.00,0.00,0.00,-94.00,-94.00,0.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-62.00,-70.00,-78.00,-76.00,-71.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n +-64.00,-71.00,-78.00,-69.00,-73.00,0.00,0.00,0.00,-93.00,-95.00,-90.00,-93.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00n + diff --git a/Tracking/WiFi RSSI/esp32/.vscode/arduino.json b/Tracking/WiFi RSSI/esp32/.vscode/arduino.json new file mode 100644 index 00000000..a3549a54 --- /dev/null +++ b/Tracking/WiFi RSSI/esp32/.vscode/arduino.json @@ -0,0 +1,5 @@ +{ + "sketch": "esp32.ino", + "configuration": "FlashFreq=80,UploadSpeed=921600,DebugLevel=none", + "board": "esp32:esp32:esp32doit-devkit-v1" +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/esp32/.vscode/c_cpp_properties.json b/Tracking/WiFi RSSI/esp32/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..9b06785e --- /dev/null +++ b/Tracking/WiFi RSSI/esp32/.vscode/c_cpp_properties.json @@ -0,0 +1,582 @@ +{ + "version": 4, + "configurations": [ + { + "name": "Win32", + "compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/cl.exe", + "compilerArgs": [], + "intelliSenseMode": "windows-msvc-x64", + "includePath": [ + "${workspaceFolder}/**" + ], + "forcedInclude": [], + "cStandard": "c17", + "cppStandard": "c++17", + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ] + }, + { + "name": "Arduino", + "compilerPath": "C:\\Users\\sukri\\AppData\\Local\\Arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\bin\\xtensa-esp32-elf-g++", + "compilerArgs": [ + "-mlongcalls", + "-Wno-frame-address", + "-ffunction-sections", + "-fdata-sections", + "-Wno-error=unused-function", + "-Wno-error=unused-variable", + "-Wno-error=deprecated-declarations", + "-Wno-unused-parameter", + "-Wno-sign-compare", + "-freorder-blocks", + "-Wwrite-strings", + "-fstack-protector", + "-fstrict-volatile-bitfields", + "-Wno-error=unused-but-set-variable", + "-fno-jump-tables", + "-fno-tree-switch-conversion", + "-std=gnu++11", + "-fexceptions", + "-fno-rtti" + ], + "intelliSenseMode": "gcc-x64", + "includePath": [ + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\newlib\\platform_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include\\esp_additions\\freertos", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\port\\xtensa\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include\\esp_additions", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include\\soc", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include\\soc\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\port\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\port\\esp32\\private_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\heap\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\log\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\include\\apps", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\include\\apps\\sntp", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\lwip\\src\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\port\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\port\\esp32\\include\\arch", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\platform_port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\port\\soc", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\port\\public_compat", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\xtensa\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\xtensa\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\driver\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\driver\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_pm\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_ringbuf\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\efuse\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\efuse\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\vfs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_wifi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_event\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_netif\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_eth\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\tcpip_adapter\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_phy\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_phy\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_ipc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\app_trace\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_timer\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\mbedtls\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\esp_crt_bundle\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\app_update\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\spi_flash\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bootloader_support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nvs_flash\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\pthread\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\xtensa", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\espcoredump\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\espcoredump\\include\\port\\xtensa", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\esp_supplicant\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ieee802154\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\console", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\asio\\asio\\asio\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\asio\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\osi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\include\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\api\\include\\api", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\btc\\profile\\esp\\blufi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\btc\\profile\\esp\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\host\\bluedroid\\api\\include\\api", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\cbor\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\unity\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\unity\\unity\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\cmock\\CMock\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\coap\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\coap\\libcoap\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nghttp\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nghttp\\nghttp2\\lib\\includes", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-tls", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-tls\\esp-tls-crypto", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_adc_cal\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hid\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\tcp_transport\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_http_client\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_http_server\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_https_ota\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_lcd\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_lcd\\interface", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protobuf-c\\protobuf-c", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\common", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\security", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\transports", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mdns\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_local_ctrl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\sdmmc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_serial_slave_link\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_websocket_client\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\expat\\expat\\expat\\lib", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\expat\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wear_levelling\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\diskio", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\vfs", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freemodbus\\common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\idf_test\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\idf_test\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\jsmn\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json\\cJSON", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\libsodium\\libsodium\\src\\libsodium\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\libsodium\\port_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mqtt\\esp-mqtt\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\openssl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\perfmon\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\spiffs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ulp\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wifi_provisioning\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\button\\button\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\rmaker_common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_parser\\upstream\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_parser\\upstream", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_generator\\upstream", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_schedule\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rainmaker\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\qrcode\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ws2812_led", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\dotprod\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\hann\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman_harris\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman_nuttall\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\nuttall\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\flat_top\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\iir\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\fir\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\add\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\sub\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\mul\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\addc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\mulc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\sqrt\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\matrix\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\fft\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\dct\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\conv\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\kalman\\ekf\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\kalman\\ekf_imu13states\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_littlefs\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_littlefs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\tool", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\typedef", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\image", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\math", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\nn", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\layer", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\detect", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\model_zoo", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-sr\\esp-tts\\esp_tts_chinese\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-sr\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32-camera\\driver\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32-camera\\conversions\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fb_gfx\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\qspi_qspi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\cores\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\variants\\doitESP32devkitV1", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\libraries\\WiFi\\src", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0\\xtensa-esp32-elf", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0\\backward", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\lib\\gcc\\xtensa-esp32-elf\\8.4.0\\include", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\lib\\gcc\\xtensa-esp32-elf\\8.4.0\\include-fixed", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\sys-include", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include" + ], + "forcedInclude": [ + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\cores\\esp32\\Arduino.h" + ], + "cStandard": "c11", + "cppStandard": "c++11", + "defines": [ + "HAVE_CONFIG_H", + "MBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\"", + "UNITY_INCLUDE_CONFIG_H", + "WITH_POSIX", + "_GNU_SOURCE", + "IDF_VER=\"v4.4.1-1-gb8050b365e\"", + "ESP_PLATFORM", + "_POSIX_READER_WRITER_LOCKS", + "F_CPU=240000000L", + "ARDUINO=10816", + "ARDUINO_ESP32_DEV", + "ARDUINO_ARCH_ESP32", + "ARDUINO_BOARD=\"ESP32_DEV\"", + "ARDUINO_VARIANT=\"doitESP32devkitV1\"", + "ARDUINO_PARTITION_default", + "ESP32", + "CORE_DEBUG_LEVEL=0", + "ARDUINO_USB_CDC_ON_BOOT=0", + "__DBL_MIN_EXP__=(-1021)", + "__FLT32X_MAX_EXP__=1024", + "__cpp_attributes=200809", + "__UINT_LEAST16_MAX__=0xffff", + "__ATOMIC_ACQUIRE=2", + "__FLT_MIN__=1.1754943508222875e-38F", + "__GCC_IEC_559_COMPLEX=0", + "__cpp_aggregate_nsdmi=201304", + "__UINT_LEAST8_TYPE__=unsigned char", + "__INTMAX_C(c)=c ## LL", + "__CHAR_BIT__=8", + "__UINT8_MAX__=0xff", + "__WINT_MAX__=0xffffffffU", + "__FLT32_MIN_EXP__=(-125)", + "__cpp_static_assert=200410", + "__ORDER_LITTLE_ENDIAN__=1234", + "__SIZE_MAX__=0xffffffffU", + "__WCHAR_MAX__=0xffff", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1", + "__DBL_DENORM_MIN__=double(4.9406564584124654e-324L)", + "__GCC_ATOMIC_CHAR_LOCK_FREE=2", + "__GCC_IEC_559=0", + "__FLT32X_DECIMAL_DIG__=17", + "__FLT_EVAL_METHOD__=0", + "__cpp_binary_literals=201304", + "__FLT64_DECIMAL_DIG__=17", + "__GCC_ATOMIC_CHAR32_T_LOCK_FREE=2", + "__cpp_variadic_templates=200704", + "__UINT_FAST64_MAX__=0xffffffffffffffffULL", + "__SIG_ATOMIC_TYPE__=int", + "__DBL_MIN_10_EXP__=(-307)", + "__FINITE_MATH_ONLY__=0", + "__cpp_variable_templates=201304", + "__GNUC_PATCHLEVEL__=0", + "__FLT32_HAS_DENORM__=1", + "__UINT_FAST8_MAX__=0xffffffffU", + "__has_include(STR)=__has_include__(STR)", + "__DEC64_MAX_EXP__=385", + "__INT8_C(c)=c", + "__INT_LEAST8_WIDTH__=8", + "__UINT_LEAST64_MAX__=0xffffffffffffffffULL", + "__SHRT_MAX__=0x7fff", + "__LDBL_MAX__=1.7976931348623157e+308L", + "__UINT_LEAST8_MAX__=0xff", + "__GCC_ATOMIC_BOOL_LOCK_FREE=2", + "__UINTMAX_TYPE__=long long unsigned int", + "__DEC32_EPSILON__=1E-6DF", + "__FLT_EVAL_METHOD_TS_18661_3__=0", + "__CHAR_UNSIGNED__=1", + "__UINT32_MAX__=0xffffffffU", + "__GXX_EXPERIMENTAL_CXX0X__=1", + "__LDBL_MAX_EXP__=1024", + "__WINT_MIN__=0U", + "__INT_LEAST16_WIDTH__=16", + "__SCHAR_MAX__=0x7f", + "__WCHAR_MIN__=0", + "__INT64_C(c)=c ## LL", + "__DBL_DIG__=15", + "__GCC_ATOMIC_POINTER_LOCK_FREE=2", + "__SIZEOF_INT__=4", + "__SIZEOF_POINTER__=4", + "__GCC_ATOMIC_CHAR16_T_LOCK_FREE=2", + "__USER_LABEL_PREFIX__", + "__STDC_HOSTED__=1", + "__LDBL_HAS_INFINITY__=1", + "__XTENSA_EL__=1", + "__FLT32_DIG__=6", + "__FLT_EPSILON__=1.1920928955078125e-7F", + "__GXX_WEAK__=1", + "__SHRT_WIDTH__=16", + "__LDBL_MIN__=2.2250738585072014e-308L", + "__DEC32_MAX__=9.999999E96DF", + "__cpp_threadsafe_static_init=200806", + "__FLT32X_HAS_INFINITY__=1", + "__INT32_MAX__=0x7fffffff", + "__INT_WIDTH__=32", + "__SIZEOF_LONG__=4", + "__UINT16_C(c)=c", + "__PTRDIFF_WIDTH__=32", + "__DECIMAL_DIG__=17", + "__FLT64_EPSILON__=2.2204460492503131e-16F64", + "__INTMAX_WIDTH__=64", + "__FLT64_MIN_EXP__=(-1021)", + "__has_include_next(STR)=__has_include_next__(STR)", + "__LDBL_HAS_QUIET_NAN__=1", + "__FLT64_MANT_DIG__=53", + "__GNUC__=8", + "__GXX_RTTI=1", + "__cpp_delegating_constructors=200604", + "__FLT_HAS_DENORM__=1", + "__SIZEOF_LONG_DOUBLE__=8", + "__BIGGEST_ALIGNMENT__=16", + "__STDC_UTF_16__=1", + "__FLT64_MAX_10_EXP__=308", + "__FLT32_HAS_INFINITY__=1", + "__DBL_MAX__=double(1.7976931348623157e+308L)", + "__cpp_raw_strings=200710", + "__INT_FAST32_MAX__=0x7fffffff", + "__DBL_HAS_INFINITY__=1", + "__DEC32_MIN_EXP__=(-94)", + "__INTPTR_WIDTH__=32", + "__FLT32X_HAS_DENORM__=1", + "__INT_FAST16_TYPE__=int", + "__LDBL_HAS_DENORM__=1", + "__cplusplus=201402L", + "__cpp_ref_qualifiers=200710", + "__DEC128_MAX__=9.999999999999999999999999999999999E6144DL", + "__INT_LEAST32_MAX__=0x7fffffff", + "__DEC32_MIN__=1E-95DF", + "__DEPRECATED=1", + "__cpp_rvalue_references=200610", + "__DBL_MAX_EXP__=1024", + "__WCHAR_WIDTH__=16", + "__FLT32_MAX__=3.4028234663852886e+38F32", + "__DEC128_EPSILON__=1E-33DL", + "__PTRDIFF_MAX__=0x7fffffff", + "__FLT32_HAS_QUIET_NAN__=1", + "__GNUG__=8", + "__LONG_LONG_MAX__=0x7fffffffffffffffLL", + "__SIZEOF_SIZE_T__=4", + "__cpp_rvalue_reference=200610", + "__cpp_nsdmi=200809", + "__SIZEOF_WINT_T__=4", + "__LONG_LONG_WIDTH__=64", + "__cpp_initializer_lists=200806", + "__FLT32_MAX_EXP__=128", + "__cpp_hex_float=201603", + "__GXX_ABI_VERSION=1013", + "__FLT_MIN_EXP__=(-125)", + "__cpp_lambdas=200907", + "__INT_FAST64_TYPE__=long long int", + "__FP_FAST_FMAF=1", + "__FLT64_DENORM_MIN__=4.9406564584124654e-324F64", + "__DBL_MIN__=double(2.2250738585072014e-308L)", + "__FLT32X_EPSILON__=2.2204460492503131e-16F32x", + "__FLT64_MIN_10_EXP__=(-307)", + "__DEC128_MIN__=1E-6143DL", + "__REGISTER_PREFIX__", + "__UINT16_MAX__=0xffff", + "__DBL_HAS_DENORM__=1", + "__FLT32_MIN__=1.1754943508222875e-38F32", + "__UINT8_TYPE__=unsigned char", + "__NO_INLINE__=1", + "__FLT_MANT_DIG__=24", + "__LDBL_DECIMAL_DIG__=17", + "__VERSION__=\"8.4.0\"", + "__UINT64_C(c)=c ## ULL", + "__cpp_unicode_characters=200704", + "__cpp_decltype_auto=201304", + "__GCC_ATOMIC_INT_LOCK_FREE=2", + "__FLT32_MANT_DIG__=24", + "__FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__", + "__SCHAR_WIDTH__=8", + "__INT32_C(c)=c", + "__DEC64_EPSILON__=1E-15DD", + "__ORDER_PDP_ENDIAN__=3412", + "__DEC128_MIN_EXP__=(-6142)", + "__FLT32_MAX_10_EXP__=38", + "__INT_FAST32_TYPE__=int", + "__UINT_LEAST16_TYPE__=short unsigned int", + "__INT16_MAX__=0x7fff", + "__cpp_rtti=199711", + "__SIZE_TYPE__=unsigned int", + "__UINT64_MAX__=0xffffffffffffffffULL", + "__INT8_TYPE__=signed char", + "__cpp_digit_separators=201309", + "__ELF__=1", + "__xtensa__=1", + "__FLT_RADIX__=2", + "__INT_LEAST16_TYPE__=short int", + "__LDBL_EPSILON__=2.2204460492503131e-16L", + "__UINTMAX_C(c)=c ## ULL", + "__SIG_ATOMIC_MAX__=0x7fffffff", + "__GCC_ATOMIC_WCHAR_T_LOCK_FREE=2", + "__SIZEOF_PTRDIFF_T__=4", + "__FLT32X_MANT_DIG__=53", + "__FLT32X_MIN_EXP__=(-1021)", + "__DEC32_SUBNORMAL_MIN__=0.000001E-95DF", + "__INT_FAST16_MAX__=0x7fffffff", + "__FLT64_DIG__=15", + "__UINT_FAST32_MAX__=0xffffffffU", + "__UINT_LEAST64_TYPE__=long long unsigned int", + "__FLT_HAS_QUIET_NAN__=1", + "__FLT_MAX_10_EXP__=38", + "__LONG_MAX__=0x7fffffffL", + "__DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL", + "__FLT_HAS_INFINITY__=1", + "__cpp_unicode_literals=200710", + "__UINT_FAST16_TYPE__=unsigned int", + "__DEC64_MAX__=9.999999999999999E384DD", + "__INT_FAST32_WIDTH__=32", + "__CHAR16_TYPE__=short unsigned int", + "__PRAGMA_REDEFINE_EXTNAME=1", + "__SIZE_WIDTH__=32", + "__INT_LEAST16_MAX__=0x7fff", + "__DEC64_MANT_DIG__=16", + "__INT64_MAX__=0x7fffffffffffffffLL", + "__UINT_LEAST32_MAX__=0xffffffffU", + "__FLT32_DENORM_MIN__=1.4012984643248171e-45F32", + "__GCC_ATOMIC_LONG_LOCK_FREE=2", + "__SIG_ATOMIC_WIDTH__=32", + "__INT_LEAST64_TYPE__=long long int", + "__INT16_TYPE__=short int", + "__INT_LEAST8_TYPE__=signed char", + "__DEC32_MAX_EXP__=97", + "__INT_FAST8_MAX__=0x7fffffff", + "__INTPTR_MAX__=0x7fffffff", + "__cpp_sized_deallocation=201309", + "__cpp_range_based_for=200907", + "__FLT64_HAS_QUIET_NAN__=1", + "__FLT32_MIN_10_EXP__=(-37)", + "__EXCEPTIONS=1", + "__LDBL_MANT_DIG__=53", + "__DBL_HAS_QUIET_NAN__=1", + "__FLT64_HAS_INFINITY__=1", + "__SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)", + "__cpp_return_type_deduction=201304", + "__INTPTR_TYPE__=int", + "__UINT16_TYPE__=short unsigned int", + "__WCHAR_TYPE__=short unsigned int", + "__SIZEOF_FLOAT__=4", + "__UINTPTR_MAX__=0xffffffffU", + "__INT_FAST64_WIDTH__=64", + "__DEC64_MIN_EXP__=(-382)", + "__cpp_decltype=200707", + "__FLT32_DECIMAL_DIG__=9", + "__INT_FAST64_MAX__=0x7fffffffffffffffLL", + "__GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1", + "__FLT_DIG__=6", + "__UINT_FAST64_TYPE__=long long unsigned int", + "__INT_MAX__=0x7fffffff", + "__INT64_TYPE__=long long int", + "__FLT_MAX_EXP__=128", + "__DBL_MANT_DIG__=53", + "__cpp_inheriting_constructors=201511", + "__INT_LEAST64_MAX__=0x7fffffffffffffffLL", + "__FP_FAST_FMAF32=1", + "__DEC64_MIN__=1E-383DD", + "__WINT_TYPE__=unsigned int", + "__UINT_LEAST32_TYPE__=unsigned int", + "__SIZEOF_SHORT__=2", + "__LDBL_MIN_EXP__=(-1021)", + "__FLT64_MAX__=1.7976931348623157e+308F64", + "__WINT_WIDTH__=32", + "__INT_LEAST8_MAX__=0x7f", + "__FLT32X_MAX_10_EXP__=308", + "__WCHAR_UNSIGNED__=1", + "__LDBL_MAX_10_EXP__=308", + "__ATOMIC_RELAXED=0", + "__DBL_EPSILON__=double(2.2204460492503131e-16L)", + "__XTENSA_WINDOWED_ABI__=1", + "__UINT8_C(c)=c", + "__FLT64_MAX_EXP__=1024", + "__INT_LEAST32_TYPE__=int", + "__SIZEOF_WCHAR_T__=2", + "__INT_FAST8_TYPE__=int", + "__GNUC_STDC_INLINE__=1", + "__FLT64_HAS_DENORM__=1", + "__FLT32_EPSILON__=1.1920928955078125e-7F32", + "__DBL_DECIMAL_DIG__=17", + "__STDC_UTF_32__=1", + "__INT_FAST8_WIDTH__=32", + "__DEC_EVAL_METHOD__=2", + "__FLT32X_MAX__=1.7976931348623157e+308F32x", + "__XTENSA__=1", + "__ORDER_BIG_ENDIAN__=4321", + "__cpp_runtime_arrays=198712", + "__UINT64_TYPE__=long long unsigned int", + "__UINT32_C(c)=c ## U", + "__INTMAX_MAX__=0x7fffffffffffffffLL", + "__cpp_alias_templates=200704", + "__BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__", + "__FLT_DENORM_MIN__=1.4012984643248171e-45F", + "__INT8_MAX__=0x7f", + "__LONG_WIDTH__=32", + "__UINT_FAST32_TYPE__=unsigned int", + "__CHAR32_TYPE__=unsigned int", + "__FLT_MAX__=3.4028234663852886e+38F", + "__cpp_constexpr=201304", + "__INT32_TYPE__=int", + "__SIZEOF_DOUBLE__=8", + "__cpp_exceptions=199711", + "__FLT_MIN_10_EXP__=(-37)", + "__FLT64_MIN__=2.2250738585072014e-308F64", + "__INT_LEAST32_WIDTH__=32", + "__INTMAX_TYPE__=long long int", + "__DEC128_MAX_EXP__=6145", + "__FLT32X_HAS_QUIET_NAN__=1", + "__ATOMIC_CONSUME=1", + "__GNUC_MINOR__=4", + "__INT_FAST16_WIDTH__=32", + "__UINTMAX_MAX__=0xffffffffffffffffULL", + "__DEC32_MANT_DIG__=7", + "__FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x", + "__DBL_MAX_10_EXP__=308", + "__LDBL_DENORM_MIN__=4.9406564584124654e-324L", + "__INT16_C(c)=c", + "__cpp_generic_lambdas=201304", + "__STDC__=1", + "__FLT32X_DIG__=15", + "__PTRDIFF_TYPE__=int", + "__ATOMIC_SEQ_CST=5", + "__UINT32_TYPE__=unsigned int", + "__FLT32X_MIN_10_EXP__=(-307)", + "__UINTPTR_TYPE__=unsigned int", + "__DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD", + "__DEC128_MANT_DIG__=34", + "__LDBL_MIN_10_EXP__=(-307)", + "__SIZEOF_LONG_LONG__=8", + "__cpp_user_defined_literals=200809", + "__GCC_ATOMIC_LLONG_LOCK_FREE=1", + "__FLT32X_MIN__=2.2250738585072014e-308F32x", + "__LDBL_DIG__=15", + "__FLT_DECIMAL_DIG__=9", + "__UINT_FAST16_MAX__=0xffffffffU", + "__GCC_ATOMIC_SHORT_LOCK_FREE=2", + "__INT_LEAST64_WIDTH__=64", + "__UINT_FAST8_TYPE__=unsigned int", + "__cpp_init_captures=201304", + "__ATOMIC_ACQ_REL=4", + "__ATOMIC_RELEASE=3", + "USBCON" + ] + } + ] +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/esp32/.vscode/tasks.json b/Tracking/WiFi RSSI/esp32/.vscode/tasks.json new file mode 100644 index 00000000..fd1e5caa --- /dev/null +++ b/Tracking/WiFi RSSI/esp32/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: g++.exe build active file", + "command": "C:\\Strawberry\\c\\bin\\g++.exe", + "args": [ + "-fdiagnostics-color=always", + "-g", + "${file}", + "-o", + "${fileDirname}\\${fileBasenameNoExtension}.exe" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/esp32/esp32.ino b/Tracking/WiFi RSSI/esp32/esp32.ino index fe4ea2c4..2133ab8a 100644 --- a/Tracking/WiFi RSSI/esp32/esp32.ino +++ b/Tracking/WiFi RSSI/esp32/esp32.ino @@ -1,10 +1,25 @@ -// Juan A. Villalpando. -// KIO4.COM -// Enciende y apaga LED. Botones. +// Motor A -- RIGHT +int motor1Pin1 = 27; +int motor1Pin2 = 26; +int enable1Pin = 14; + +int x, y; + +// Motor B -- LEFT +int motor2Pin1 = 25; +int motor2Pin2 = 33; +int enable2Pin = 32; + +// Setting PWM properties +const int freq = 30000; +const int pwmChannelL = 0; +const int pwmChannelR = 0; +const int resolution = 8; +int dutyCycle = 230; #include -const char *ssid = "paya1"; -const char *password = "naina123"; +const char *ssid = "Galaxy M219B55"; +const char *password = "ussr1512"; WiFiServer server(80); // Port 80 @@ -39,6 +54,22 @@ void setup() Serial.print("This is IP to connect to the WebServer: "); Serial.print("http://"); Serial.println(WiFi.localIP()); + + // sets the pins as outputs: + pinMode(motor1Pin1, OUTPUT); + pinMode(motor1Pin2, OUTPUT); + pinMode(enable1Pin, OUTPUT); + pinMode(motor2Pin1, OUTPUT); + pinMode(motor2Pin2, OUTPUT); + pinMode(enable2Pin, OUTPUT); + + // configure LED PWM functionalitites + ledcSetup(pwmChannelL, freq, resolution); + ledcSetup(pwmChannelR, freq, resolution); + + // attach the channel to the GPIO to be controlled + ledcAttachPin(enable1Pin, pwmChannelR); + ledcAttachPin(enable2Pin, pwmChannelL); } void loop() @@ -111,10 +142,159 @@ void loop() buffer[0] = lowByte(val); buffer[1] = highByte(val); - Serial.println(val); + //Serial.println(val); + + + + if (val <= 200) + { + x = 100 - val; + } + + if (val > 200 && val <= 400) + { + y = val - 300; + } + + Serial.print("x: "); + Serial.print(x); + Serial.print(",y: "); + Serial.println(y); + + if(y>=-10 && y<=10){ + stopMoving(); + } + + if(y>10 && x<-30){ + antiClockwiseFor(); + } + + if(y>10 && x>30){ + clockwiseFor(); + } + + if(y>10 && x>=-30 && x<=30){ + goForward(y); + } + + + if(y<-10 && x<-30){ + clockwiseBack(); + } + + if(y<-10 && x>30){ + antiClockwiseBack(); + } + + if(y<-10 && x>=-30 && x<=30){ + goBack(y); + } + /* Wire.beginTransmission(8); Wire.write(buffer, 2); Wire.endTransmission(); */ client.flush(); } + +void stopMoving() +{ + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + Serial.println("stop"); +} + +void goForward(int y) +{ + digitalWrite(motor1Pin1, HIGH); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, HIGH); + digitalWrite(motor2Pin2, LOW); + + float speedL = 0.85 * y + 145; + float speedR = 0.80 * y + 140; + + ledcWrite(pwmChannelL, speedL); + ledcWrite(pwmChannelR, speedR); + + Serial.println("Moving forward"); +} + +void goBack(int y) +{ + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, HIGH); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, HIGH); + + float speedR = (-y) + 145; + float speedL = 0.80 * (-y) + 140; + + ledcWrite(pwmChannelL, speedL); + ledcWrite(pwmChannelR, speedR); + + Serial.println("Moving backward"); +} + +void clockwiseFor() +{ + // left motor on, right off + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, HIGH); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Clockwise forward"); +} + +void antiClockwiseFor() +{ + // left off, right on + + digitalWrite(motor1Pin1, HIGH); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Anti Clockwise forward"); +} + +void clockwiseBack() +{ + // left off, right on + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, HIGH); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Clockwise backward"); +} + +void antiClockwiseBack() +{ + // left on, right off + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, HIGH); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 230); + + Serial.println("Anti Clockwise backward"); +} diff --git a/Tracking/WiFi RSSI/espmotordriver/espmotordriver.ino b/Tracking/WiFi RSSI/espmotordriver/espmotordriver.ino index 9ba7faf9..738a666c 100644 --- a/Tracking/WiFi RSSI/espmotordriver/espmotordriver.ino +++ b/Tracking/WiFi RSSI/espmotordriver/espmotordriver.ino @@ -1,9 +1,9 @@ -// Motor A +// Motor A -- RIGHT int motor1Pin1 = 27; int motor1Pin2 = 26; int enable1Pin = 14; -// Motor B +// Motor B -- LEFT int motor2Pin1 = 25; int motor2Pin2 = 33; int enable2Pin = 32; diff --git a/Tracking/WiFi RSSI/indoor_mapping/.vscode/arduino.json b/Tracking/WiFi RSSI/indoor_mapping/.vscode/arduino.json new file mode 100644 index 00000000..7aca240f --- /dev/null +++ b/Tracking/WiFi RSSI/indoor_mapping/.vscode/arduino.json @@ -0,0 +1,5 @@ +{ + "sketch": "indoor_mapping.ino", + "configuration": "FlashFreq=80,UploadSpeed=921600,DebugLevel=none", + "board": "esp32:esp32:esp32doit-devkit-v1" +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/indoor_mapping/.vscode/c_cpp_properties.json b/Tracking/WiFi RSSI/indoor_mapping/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..b007660f --- /dev/null +++ b/Tracking/WiFi RSSI/indoor_mapping/.vscode/c_cpp_properties.json @@ -0,0 +1,565 @@ +{ + "version": 4, + "configurations": [ + { + "name": "Arduino", + "compilerPath": "C:\\Users\\sukri\\AppData\\Local\\Arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\bin\\xtensa-esp32-elf-g++", + "compilerArgs": [ + "-mlongcalls", + "-Wno-frame-address", + "-ffunction-sections", + "-fdata-sections", + "-Wno-error=unused-function", + "-Wno-error=unused-variable", + "-Wno-error=deprecated-declarations", + "-Wno-unused-parameter", + "-Wno-sign-compare", + "-freorder-blocks", + "-Wwrite-strings", + "-fstack-protector", + "-fstrict-volatile-bitfields", + "-Wno-error=unused-but-set-variable", + "-fno-jump-tables", + "-fno-tree-switch-conversion", + "-std=gnu++11", + "-fexceptions", + "-fno-rtti" + ], + "intelliSenseMode": "gcc-x64", + "includePath": [ + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\newlib\\platform_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include\\esp_additions\\freertos", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\port\\xtensa\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freertos\\include\\esp_additions", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include\\soc", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\include\\soc\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\port\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hw_support\\port\\esp32\\private_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\heap\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\log\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\include\\apps", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\include\\apps\\sntp", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\lwip\\src\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\port\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\lwip\\port\\esp32\\include\\arch", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\soc\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\hal\\platform_port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rom\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\port\\soc", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_system\\port\\public_compat", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\xtensa\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\xtensa\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\driver\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\driver\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_pm\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_ringbuf\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\efuse\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\efuse\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\vfs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_wifi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_event\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_netif\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_eth\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\tcpip_adapter\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_phy\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_phy\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_ipc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\app_trace\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_timer\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\mbedtls\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mbedtls\\esp_crt_bundle\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\app_update\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\spi_flash\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bootloader_support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nvs_flash\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\pthread\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\xtensa", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_gdbstub\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\espcoredump\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\espcoredump\\include\\port\\xtensa", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wpa_supplicant\\esp_supplicant\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ieee802154\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\console", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\asio\\asio\\asio\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\asio\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\osi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\include\\esp32\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\api\\include\\api", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\btc\\profile\\esp\\blufi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\common\\btc\\profile\\esp\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\bt\\host\\bluedroid\\api\\include\\api", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\cbor\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\unity\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\unity\\unity\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\cmock\\CMock\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\coap\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\coap\\libcoap\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nghttp\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\nghttp\\nghttp2\\lib\\includes", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-tls", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-tls\\esp-tls-crypto", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_adc_cal\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_hid\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\tcp_transport\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_http_client\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_http_server\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_https_ota\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_lcd\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_lcd\\interface", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protobuf-c\\protobuf-c", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\common", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\security", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\protocomm\\include\\transports", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mdns\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_local_ctrl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\sdmmc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_serial_slave_link\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_websocket_client\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\expat\\expat\\expat\\lib", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\expat\\port\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wear_levelling\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\diskio", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\vfs", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fatfs\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\freemodbus\\common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\idf_test\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\idf_test\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\jsmn\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json\\cJSON", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\libsodium\\libsodium\\src\\libsodium\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\libsodium\\port_include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\mqtt\\esp-mqtt\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\openssl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\perfmon\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\spiffs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ulp\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\wifi_provisioning\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\button\\button\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\rmaker_common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_parser\\upstream\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_parser\\upstream", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\json_generator\\upstream", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_schedule\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_rainmaker\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\qrcode\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\ws2812_led", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\dotprod\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\support\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\hann\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman_harris\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\blackman_nuttall\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\nuttall\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\windows\\flat_top\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\iir\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\fir\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\add\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\sub\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\mul\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\addc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\mulc\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\math\\sqrt\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\matrix\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\fft\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\dct\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\conv\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\common\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\kalman\\ekf\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dsp\\modules\\kalman\\ekf_imu13states\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_littlefs\\src", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp_littlefs\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\tool", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\typedef", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\image", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\math", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\nn", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\layer", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\detect", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-dl\\include\\model_zoo", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-sr\\esp-tts\\esp_tts_chinese\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp-sr\\include\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32-camera\\driver\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\esp32-camera\\conversions\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\include\\fb_gfx\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\tools\\sdk\\esp32\\qspi_qspi\\include", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\cores\\esp32", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\variants\\doitESP32devkitV1", + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\libraries\\WiFi\\src", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0\\xtensa-esp32-elf", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include\\c++\\8.4.0\\backward", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\lib\\gcc\\xtensa-esp32-elf\\8.4.0\\include", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\lib\\gcc\\xtensa-esp32-elf\\8.4.0\\include-fixed", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\sys-include", + "c:\\users\\sukri\\appdata\\local\\arduino15\\packages\\esp32\\tools\\xtensa-esp32-elf-gcc\\gcc8_4_0-esp-2021r2-patch3\\xtensa-esp32-elf\\include" + ], + "forcedInclude": [ + "C:\\Users\\sukri\\AppData\\Local\\arduino15\\packages\\esp32\\hardware\\esp32\\2.0.3\\cores\\esp32\\Arduino.h" + ], + "cStandard": "c11", + "cppStandard": "c++11", + "defines": [ + "HAVE_CONFIG_H", + "MBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\"", + "UNITY_INCLUDE_CONFIG_H", + "WITH_POSIX", + "_GNU_SOURCE", + "IDF_VER=\"v4.4.1-1-gb8050b365e\"", + "ESP_PLATFORM", + "_POSIX_READER_WRITER_LOCKS", + "F_CPU=240000000L", + "ARDUINO=10816", + "ARDUINO_ESP32_DEV", + "ARDUINO_ARCH_ESP32", + "ARDUINO_BOARD=\"ESP32_DEV\"", + "ARDUINO_VARIANT=\"doitESP32devkitV1\"", + "ARDUINO_PARTITION_default", + "ESP32", + "CORE_DEBUG_LEVEL=0", + "ARDUINO_USB_CDC_ON_BOOT=0", + "__DBL_MIN_EXP__=(-1021)", + "__FLT32X_MAX_EXP__=1024", + "__cpp_attributes=200809", + "__UINT_LEAST16_MAX__=0xffff", + "__ATOMIC_ACQUIRE=2", + "__FLT_MIN__=1.1754943508222875e-38F", + "__GCC_IEC_559_COMPLEX=0", + "__cpp_aggregate_nsdmi=201304", + "__UINT_LEAST8_TYPE__=unsigned char", + "__INTMAX_C(c)=c ## LL", + "__CHAR_BIT__=8", + "__UINT8_MAX__=0xff", + "__WINT_MAX__=0xffffffffU", + "__FLT32_MIN_EXP__=(-125)", + "__cpp_static_assert=200410", + "__ORDER_LITTLE_ENDIAN__=1234", + "__SIZE_MAX__=0xffffffffU", + "__WCHAR_MAX__=0xffff", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1", + "__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1", + "__DBL_DENORM_MIN__=double(4.9406564584124654e-324L)", + "__GCC_ATOMIC_CHAR_LOCK_FREE=2", + "__GCC_IEC_559=0", + "__FLT32X_DECIMAL_DIG__=17", + "__FLT_EVAL_METHOD__=0", + "__cpp_binary_literals=201304", + "__FLT64_DECIMAL_DIG__=17", + "__GCC_ATOMIC_CHAR32_T_LOCK_FREE=2", + "__cpp_variadic_templates=200704", + "__UINT_FAST64_MAX__=0xffffffffffffffffULL", + "__SIG_ATOMIC_TYPE__=int", + "__DBL_MIN_10_EXP__=(-307)", + "__FINITE_MATH_ONLY__=0", + "__cpp_variable_templates=201304", + "__GNUC_PATCHLEVEL__=0", + "__FLT32_HAS_DENORM__=1", + "__UINT_FAST8_MAX__=0xffffffffU", + "__has_include(STR)=__has_include__(STR)", + "__DEC64_MAX_EXP__=385", + "__INT8_C(c)=c", + "__INT_LEAST8_WIDTH__=8", + "__UINT_LEAST64_MAX__=0xffffffffffffffffULL", + "__SHRT_MAX__=0x7fff", + "__LDBL_MAX__=1.7976931348623157e+308L", + "__UINT_LEAST8_MAX__=0xff", + "__GCC_ATOMIC_BOOL_LOCK_FREE=2", + "__UINTMAX_TYPE__=long long unsigned int", + "__DEC32_EPSILON__=1E-6DF", + "__FLT_EVAL_METHOD_TS_18661_3__=0", + "__CHAR_UNSIGNED__=1", + "__UINT32_MAX__=0xffffffffU", + "__GXX_EXPERIMENTAL_CXX0X__=1", + "__LDBL_MAX_EXP__=1024", + "__WINT_MIN__=0U", + "__INT_LEAST16_WIDTH__=16", + "__SCHAR_MAX__=0x7f", + "__WCHAR_MIN__=0", + "__INT64_C(c)=c ## LL", + "__DBL_DIG__=15", + "__GCC_ATOMIC_POINTER_LOCK_FREE=2", + "__SIZEOF_INT__=4", + "__SIZEOF_POINTER__=4", + "__GCC_ATOMIC_CHAR16_T_LOCK_FREE=2", + "__USER_LABEL_PREFIX__", + "__STDC_HOSTED__=1", + "__LDBL_HAS_INFINITY__=1", + "__XTENSA_EL__=1", + "__FLT32_DIG__=6", + "__FLT_EPSILON__=1.1920928955078125e-7F", + "__GXX_WEAK__=1", + "__SHRT_WIDTH__=16", + "__LDBL_MIN__=2.2250738585072014e-308L", + "__DEC32_MAX__=9.999999E96DF", + "__cpp_threadsafe_static_init=200806", + "__FLT32X_HAS_INFINITY__=1", + "__INT32_MAX__=0x7fffffff", + "__INT_WIDTH__=32", + "__SIZEOF_LONG__=4", + "__UINT16_C(c)=c", + "__PTRDIFF_WIDTH__=32", + "__DECIMAL_DIG__=17", + "__FLT64_EPSILON__=2.2204460492503131e-16F64", + "__INTMAX_WIDTH__=64", + "__FLT64_MIN_EXP__=(-1021)", + "__has_include_next(STR)=__has_include_next__(STR)", + "__LDBL_HAS_QUIET_NAN__=1", + "__FLT64_MANT_DIG__=53", + "__GNUC__=8", + "__GXX_RTTI=1", + "__cpp_delegating_constructors=200604", + "__FLT_HAS_DENORM__=1", + "__SIZEOF_LONG_DOUBLE__=8", + "__BIGGEST_ALIGNMENT__=16", + "__STDC_UTF_16__=1", + "__FLT64_MAX_10_EXP__=308", + "__FLT32_HAS_INFINITY__=1", + "__DBL_MAX__=double(1.7976931348623157e+308L)", + "__cpp_raw_strings=200710", + "__INT_FAST32_MAX__=0x7fffffff", + "__DBL_HAS_INFINITY__=1", + "__DEC32_MIN_EXP__=(-94)", + "__INTPTR_WIDTH__=32", + "__FLT32X_HAS_DENORM__=1", + "__INT_FAST16_TYPE__=int", + "__LDBL_HAS_DENORM__=1", + "__cplusplus=201402L", + "__cpp_ref_qualifiers=200710", + "__DEC128_MAX__=9.999999999999999999999999999999999E6144DL", + "__INT_LEAST32_MAX__=0x7fffffff", + "__DEC32_MIN__=1E-95DF", + "__DEPRECATED=1", + "__cpp_rvalue_references=200610", + "__DBL_MAX_EXP__=1024", + "__WCHAR_WIDTH__=16", + "__FLT32_MAX__=3.4028234663852886e+38F32", + "__DEC128_EPSILON__=1E-33DL", + "__PTRDIFF_MAX__=0x7fffffff", + "__FLT32_HAS_QUIET_NAN__=1", + "__GNUG__=8", + "__LONG_LONG_MAX__=0x7fffffffffffffffLL", + "__SIZEOF_SIZE_T__=4", + "__cpp_rvalue_reference=200610", + "__cpp_nsdmi=200809", + "__SIZEOF_WINT_T__=4", + "__LONG_LONG_WIDTH__=64", + "__cpp_initializer_lists=200806", + "__FLT32_MAX_EXP__=128", + "__cpp_hex_float=201603", + "__GXX_ABI_VERSION=1013", + "__FLT_MIN_EXP__=(-125)", + "__cpp_lambdas=200907", + "__INT_FAST64_TYPE__=long long int", + "__FP_FAST_FMAF=1", + "__FLT64_DENORM_MIN__=4.9406564584124654e-324F64", + "__DBL_MIN__=double(2.2250738585072014e-308L)", + "__FLT32X_EPSILON__=2.2204460492503131e-16F32x", + "__FLT64_MIN_10_EXP__=(-307)", + "__DEC128_MIN__=1E-6143DL", + "__REGISTER_PREFIX__", + "__UINT16_MAX__=0xffff", + "__DBL_HAS_DENORM__=1", + "__FLT32_MIN__=1.1754943508222875e-38F32", + "__UINT8_TYPE__=unsigned char", + "__NO_INLINE__=1", + "__FLT_MANT_DIG__=24", + "__LDBL_DECIMAL_DIG__=17", + "__VERSION__=\"8.4.0\"", + "__UINT64_C(c)=c ## ULL", + "__cpp_unicode_characters=200704", + "__cpp_decltype_auto=201304", + "__GCC_ATOMIC_INT_LOCK_FREE=2", + "__FLT32_MANT_DIG__=24", + "__FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__", + "__SCHAR_WIDTH__=8", + "__INT32_C(c)=c", + "__DEC64_EPSILON__=1E-15DD", + "__ORDER_PDP_ENDIAN__=3412", + "__DEC128_MIN_EXP__=(-6142)", + "__FLT32_MAX_10_EXP__=38", + "__INT_FAST32_TYPE__=int", + "__UINT_LEAST16_TYPE__=short unsigned int", + "__INT16_MAX__=0x7fff", + "__cpp_rtti=199711", + "__SIZE_TYPE__=unsigned int", + "__UINT64_MAX__=0xffffffffffffffffULL", + "__INT8_TYPE__=signed char", + "__cpp_digit_separators=201309", + "__ELF__=1", + "__xtensa__=1", + "__FLT_RADIX__=2", + "__INT_LEAST16_TYPE__=short int", + "__LDBL_EPSILON__=2.2204460492503131e-16L", + "__UINTMAX_C(c)=c ## ULL", + "__SIG_ATOMIC_MAX__=0x7fffffff", + "__GCC_ATOMIC_WCHAR_T_LOCK_FREE=2", + "__SIZEOF_PTRDIFF_T__=4", + "__FLT32X_MANT_DIG__=53", + "__FLT32X_MIN_EXP__=(-1021)", + "__DEC32_SUBNORMAL_MIN__=0.000001E-95DF", + "__INT_FAST16_MAX__=0x7fffffff", + "__FLT64_DIG__=15", + "__UINT_FAST32_MAX__=0xffffffffU", + "__UINT_LEAST64_TYPE__=long long unsigned int", + "__FLT_HAS_QUIET_NAN__=1", + "__FLT_MAX_10_EXP__=38", + "__LONG_MAX__=0x7fffffffL", + "__DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL", + "__FLT_HAS_INFINITY__=1", + "__cpp_unicode_literals=200710", + "__UINT_FAST16_TYPE__=unsigned int", + "__DEC64_MAX__=9.999999999999999E384DD", + "__INT_FAST32_WIDTH__=32", + "__CHAR16_TYPE__=short unsigned int", + "__PRAGMA_REDEFINE_EXTNAME=1", + "__SIZE_WIDTH__=32", + "__INT_LEAST16_MAX__=0x7fff", + "__DEC64_MANT_DIG__=16", + "__INT64_MAX__=0x7fffffffffffffffLL", + "__UINT_LEAST32_MAX__=0xffffffffU", + "__FLT32_DENORM_MIN__=1.4012984643248171e-45F32", + "__GCC_ATOMIC_LONG_LOCK_FREE=2", + "__SIG_ATOMIC_WIDTH__=32", + "__INT_LEAST64_TYPE__=long long int", + "__INT16_TYPE__=short int", + "__INT_LEAST8_TYPE__=signed char", + "__DEC32_MAX_EXP__=97", + "__INT_FAST8_MAX__=0x7fffffff", + "__INTPTR_MAX__=0x7fffffff", + "__cpp_sized_deallocation=201309", + "__cpp_range_based_for=200907", + "__FLT64_HAS_QUIET_NAN__=1", + "__FLT32_MIN_10_EXP__=(-37)", + "__EXCEPTIONS=1", + "__LDBL_MANT_DIG__=53", + "__DBL_HAS_QUIET_NAN__=1", + "__FLT64_HAS_INFINITY__=1", + "__SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)", + "__cpp_return_type_deduction=201304", + "__INTPTR_TYPE__=int", + "__UINT16_TYPE__=short unsigned int", + "__WCHAR_TYPE__=short unsigned int", + "__SIZEOF_FLOAT__=4", + "__UINTPTR_MAX__=0xffffffffU", + "__INT_FAST64_WIDTH__=64", + "__DEC64_MIN_EXP__=(-382)", + "__cpp_decltype=200707", + "__FLT32_DECIMAL_DIG__=9", + "__INT_FAST64_MAX__=0x7fffffffffffffffLL", + "__GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1", + "__FLT_DIG__=6", + "__UINT_FAST64_TYPE__=long long unsigned int", + "__INT_MAX__=0x7fffffff", + "__INT64_TYPE__=long long int", + "__FLT_MAX_EXP__=128", + "__DBL_MANT_DIG__=53", + "__cpp_inheriting_constructors=201511", + "__INT_LEAST64_MAX__=0x7fffffffffffffffLL", + "__FP_FAST_FMAF32=1", + "__DEC64_MIN__=1E-383DD", + "__WINT_TYPE__=unsigned int", + "__UINT_LEAST32_TYPE__=unsigned int", + "__SIZEOF_SHORT__=2", + "__LDBL_MIN_EXP__=(-1021)", + "__FLT64_MAX__=1.7976931348623157e+308F64", + "__WINT_WIDTH__=32", + "__INT_LEAST8_MAX__=0x7f", + "__FLT32X_MAX_10_EXP__=308", + "__WCHAR_UNSIGNED__=1", + "__LDBL_MAX_10_EXP__=308", + "__ATOMIC_RELAXED=0", + "__DBL_EPSILON__=double(2.2204460492503131e-16L)", + "__XTENSA_WINDOWED_ABI__=1", + "__UINT8_C(c)=c", + "__FLT64_MAX_EXP__=1024", + "__INT_LEAST32_TYPE__=int", + "__SIZEOF_WCHAR_T__=2", + "__INT_FAST8_TYPE__=int", + "__GNUC_STDC_INLINE__=1", + "__FLT64_HAS_DENORM__=1", + "__FLT32_EPSILON__=1.1920928955078125e-7F32", + "__DBL_DECIMAL_DIG__=17", + "__STDC_UTF_32__=1", + "__INT_FAST8_WIDTH__=32", + "__DEC_EVAL_METHOD__=2", + "__FLT32X_MAX__=1.7976931348623157e+308F32x", + "__XTENSA__=1", + "__ORDER_BIG_ENDIAN__=4321", + "__cpp_runtime_arrays=198712", + "__UINT64_TYPE__=long long unsigned int", + "__UINT32_C(c)=c ## U", + "__INTMAX_MAX__=0x7fffffffffffffffLL", + "__cpp_alias_templates=200704", + "__BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__", + "__FLT_DENORM_MIN__=1.4012984643248171e-45F", + "__INT8_MAX__=0x7f", + "__LONG_WIDTH__=32", + "__UINT_FAST32_TYPE__=unsigned int", + "__CHAR32_TYPE__=unsigned int", + "__FLT_MAX__=3.4028234663852886e+38F", + "__cpp_constexpr=201304", + "__INT32_TYPE__=int", + "__SIZEOF_DOUBLE__=8", + "__cpp_exceptions=199711", + "__FLT_MIN_10_EXP__=(-37)", + "__FLT64_MIN__=2.2250738585072014e-308F64", + "__INT_LEAST32_WIDTH__=32", + "__INTMAX_TYPE__=long long int", + "__DEC128_MAX_EXP__=6145", + "__FLT32X_HAS_QUIET_NAN__=1", + "__ATOMIC_CONSUME=1", + "__GNUC_MINOR__=4", + "__INT_FAST16_WIDTH__=32", + "__UINTMAX_MAX__=0xffffffffffffffffULL", + "__DEC32_MANT_DIG__=7", + "__FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x", + "__DBL_MAX_10_EXP__=308", + "__LDBL_DENORM_MIN__=4.9406564584124654e-324L", + "__INT16_C(c)=c", + "__cpp_generic_lambdas=201304", + "__STDC__=1", + "__FLT32X_DIG__=15", + "__PTRDIFF_TYPE__=int", + "__ATOMIC_SEQ_CST=5", + "__UINT32_TYPE__=unsigned int", + "__FLT32X_MIN_10_EXP__=(-307)", + "__UINTPTR_TYPE__=unsigned int", + "__DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD", + "__DEC128_MANT_DIG__=34", + "__LDBL_MIN_10_EXP__=(-307)", + "__SIZEOF_LONG_LONG__=8", + "__cpp_user_defined_literals=200809", + "__GCC_ATOMIC_LLONG_LOCK_FREE=1", + "__FLT32X_MIN__=2.2250738585072014e-308F32x", + "__LDBL_DIG__=15", + "__FLT_DECIMAL_DIG__=9", + "__UINT_FAST16_MAX__=0xffffffffU", + "__GCC_ATOMIC_SHORT_LOCK_FREE=2", + "__INT_LEAST64_WIDTH__=64", + "__UINT_FAST8_TYPE__=unsigned int", + "__cpp_init_captures=201304", + "__ATOMIC_ACQ_REL=4", + "__ATOMIC_RELEASE=3", + "USBCON" + ] + } + ] +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/indoor_mapping/hello.h b/Tracking/WiFi RSSI/indoor_mapping/hello.h new file mode 100644 index 00000000..756289a4 --- /dev/null +++ b/Tracking/WiFi RSSI/indoor_mapping/hello.h @@ -0,0 +1,4 @@ +void sayhello() +{ + Serial.print("hellow world"); +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/indoor_mapping/indoor_mapping.ino b/Tracking/WiFi RSSI/indoor_mapping/indoor_mapping.ino new file mode 100644 index 00000000..b9d046ad --- /dev/null +++ b/Tracking/WiFi RSSI/indoor_mapping/indoor_mapping.ino @@ -0,0 +1,85 @@ +#include "model.h" +#include "WiFi.h" +//#include "hello.h" + +//#include "eloquent.h" +using namespace Eloquent; + +Eloquent::ML::Port::SVM classifier; + +#define MAX_NETWORKS 21 + +float features[MAX_NETWORKS]; +char *knownNetworks[MAX_NETWORKS] = {"paya1", "Airtel", "FTTH", "Jaishree", "www.excitel.com", "pwd555307", "TP-Link_B65C", "88Medha", "151*", "TanuAbhi136", "JioFiber-Dinesh_4G", "Sunny", "DoozyPixie", "MALHOTRA", "ladoobala", "Rahul Iyer _ 2g", "BatCave", "157medha", "Sagar 1", "airtel171", "pranav4g"}; + +void setup() +{ + Serial.begin(115200); + WiFi.mode(WIFI_STA); + WiFi.disconnect(); + // sayhello(); +} + +void loop() +{ + scan(); + printFeatures(); + classify(); + + delay(500); +} + +void classify() +{ + Serial.print("You are in "); + + Serial.println(classifier.predictLabel(features)); +} + +void scan() +{ + int numNetworks = WiFi.scanNetworks(); + + resetFeatures(); + + // assign RSSIs to feature vector + for (int i = 0; i < numNetworks; i++) + { + String ssid = WiFi.SSID(i); + // Serial.println(ssid); + int networkIndex = getIndexByKey(ssid.c_str()); + + // only create feature if the current SSID is a known one + if (!isnan(networkIndex)) + features[networkIndex] = WiFi.RSSI(i); + } +} + +// reset all features to 0 +void resetFeatures() +{ + int numFeatures = sizeof(features) / sizeof(double); + + for (int i = 0; i < numFeatures; i++) + features[i] = 0; +} +void printFeatures() +{ + int numFeatures = sizeof(features) / sizeof(double); + + for (int i = 0; i < numFeatures; i++) + { + Serial.print(features[i]); + Serial.print(i == numFeatures - 1 ? 'n' : ','); + } + Serial.println(""); +} + +int getIndexByKey(const char *key) +{ + for (int i = 0; i < sizeof(knownNetworks) / sizeof(char *); i++) + if (!strcmp(key, knownNetworks[i])) + return i; + + return -1; +} diff --git a/Tracking/WiFi RSSI/indoor_mapping/model.h b/Tracking/WiFi RSSI/indoor_mapping/model.h new file mode 100644 index 00000000..28242003 --- /dev/null +++ b/Tracking/WiFi RSSI/indoor_mapping/model.h @@ -0,0 +1,159 @@ +#pragma once +#include +namespace Eloquent +{ + namespace ML + { + namespace Port + { + class SVM + { + public: + /** + * Predict class for features vector + */ + int predict(float *x) + { + float kernels[53] = {0}; + float decisions[10] = {0}; + int votes[5] = {0}; + kernels[0] = compute_kernel(x, -50.0, -85.0, -83.0, 0.0, -66.0, 0.0, -90.0, 0.0, -90.0, 0.0, -82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[1] = compute_kernel(x, -56.0, -70.0, -80.0, -81.0, -60.0, 0.0, 0.0, 0.0, -91.0, 0.0, -76.0, 0.0, -90.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[2] = compute_kernel(x, -56.0, -75.0, -80.0, -85.0, -61.0, 0.0, -89.0, -91.0, -94.0, 0.0, -72.0, 0.0, -92.0, 0.0, 0.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[3] = compute_kernel(x, -55.0, -82.0, -79.0, -82.0, -66.0, 0.0, -90.0, 0.0, -91.0, 0.0, -73.0, 0.0, -91.0, -89.0, 0.0, -96.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[4] = compute_kernel(x, -64.0, -83.0, -79.0, -77.0, -65.0, 0.0, -91.0, -93.0, -92.0, 0.0, -72.0, 0.0, -90.0, -86.0, 0.0, -95.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[5] = compute_kernel(x, -53.0, -80.0, -94.0, -81.0, -59.0, 0.0, 0.0, -95.0, -92.0, 0.0, -71.0, 0.0, -90.0, -85.0, 0.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[6] = compute_kernel(x, -51.0, 0.0, -60.0, -83.0, -59.0, 0.0, 0.0, 0.0, -91.0, 0.0, -74.0, 0.0, -92.0, 0.0, 0.0, -94.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[7] = compute_kernel(x, -50.0, -78.0, -79.0, -80.0, -60.0, 0.0, -87.0, -91.0, -91.0, 0.0, -75.0, 0.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[8] = compute_kernel(x, -53.0, -79.0, -80.0, -81.0, -62.0, 0.0, -91.0, -89.0, -94.0, 0.0, -74.0, 0.0, 0.0, -91.0, 0.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[9] = compute_kernel(x, -47.0, -86.0, -82.0, -85.0, -60.0, 0.0, 0.0, 0.0, -89.0, 0.0, 0.0, 0.0, -91.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[10] = compute_kernel(x, -49.0, -82.0, -80.0, -86.0, -63.0, 0.0, -87.0, -90.0, -91.0, 0.0, -69.0, 0.0, -94.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[11] = compute_kernel(x, -49.0, -81.0, -81.0, -86.0, -62.0, 0.0, -87.0, -94.0, -86.0, 0.0, -75.0, 0.0, -92.0, -94.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[12] = compute_kernel(x, -58.0, -75.0, -79.0, -90.0, -60.0, 0.0, 0.0, -90.0, -89.0, 0.0, -74.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[13] = compute_kernel(x, -67.0, -63.0, -78.0, 0.0, -63.0, 0.0, 0.0, -92.0, -79.0, -88.0, -82.0, 0.0, -87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -91.0); + kernels[14] = compute_kernel(x, -60.0, -69.0, -81.0, -79.0, -93.0, 0.0, 0.0, 0.0, -82.0, 0.0, -76.0, 0.0, -91.0, -89.0, -88.0, 0.0, -93.0, 0.0, 0.0, -93.0, 0.0); + kernels[15] = compute_kernel(x, -56.0, -61.0, -81.0, -76.0, -91.0, 0.0, 0.0, 0.0, -81.0, 0.0, -81.0, 0.0, 0.0, -89.0, -89.0, -94.0, 0.0, 0.0, 0.0, -96.0, -87.0); + kernels[16] = compute_kernel(x, -62.0, -65.0, -83.0, -70.0, -82.0, 0.0, 0.0, -93.0, -81.0, -85.0, -77.0, 0.0, -89.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[17] = compute_kernel(x, -63.0, -60.0, -77.0, -74.0, -66.0, 0.0, 0.0, 0.0, -82.0, -89.0, 0.0, 0.0, -89.0, -92.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[18] = compute_kernel(x, -62.0, -63.0, -90.0, -73.0, -88.0, -93.0, 0.0, 0.0, -83.0, -85.0, -79.0, 0.0, -89.0, 0.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[19] = compute_kernel(x, -64.0, -61.0, -77.0, -81.0, -68.0, -92.0, 0.0, 0.0, -82.0, -89.0, -81.0, 0.0, -87.0, -90.0, -92.0, -95.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[20] = compute_kernel(x, -63.0, -63.0, -80.0, -76.0, -93.0, -92.0, -89.0, 0.0, -82.0, -88.0, -77.0, 0.0, -87.0, -91.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[21] = compute_kernel(x, -74.0, -72.0, -74.0, -76.0, -73.0, 0.0, 0.0, 0.0, 0.0, 0.0, -87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[22] = compute_kernel(x, -68.0, -77.0, -75.0, -80.0, -94.0, 0.0, 0.0, 0.0, -94.0, 0.0, -83.0, -91.0, -93.0, 0.0, 0.0, -94.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[23] = compute_kernel(x, -67.0, -74.0, -79.0, -81.0, -78.0, -91.0, 0.0, 0.0, -93.0, 0.0, -89.0, -91.0, -91.0, 0.0, 0.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[24] = compute_kernel(x, -61.0, -76.0, -76.0, -74.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -89.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[25] = compute_kernel(x, -68.0, -73.0, -78.0, -74.0, -79.0, -93.0, 0.0, 0.0, -95.0, 0.0, -92.0, 0.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[26] = compute_kernel(x, -72.0, -72.0, -79.0, -74.0, -76.0, 0.0, 0.0, 0.0, 0.0, 0.0, -92.0, 0.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[27] = compute_kernel(x, -68.0, -75.0, -79.0, -75.0, -92.0, 0.0, 0.0, 0.0, -91.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[28] = compute_kernel(x, -65.0, -77.0, -79.0, -71.0, -76.0, -93.0, 0.0, 0.0, -93.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[29] = compute_kernel(x, -67.0, -79.0, -79.0, -75.0, -74.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -94.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[30] = compute_kernel(x, -71.0, -74.0, -79.0, -77.0, -72.0, 0.0, 0.0, 0.0, 0.0, 0.0, -94.0, 0.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[31] = compute_kernel(x, -63.0, -74.0, -77.0, -73.0, -73.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -89.0); + kernels[32] = compute_kernel(x, -68.0, -71.0, -77.0, -72.0, -95.0, 0.0, 0.0, 0.0, -94.0, -94.0, 0.0, -91.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[33] = compute_kernel(x, -64.0, -71.0, -78.0, -69.0, -73.0, 0.0, 0.0, 0.0, -93.0, -95.0, -90.0, -93.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[34] = compute_kernel(x, -63.0, -59.0, -75.0, -71.0, -75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[35] = compute_kernel(x, -57.0, -69.0, -79.0, -68.0, -82.0, 0.0, 0.0, 0.0, 0.0, 0.0, -88.0, 0.0, -92.0, 0.0, -93.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[36] = compute_kernel(x, -60.0, -73.0, -77.0, -66.0, -82.0, -95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -91.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[37] = compute_kernel(x, -57.0, -60.0, -77.0, -70.0, -74.0, -91.0, 0.0, 0.0, -94.0, 0.0, -87.0, 0.0, 0.0, -91.0, -94.0, -91.0, 0.0, 0.0, -92.0, 0.0, 0.0); + kernels[38] = compute_kernel(x, -59.0, -64.0, -79.0, -73.0, -77.0, -93.0, 0.0, 0.0, -93.0, 0.0, 0.0, 0.0, 0.0, -91.0, 0.0, -93.0, 0.0, 0.0, -89.0, 0.0, 0.0); + kernels[39] = compute_kernel(x, -59.0, -67.0, -76.0, -68.0, -77.0, -93.0, -94.0, 0.0, 0.0, 0.0, 0.0, -92.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -93.0); + kernels[40] = compute_kernel(x, -59.0, -68.0, -78.0, -69.0, -77.0, -92.0, -93.0, 0.0, 0.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[41] = compute_kernel(x, -59.0, -69.0, -80.0, -70.0, -87.0, 0.0, 0.0, 0.0, 0.0, 0.0, -86.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[42] = compute_kernel(x, -78.0, -59.0, -76.0, -72.0, -76.0, -94.0, -91.0, -92.0, -93.0, 0.0, 0.0, 0.0, -92.0, -92.0, -91.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[43] = compute_kernel(x, -60.0, -70.0, -75.0, -69.0, -74.0, -92.0, 0.0, 0.0, 0.0, 0.0, -89.0, 0.0, 0.0, 0.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[44] = compute_kernel(x, -54.0, -83.0, -93.0, -80.0, -91.0, 0.0, -78.0, -86.0, -91.0, 0.0, -81.0, 0.0, -82.0, -90.0, 0.0, -93.0, 0.0, -95.0, 0.0, 0.0, 0.0); + kernels[45] = compute_kernel(x, -57.0, 0.0, -91.0, 0.0, -61.0, -92.0, -81.0, -87.0, -86.0, 0.0, -83.0, 0.0, -79.0, -86.0, 0.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[46] = compute_kernel(x, -56.0, -84.0, -88.0, -84.0, -60.0, 0.0, -83.0, -89.0, -88.0, 0.0, -78.0, 0.0, -80.0, -83.0, 0.0, -90.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[47] = compute_kernel(x, -55.0, -83.0, -88.0, -85.0, -61.0, -93.0, 0.0, 0.0, -87.0, 0.0, 0.0, 0.0, -81.0, -86.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[48] = compute_kernel(x, -63.0, -89.0, -89.0, -85.0, -63.0, -93.0, -84.0, 0.0, 0.0, 0.0, -87.0, 0.0, -90.0, -89.0, 0.0, -93.0, 0.0, 0.0, -96.0, 0.0, 0.0); + kernels[49] = compute_kernel(x, -64.0, -90.0, -69.0, 0.0, -66.0, 0.0, -86.0, 0.0, 0.0, 0.0, -85.0, 0.0, -91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[50] = compute_kernel(x, -64.0, -83.0, -90.0, -89.0, -71.0, 0.0, -87.0, 0.0, 0.0, 0.0, -81.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[51] = compute_kernel(x, -63.0, -84.0, -89.0, -90.0, -71.0, -96.0, -84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0); + kernels[52] = compute_kernel(x, -63.0, -86.0, -87.0, -93.0, -68.0, 0.0, -83.0, 0.0, 0.0, 0.0, -87.0, 0.0, -94.0, 0.0, 0.0, -92.0, 0.0, 0.0, 0.0, 0.0, 0.0); + decisions[0] = 0.761644193753 + kernels[0] * 2.7688403e-05 + kernels[1] * 6.8133853e-05 + kernels[5] * 3.1365758e-05 + kernels[6] * 1.8993084e-05 + kernels[9] * 2.315013e-05 + kernels[12] * 7.83824e-06 + kernels[13] * -5.6304484e-05 + kernels[14] * -4.3989658e-05 + kernels[15] * -1.8752057e-05 + kernels[17] * -3.7343375e-05 + kernels[19] * -1.6003696e-05 + kernels[20] * -4.776196e-06; + decisions[1] = 1.274787682978 + kernels[0] * 8.3530558e-05 + kernels[6] * 0.000164393821 + kernels[9] * 0.000188021589 + kernels[10] * 4.4661795e-05 + kernels[21] * -7.0357427e-05 + kernels[22] * -9.1817024e-05 + kernels[24] * -1.2067977e-05 + kernels[25] * -5.7106059e-05 + kernels[27] * -0.00021071166 + kernels[31] * -3.8547615e-05; + decisions[2] = -0.193884086639 + kernels[0] * 6.9765324e-05 + kernels[6] * 6.4708998e-05 + kernels[7] * 5.3313431e-05 + kernels[9] * 7.6429216e-05 + kernels[12] * 7.2670094e-05 + kernels[38] * -3.4204699e-05 + kernels[41] * -0.000200685231 + kernels[42] * -0.000101997133; + decisions[3] = 10.734953489218 + kernels[2] * 0.00120268131 + kernels[3] * 0.001774679136 + kernels[4] * 0.007819174729 + kernels[5] * 0.002332348225 + kernels[8] * 0.001992902283 + kernels[11] * 0.001939118114 + kernels[44] * -0.000148899971 + kernels[45] * -1.979494e-05 + kernels[46] * -0.015831947921 + kernels[47] * -0.000768760694 + kernels[49] * -0.000291500271; + decisions[4] = -0.727323003402 + kernels[13] * 7.9884185e-05 + kernels[14] * 3.8863041e-05 + kernels[18] * 0.000110326029 + kernels[21] * -8.93065e-07 + kernels[25] * -9.1434955e-05 + kernels[26] * -1.0371925e-05 + kernels[29] * -7.08449e-07 + kernels[31] * -4.48232e-05 + kernels[33] * -8.084166e-05; + decisions[5] = -1.499938239922 + kernels[14] * 4.935095e-06 + kernels[15] * 7.4131347e-05 + kernels[16] * 4.0424472e-05 + kernels[18] * 2.018867e-05 + kernels[19] * 9.0810718e-05 + kernels[20] * 1.4277441e-05 + kernels[35] * -7.7933343e-05 + kernels[36] * -5.49329e-06 + kernels[37] * -7.7891816e-05 + kernels[41] * -2.1069757e-05 + kernels[42] * -5.7870561e-05 + kernels[43] * -4.508976e-06; + decisions[6] = -1.156676028671 + kernels[13] * 5.278956e-05 + kernels[14] * 2.9704372e-05 + kernels[15] * 7.545303e-06 + kernels[19] * 1.3060118e-05 + kernels[20] * 5.6587926e-05 + kernels[44] * -1.1567803e-05 + kernels[45] * -2.3120417e-05 + kernels[46] * -1.725121e-05 + kernels[47] * -6.1376176e-05 + kernels[49] * -4.0373326e-05 + kernels[50] * -5.998345e-06; + decisions[7] = -3.007050917699 + kernels[21] * 0.004133620628 + kernels[24] * 0.000442015886 + kernels[27] * 6.2683294e-05 + kernels[29] * 0.000154276482 + kernels[32] * 2.0765371e-05 + kernels[34] * -0.000542086365 + kernels[35] * -0.000305568635 + kernels[36] * -7.2126478e-05 + kernels[38] * -1.7832426e-05 + kernels[39] * -1.0095447e-05 + kernels[40] * -9.6741069e-05 + kernels[41] * -0.003768911242; + decisions[8] = 0.874578870411 + kernels[21] * 1.9435662e-05 + kernels[23] * 4.726041e-06 + kernels[24] * 2.7399859e-05 + kernels[28] * 0.000222462354 + kernels[29] * 2.2394921e-05 + kernels[30] * 0.000201039967 + kernels[31] * 3.01639e-06 + kernels[47] * -0.000247104679 + kernels[49] * -7.9334177e-05 + kernels[50] * -0.000134014812 + kernels[52] * -4.0021526e-05; + decisions[9] = 2.835463132923 + kernels[35] * 1.3447816e-05 + kernels[36] * 5.1109885e-05 + kernels[38] * 0.00032442761 + kernels[40] * 0.000871582952 + kernels[41] * 0.000474028835 + kernels[42] * 0.000241676732 + kernels[45] * -9.8729666e-05 + kernels[47] * -0.000653129119 + kernels[48] * -1.4088866e-05 + kernels[49] * -0.000291430371 + kernels[50] * -0.000254334104 + kernels[51] * -0.000664561705; + votes[decisions[0] > 0 ? 0 : 1] += 1; + votes[decisions[1] > 0 ? 0 : 2] += 1; + votes[decisions[2] > 0 ? 0 : 3] += 1; + votes[decisions[3] > 0 ? 0 : 4] += 1; + votes[decisions[4] > 0 ? 1 : 2] += 1; + votes[decisions[5] > 0 ? 1 : 3] += 1; + votes[decisions[6] > 0 ? 1 : 4] += 1; + votes[decisions[7] > 0 ? 2 : 3] += 1; + votes[decisions[8] > 0 ? 2 : 4] += 1; + votes[decisions[9] > 0 ? 3 : 4] += 1; + int val = votes[0]; + int idx = 0; + + for (int i = 1; i < 5; i++) + { + if (votes[i] > val) + { + val = votes[i]; + idx = i; + } + } + + return idx; + } + + /** + * Predict readable class name + */ + const char *predictLabel(float *x) + { + return idxToLabel(predict(x)); + } + + /** + * Convert class idx to readable name + */ + const char *idxToLabel(uint8_t classIdx) + { + switch (classIdx) + { + case 0: + return "bedroom"; + case 1: + return "hall"; + case 2: + return "livingroom"; + case 3: + return "mishty"; + case 4: + return "naina"; + default: + return "Houston we have a problem"; + } + } + + protected: + /** + * Compute kernel between feature vector and support vector. + * Kernel type: linear + */ + float compute_kernel(float *x, ...) + { + va_list w; + va_start(w, 21); + float kernel = 0.0; + + for (uint16_t i = 0; i < 21; i++) + { + kernel += x[i] * va_arg(w, double); + } + + return kernel; + } + }; + } + } +} \ No newline at end of file diff --git a/Tracking/WiFi RSSI/wifi training/dataset/bedroom.csv b/Tracking/WiFi RSSI/wifi training/dataset/bedroom.csv new file mode 100644 index 00000000..353dc313 --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/dataset/bedroom.csv @@ -0,0 +1,23 @@ +-50.00,-85.00,-83.00,0.00,-66.00,0.00,-90.00,0.00,-90.00,0.00,-82.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-56.00,-70.00,-80.00,-81.00,-60.00,0.00,0.00,0.00,-91.00,0.00,-76.00,0.00,-90.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-56.00,-75.00,-80.00,-85.00,-61.00,0.00,-89.00,-91.00,-94.00,0.00,-72.00,0.00,-92.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-55.00,-82.00,-79.00,-82.00,-66.00,0.00,-90.00,0.00,-91.00,0.00,-73.00,0.00,-91.00,-89.00,0.00,-96.00,0.00,0.00,0.00,0.00,0.00 +-64.00,-83.00,-79.00,-77.00,-65.00,0.00,-91.00,-93.00,-92.00,0.00,-72.00,0.00,-90.00,-86.00,0.00,-95.00,0.00,0.00,0.00,0.00,0.00 +-53.00,-80.00,-94.00,-81.00,-59.00,0.00,0.00,-95.00,-92.00,0.00,-71.00,0.00,-90.00,-85.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00 +-51.00,0.00,-60.00,-83.00,-59.00,0.00,0.00,0.00,-91.00,0.00,-74.00,0.00,-92.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00 +-50.00,-78.00,-79.00,-80.00,-60.00,0.00,-87.00,-91.00,-91.00,0.00,-75.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-51.00,-79.00,-61.00,-79.00,-59.00,0.00,-86.00,-93.00,-89.00,0.00,-74.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-48.00,-82.00,-80.00,-82.00,-64.00,0.00,0.00,0.00,-93.00,0.00,-73.00,0.00,-92.00,-90.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-53.00,-79.00,-80.00,-81.00,-62.00,0.00,-91.00,-89.00,-94.00,0.00,-74.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-52.00,-85.00,-86.00,-83.00,-62.00,0.00,-87.00,0.00,-94.00,0.00,-78.00,0.00,-93.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-47.00,-86.00,-82.00,-85.00,-60.00,0.00,0.00,0.00,-89.00,0.00,0.00,0.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-54.00,-76.00,-83.00,-91.00,-62.00,0.00,-91.00,-94.00,-92.00,0.00,-76.00,0.00,-92.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-53.00,-81.00,-78.00,-83.00,-61.00,0.00,-87.00,-94.00,-87.00,0.00,-74.00,0.00,-90.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-50.00,-85.00,-80.00,-84.00,-64.00,0.00,0.00,0.00,-88.00,0.00,-73.00,0.00,-92.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-49.00,-82.00,-80.00,-86.00,-63.00,0.00,-87.00,-90.00,-91.00,0.00,-69.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-49.00,-81.00,-81.00,-86.00,-62.00,0.00,-87.00,-94.00,-86.00,0.00,-75.00,0.00,-92.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-50.00,-83.00,-82.00,-83.00,-59.00,0.00,-86.00,-92.00,-89.00,0.00,-72.00,0.00,-90.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-49.00,-73.00,-81.00,-79.00,-63.00,0.00,-90.00,0.00,-86.00,0.00,-73.00,0.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-44.00,-84.00,-83.00,-86.00,-64.00,0.00,-89.00,-95.00,-91.00,0.00,-71.00,0.00,-90.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-58.00,-75.00,-79.00,-90.00,-60.00,0.00,0.00,-90.00,-89.00,0.00,-74.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-49.00,-81.00,-83.00,-80.00,-64.00,0.00,-91.00,-90.00,-89.00,0.00,-74.00,0.00,-91.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 diff --git a/Tracking/WiFi RSSI/wifi training/dataset/hall.csv b/Tracking/WiFi RSSI/wifi training/dataset/hall.csv new file mode 100644 index 00000000..2cddff4d --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/dataset/hall.csv @@ -0,0 +1,20 @@ +-79.00,-62.00,-87.00,-77.00,-62.00,0.00,0.00,0.00,-85.00,-88.00,-84.00,0.00,0.00,-88.00,-90.00,0.00,0.00,0.00,0.00,0.00,-93.00 +-62.00,-66.00,-77.00,0.00,-68.00,0.00,0.00,-92.00,-83.00,-93.00,-79.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-87.00 +-67.00,-63.00,-78.00,0.00,-63.00,0.00,0.00,-92.00,-79.00,-88.00,-82.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00 +-59.00,-62.00,-81.00,-73.00,-89.00,0.00,0.00,-94.00,-80.00,-94.00,-77.00,0.00,-88.00,-92.00,-92.00,-94.00,-94.00,0.00,0.00,0.00,-89.00 +-63.00,-65.00,-79.00,-78.00,-93.00,0.00,0.00,0.00,-87.00,0.00,-78.00,0.00,-91.00,-87.00,-91.00,0.00,-92.00,0.00,0.00,-95.00,-86.00 +-60.00,-69.00,-81.00,-79.00,-93.00,0.00,0.00,0.00,-82.00,0.00,-76.00,0.00,-91.00,-89.00,-88.00,0.00,-93.00,0.00,0.00,-93.00,0.00 +-56.00,-61.00,-81.00,-76.00,-91.00,0.00,0.00,0.00,-81.00,0.00,-81.00,0.00,0.00,-89.00,-89.00,-94.00,0.00,0.00,0.00,-96.00,-87.00 +-62.00,-65.00,-83.00,-70.00,-82.00,0.00,0.00,-93.00,-81.00,-85.00,-77.00,0.00,-89.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00 +-58.00,-62.00,-80.00,-69.00,-90.00,0.00,0.00,0.00,-80.00,-86.00,-76.00,0.00,-89.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,-86.00 +-63.00,-65.00,-79.00,-69.00,-88.00,0.00,0.00,0.00,-79.00,-86.00,-77.00,0.00,0.00,-91.00,-90.00,-94.00,0.00,0.00,0.00,0.00,-89.00 +-64.00,-62.00,-90.00,-69.00,-92.00,0.00,0.00,0.00,-78.00,-89.00,-79.00,0.00,-90.00,-90.00,-90.00,0.00,0.00,0.00,0.00,0.00,-88.00 +-64.00,-61.00,-75.00,-70.00,-67.00,0.00,0.00,0.00,-81.00,-89.00,-82.00,0.00,-88.00,0.00,-92.00,-92.00,0.00,0.00,0.00,0.00,-87.00 +-61.00,-64.00,-87.00,-71.00,-89.00,0.00,0.00,-93.00,-79.00,-86.00,-80.00,0.00,-87.00,-89.00,-89.00,-94.00,0.00,0.00,0.00,-96.00,-92.00 +-64.00,-62.00,-74.00,-71.00,-89.00,0.00,0.00,0.00,-80.00,-87.00,0.00,0.00,-90.00,-89.00,-91.00,0.00,0.00,0.00,0.00,0.00,-91.00 +-63.00,-63.00,-75.00,-74.00,-66.00,0.00,0.00,0.00,-82.00,-86.00,-86.00,0.00,-89.00,-94.00,-91.00,0.00,0.00,0.00,0.00,-92.00,-92.00 +-63.00,-60.00,-77.00,-74.00,-66.00,0.00,0.00,0.00,-82.00,-89.00,0.00,0.00,-89.00,-92.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00 +-62.00,-63.00,-90.00,-73.00,-88.00,-93.00,0.00,0.00,-83.00,-85.00,-79.00,0.00,-89.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00 +-64.00,-61.00,-77.00,-81.00,-68.00,-92.00,0.00,0.00,-82.00,-89.00,-81.00,0.00,-87.00,-90.00,-92.00,-95.00,0.00,0.00,0.00,0.00,0.00 +-62.00,-60.00,-80.00,-77.00,-68.00,0.00,0.00,0.00,-80.00,-90.00,-79.00,0.00,-87.00,-88.00,-90.00,0.00,0.00,0.00,0.00,0.00,-88.00 +-63.00,-63.00,-80.00,-76.00,-93.00,-92.00,-89.00,0.00,-82.00,-88.00,-77.00,0.00,-87.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00 \ No newline at end of file diff --git a/Tracking/WiFi RSSI/wifi training/dataset/livingroom.csv b/Tracking/WiFi RSSI/wifi training/dataset/livingroom.csv new file mode 100644 index 00000000..1d5fb4f4 --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/dataset/livingroom.csv @@ -0,0 +1,20 @@ +-74.00,-72.00,-74.00,-76.00,-73.00,0.00,0.00,0.00,0.00,0.00,-87.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-68.00,-77.00,-75.00,-80.00,-94.00,0.00,0.00,0.00,-94.00,0.00,-83.00,-91.00,-93.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00 +-67.00,-74.00,-79.00,-81.00,-78.00,-91.00,0.00,0.00,-93.00,0.00,-89.00,-91.00,-91.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-62.00,-76.00,-79.00,-71.00,-94.00,0.00,0.00,0.00,-89.00,-93.00,0.00,-90.00,-88.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-76.00,-76.00,-71.00,-90.00,0.00,0.00,0.00,-92.00,0.00,0.00,-95.00,-90.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00 +-61.00,-76.00,-76.00,-74.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-68.00,-73.00,-78.00,-74.00,-79.00,-93.00,0.00,0.00,-95.00,0.00,-92.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-72.00,-72.00,-79.00,-74.00,-76.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-68.00,-75.00,-79.00,-75.00,-92.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-65.00,-77.00,-79.00,-71.00,-76.00,-93.00,0.00,0.00,-93.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-67.00,-79.00,-79.00,-75.00,-74.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-72.00,-76.00,-79.00,-72.00,-72.00,0.00,0.00,0.00,-91.00,0.00,0.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-69.00,-73.00,-78.00,-69.00,-72.00,0.00,0.00,0.00,-87.00,0.00,-87.00,-94.00,-94.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-71.00,-74.00,-79.00,-77.00,-72.00,0.00,0.00,0.00,0.00,0.00,-94.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-74.00,-73.00,-79.00,-71.00,-73.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-69.00,-76.00,-78.00,-75.00,-74.00,0.00,0.00,0.00,0.00,0.00,-92.00,-92.00,-89.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-74.00,-77.00,-73.00,-73.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00 +-68.00,-71.00,-77.00,-72.00,-95.00,0.00,0.00,0.00,-94.00,-94.00,0.00,-91.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-62.00,-70.00,-78.00,-76.00,-71.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,-88.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-64.00,-71.00,-78.00,-69.00,-73.00,0.00,0.00,0.00,-93.00,-95.00,-90.00,-93.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 \ No newline at end of file diff --git a/Tracking/WiFi RSSI/wifi training/dataset/mishty.csv b/Tracking/WiFi RSSI/wifi training/dataset/mishty.csv new file mode 100644 index 00000000..40a64cc9 --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/dataset/mishty.csv @@ -0,0 +1,20 @@ +-63.00,-59.00,-75.00,-71.00,-75.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-57.00,-69.00,-79.00,-68.00,-82.00,0.00,0.00,0.00,0.00,0.00,-88.00,0.00,-92.00,0.00,-93.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-65.00,-61.00,-73.00,-70.00,-77.00,-91.00,0.00,0.00,-95.00,0.00,0.00,0.00,0.00,-93.00,-93.00,-94.00,0.00,0.00,-91.00,0.00,0.00 +-60.00,-73.00,-77.00,-66.00,-82.00,-95.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-57.00,-60.00,-77.00,-70.00,-74.00,-91.00,0.00,0.00,-94.00,0.00,-87.00,0.00,0.00,-91.00,-94.00,-91.00,0.00,0.00,-92.00,0.00,0.00 +-59.00,-64.00,-79.00,-73.00,-77.00,-93.00,0.00,0.00,-93.00,0.00,0.00,0.00,0.00,-91.00,0.00,-93.00,0.00,0.00,-89.00,0.00,0.00 +-59.00,-67.00,-76.00,-68.00,-77.00,-93.00,-94.00,0.00,0.00,0.00,0.00,-92.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-93.00 +-59.00,-68.00,-78.00,-69.00,-77.00,-92.00,-93.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-56.00,-66.00,-78.00,-68.00,-77.00,0.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-57.00,-64.00,-80.00,-69.00,-82.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-59.00,-69.00,-80.00,-70.00,-87.00,0.00,0.00,0.00,0.00,0.00,-86.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-60.00,-63.00,-76.00,-65.00,-76.00,-89.00,-90.00,0.00,-92.00,0.00,0.00,0.00,-92.00,-95.00,-88.00,-91.00,0.00,0.00,-94.00,0.00,0.00 +-78.00,-59.00,-76.00,-72.00,-76.00,-94.00,-91.00,-92.00,-93.00,0.00,0.00,0.00,-92.00,-92.00,-91.00,-90.00,0.00,0.00,0.00,0.00,0.00 +-69.00,-61.00,-75.00,-75.00,-75.00,-93.00,-90.00,0.00,-93.00,0.00,0.00,0.00,-88.00,0.00,-92.00,-93.00,0.00,0.00,-90.00,0.00,0.00 +-60.00,-73.00,-79.00,-69.00,-76.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-90.00,-93.00,-93.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-60.00,-70.00,-75.00,-69.00,-74.00,-92.00,0.00,0.00,0.00,0.00,-89.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00 +-60.00,-76.00,-74.00,-68.00,-77.00,-93.00,0.00,0.00,0.00,0.00,0.00,0.00,-89.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00 +-69.00,-59.00,-77.00,-74.00,-78.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-93.00,0.00,0.00,0.00,-93.00,0.00,0.00 +-70.00,-55.00,-77.00,-77.00,-77.00,0.00,0.00,-96.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-96.00,0.00,0.00 +-67.00,-58.00,-78.00,-78.00,-77.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-91.00,0.00,0.00,0.00,-90.00,0.00,0.00 \ No newline at end of file diff --git a/Tracking/WiFi RSSI/wifi training/dataset/naina.csv b/Tracking/WiFi RSSI/wifi training/dataset/naina.csv new file mode 100644 index 00000000..dae84acb --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/dataset/naina.csv @@ -0,0 +1,20 @@ +-54.00,-83.00,-93.00,-80.00,-91.00,0.00,-78.00,-86.00,-91.00,0.00,-81.00,0.00,-82.00,-90.00,0.00,-93.00,0.00,-95.00,0.00,0.00,0.00 +-54.00,-82.00,-86.00,-91.00,-66.00,-88.00,-86.00,0.00,-94.00,0.00,-84.00,0.00,-80.00,-86.00,0.00,-86.00,0.00,0.00,0.00,0.00,0.00 +-57.00,0.00,-91.00,0.00,-61.00,-92.00,-81.00,-87.00,-86.00,0.00,-83.00,0.00,-79.00,-86.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00 +-56.00,-86.00,-84.00,-91.00,-61.00,-95.00,-81.00,-88.00,-87.00,0.00,-81.00,0.00,-79.00,-88.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00 +-53.00,-87.00,-90.00,-86.00,-60.00,-94.00,-83.00,0.00,-88.00,0.00,-82.00,0.00,-80.00,-86.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00 +-57.00,-85.00,-84.00,-83.00,-58.00,-92.00,-82.00,0.00,-88.00,0.00,-82.00,0.00,-81.00,-85.00,0.00,-94.00,0.00,0.00,0.00,0.00,0.00 +-56.00,-84.00,-88.00,-84.00,-60.00,0.00,-83.00,-89.00,-88.00,0.00,-78.00,0.00,-80.00,-83.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00 +-55.00,-83.00,-88.00,-85.00,-61.00,-93.00,0.00,0.00,-87.00,0.00,0.00,0.00,-81.00,-86.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-89.00,-89.00,-85.00,-63.00,-93.00,-84.00,0.00,0.00,0.00,-87.00,0.00,-90.00,-89.00,0.00,-93.00,0.00,0.00,-96.00,0.00,0.00 +-59.00,-94.00,-90.00,-89.00,-68.00,-94.00,-85.00,0.00,0.00,0.00,-84.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-89.00,-92.00,-89.00,-68.00,0.00,-89.00,0.00,0.00,0.00,-85.00,0.00,-91.00,-95.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00 +-64.00,-90.00,-69.00,0.00,-66.00,0.00,-86.00,0.00,0.00,0.00,-85.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-88.00,-92.00,-90.00,-67.00,0.00,-88.00,0.00,0.00,0.00,-86.00,0.00,-92.00,-91.00,0.00,-91.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-88.00,-90.00,-88.00,-66.00,0.00,-87.00,-91.00,0.00,0.00,-81.00,0.00,-91.00,-96.00,0.00,-93.00,0.00,0.00,0.00,0.00,0.00 +-62.00,-85.00,-92.00,0.00,-67.00,0.00,-87.00,0.00,0.00,0.00,-82.00,0.00,-91.00,-91.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-86.00,-90.00,-86.00,-69.00,0.00,-87.00,0.00,0.00,0.00,-82.00,0.00,-92.00,-88.00,0.00,-90.00,0.00,0.00,0.00,0.00,0.00 +-64.00,-83.00,-90.00,-89.00,-71.00,0.00,-87.00,0.00,0.00,0.00,-81.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-84.00,-89.00,-90.00,-71.00,-96.00,-84.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-86.00,-94.00,-90.00,-69.00,-93.00,-88.00,0.00,0.00,0.00,-81.00,0.00,0.00,-94.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 +-63.00,-86.00,-87.00,-93.00,-68.00,0.00,-83.00,0.00,0.00,0.00,-87.00,0.00,-94.00,0.00,0.00,-92.00,0.00,0.00,0.00,0.00,0.00 \ No newline at end of file diff --git a/Tracking/WiFi RSSI/wifi training/ml.py b/Tracking/WiFi RSSI/wifi training/ml.py new file mode 100644 index 00000000..fe6c2236 --- /dev/null +++ b/Tracking/WiFi RSSI/wifi training/ml.py @@ -0,0 +1,34 @@ +import numpy as np +from glob import glob +from os.path import basename +from sklearn.ensemble import RandomForestClassifier +from micromlgen import port +from sklearn.svm import SVC + + +def load_features(folder): + dataset = None + classmap = {} + for class_idx, filename in enumerate(glob('%s/*.csv' % folder)): + class_name = basename(filename)[:-4] + classmap[class_idx] = class_name + samples = np.loadtxt(filename, dtype=float, delimiter=',') + labels = np.ones((len(samples), 1)) * class_idx + samples = np.hstack((samples, labels)) + dataset = samples if dataset is None else np.vstack((dataset, samples)) + + return dataset, classmap + + +def get_classifier(features): + X, y = features[:, :-1], features[:, -1] + + return RandomForestClassifier(20, max_depth=10).fit(X, y) + + +features, classmap = load_features('dataset') +X, y = features[:, :-1], features[:, -1] +#clf = OneClassSVM(kernel="rbf", nu=0.5, gamma=0.1) +classifier = SVC(kernel='linear', gamma=0.1).fit(X, y) +c_code = port(classifier, classmap=classmap) +print(c_code) diff --git a/Tracking/final/firebaseRC/firebaseRC.ino b/Tracking/final/firebaseRC/firebaseRC.ino new file mode 100644 index 00000000..1a6bf95f --- /dev/null +++ b/Tracking/final/firebaseRC/firebaseRC.ino @@ -0,0 +1,297 @@ + +#include +#if defined(ESP32) + #include +#elif defined(ESP8266) + #include +#endif +#include + +//Provide the token generation process info. +#include "addons/TokenHelper.h" +//Provide the RTDB payload printing info and other helper functions. +#include "addons/RTDBHelper.h" + +// Insert your network credentials +#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512" + +// Insert Firebase project API Key +#define API_KEY "AIzaSyA3sxz8LTLgtvdkvBAaLvZO7gBLqzuLM_A" + +// Insert RTDB URLefine the RTDB URL */ +#define DATABASE_URL "https://rudra-x-default-rtdb.firebaseio.com/" + +//Define Firebase Data object +FirebaseData fbdo; + +FirebaseAuth auth; +FirebaseConfig config; + +unsigned long sendDataPrevMillis = 0; +int intValue; +float floatValue; +float x, y; +float X, Y; +bool signupOK = false; + +/*// Motor A -- RIGHT +int motor1Pin1 = 27; +int motor1Pin2 = 26; +int enable1Pin = 14; + + + +// Motor B -- LEFT +int motor2Pin1 = 25; +int motor2Pin2 = 33; +int enable2Pin = 32; + +// Setting PWM properties +const int freq = 30000; +const int pwmChannelL = 0; +const int pwmChannelR = 0; +const int resolution = 8; +int dutyCycle = 230;*/ + +WiFiServer server(80); // Port 80 + +#define LED2 2 // LED2 is a Built-in LED. +String estado = ""; +int wait30 = 30000; // time to reconnect when connection is lost. + + + + + +void setup() { + Serial.begin(115200); + WiFi.begin(WIFI_SSID, WIFI_PASSWORD); + Serial.print("Connecting to Wi-Fi"); + while (WiFi.status() != WL_CONNECTED) { + Serial.print("."); + delay(300); + } + Serial.println(); + Serial.print("Connected with IP: "); + Serial.println(WiFi.localIP()); + Serial.println(); + + /* Assign the api key (required) */ + config.api_key = API_KEY; + + /* Assign the RTDB URL (required) */ + config.database_url = DATABASE_URL; + + /* Sign up */ + if (Firebase.signUp(&config, &auth, "", "")) { + Serial.println("ok"); + signupOK = true; + } + else { + Serial.printf("%s\n", config.signer.signupError.message.c_str()); + } + + /* Assign the callback function for the long running token generation task */ + config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h + + Firebase.begin(&config, &auth); + Firebase.reconnectWiFi(true); + + + // Start Web Server. + server.begin(); + Serial.println("Web Server started."); + + // Esta es la IP + Serial.print("This is IP to connect to the WebServer: "); + Serial.print("http://"); + Serial.println(WiFi.localIP()); + + // sets the pins as outputs: + /*pinMode(motor1Pin1, OUTPUT); + pinMode(motor1Pin2, OUTPUT); + pinMode(enable1Pin, OUTPUT); + pinMode(motor2Pin1, OUTPUT); + pinMode(motor2Pin2, OUTPUT); + pinMode(enable2Pin, OUTPUT); + + // configure LED PWM functionalitites + ledcSetup(pwmChannelL, freq, resolution); + ledcSetup(pwmChannelR, freq, resolution); + + // attach the channel to the GPIO to be controlled + ledcAttachPin(enable1Pin, pwmChannelR); + ledcAttachPin(enable2Pin, pwmChannelL);*/ + +} + +void loop() { + if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 10 || sendDataPrevMillis == 0)) { + sendDataPrevMillis = millis(); + if (Firebase.RTDB.getFloat(&fbdo, "/joystick/x")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int") { + X = fbdo.floatData(); + Serial.println(X); + } + } + else { + Serial.println(fbdo.errorReason()); + } + + if (Firebase.RTDB.getFloat(&fbdo, "/joystick/y")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int") { + Y = fbdo.floatData(); + Serial.println(Y); + } + } + else { + Serial.println(fbdo.errorReason()); + } + } + + x=X*100; + y=Y*100; + + Serial.print("x: "); + Serial.print(x); + Serial.print(",y: "); + Serial.println(y); + + /*if(y>=-10 && y<=10){ + stopMoving(); + } + + if(y>10 && x<-30){ + antiClockwiseFor(); + } + + if(y>10 && x>30){ + clockwiseFor(); + } + + if(y>10 && x>=-30 && x<=30){ + goForward(y); + } + + + if(y<-10 && x<-30){ + clockwiseBack(); + } + + if(y<-10 && x>30){ + antiClockwiseBack(); + } + + if(y<-10 && x>=-30 && x<=30){ + goBack(y); + }*/ + + /* Wire.beginTransmission(8); + Wire.write(buffer, 2); + Wire.endTransmission(); */ + + //client.flush(); +} + +/*void stopMoving() +{ + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + Serial.println("stop"); +} + +void goForward(int y) +{ + digitalWrite(motor1Pin1, HIGH); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, HIGH); + digitalWrite(motor2Pin2, LOW); + + float speedL = 0.85 * y + 145; + float speedR = 0.80 * y + 140; + + ledcWrite(pwmChannelL, speedL); + ledcWrite(pwmChannelR, speedR); + + Serial.println("Moving forward"); +} + +void goBack(int y) +{ + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, HIGH); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, HIGH); + + float speedR = (-y) + 145; + float speedL = 0.80 * (-y) + 140; + + ledcWrite(pwmChannelL, speedL); + ledcWrite(pwmChannelR, speedR); + + Serial.println("Moving backward"); +} + +void clockwiseFor() +{ + // left motor on, right off + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, HIGH); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Clockwise forward"); +} + +void antiClockwiseFor() +{ + // left off, right on + + digitalWrite(motor1Pin1, HIGH); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Anti Clockwise forward"); +} + +void clockwiseBack() +{ + // left off, right on + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, HIGH); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, LOW); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 200); + + Serial.println("Clockwise backward"); +} + +void antiClockwiseBack() +{ + // left on, right off + + digitalWrite(motor1Pin1, LOW); + digitalWrite(motor1Pin2, LOW); + digitalWrite(motor2Pin1, LOW); + digitalWrite(motor2Pin2, HIGH); + + ledcWrite(pwmChannelL, 200); + ledcWrite(pwmChannelR, 230); + + Serial.println("Anti Clockwise backward"); +}*/ diff --git a/Tracking/final/magnetometerFB/magnetometerFB.ino b/Tracking/final/magnetometerFB/magnetometerFB.ino new file mode 100644 index 00000000..cc62e6a5 --- /dev/null +++ b/Tracking/final/magnetometerFB/magnetometerFB.ino @@ -0,0 +1,272 @@ +/* + e-Gizmo QMC5883L GY-271 Compass + + Sample sketch for the GY-271 QMC5883L + for getting the raw data of x, y, z and + Radius in degrees. + + Codes by e-Gizmo Mechatronix Central + http://www.e-gizmo.com + July 10,2017 + +*/ + + + +#include +#if defined(ESP32) + #include +#elif defined(ESP8266) + #include +#endif +#include + +//Provide the token generation process info. +#include "addons/TokenHelper.h" +//Provide the RTDB payload printing info and other helper functions. +#include "addons/RTDBHelper.h" + +// Insert your network credentials +/*#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512"*/ + + +#define WIFI_SSID "Suk" +#define WIFI_PASSWORD "suk@study789" + +// Insert Firebase project API Key +#define API_KEY "AIzaSyA3sxz8LTLgtvdkvBAaLvZO7gBLqzuLM_A" + +// Insert RTDB URLefine the RTDB URL */ +#define DATABASE_URL "https://rudra-x-default-rtdb.firebaseio.com/" + +//Define Firebase Data object +FirebaseData fbdo; + +FirebaseAuth auth; +FirebaseConfig config; + +unsigned long sendDataPrevMillis = 0; +int intValue; +float floatValue; +float x, y; +bool signupOK = false; + + + +#include +#include + +QMC5883L compass; + +// Insert your network credentials +#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512" + + + + +const int trigPin1 = 15; +const int echoPin1 = 2; + + +//define sound speed in cm/uS +#define SOUND_SPEED 0.034 +#define CM_TO_INCH 0.393701 + +long duration1; +float distanceCm1; +float distanceInch; + +int recog; + + +int X_save = 100000; +int Y_save = 100000; + +int turnLeft = 0; +int turnRight = 0; + + +void setup(){ + Serial.begin(115200); + pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output + pinMode(echoPin1, INPUT); // Sets the echoPin as an Input + WiFi.begin(WIFI_SSID, WIFI_PASSWORD); + Serial.print("Connecting to Wi-Fi"); + while (WiFi.status() != WL_CONNECTED){ + Serial.print("."); + delay(300); + } + Serial.println(); + Serial.print("Connected with IP: "); + Serial.println(WiFi.localIP()); + Serial.println(); + + /* Assign the api key (required) */ + config.api_key = API_KEY; + + /* Assign the RTDB URL (required) */ + config.database_url = DATABASE_URL; + + /* Sign up */ + if (Firebase.signUp(&config, &auth, "", "")){ + Serial.println("ok"); + signupOK = true; + } + else{ + Serial.printf("%s\n", config.signer.signupError.message.c_str()); + } + + /* Assign the callback function for the long running token generation task */ + config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h + + Firebase.begin(&config, &auth); + Firebase.reconnectWiFi(true); + + Wire.begin(); + compass.init(); +} + + +void loop() { + if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 5 || sendDataPrevMillis == 0)) { + sendDataPrevMillis = millis(); + if (Firebase.RTDB.getInt(&fbdo, "/Computer Vision/Face Recognition/User/Recognized")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { + recog = fbdo.intData(); + Serial.println(recog); + } + } + else { + Serial.println(fbdo.errorReason()); + } + + + /*if (Firebase.RTDB.getFloat(&fbdo, "/joystick/y")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int") { + Y = fbdo.floatData(); + //Serial.println(y); + } + } + else { + Serial.println(fbdo.errorReason()); + }*/ + } + int x,y,z; + compass.read(&x,&y,&z); + + // Calculate heading when the magnetometer is level, then correct for signs of axis. + // Atan2() automatically check the correct formula taking care of the quadrant you are in + float heading = atan2(y, x); + + float declinationAngle = 0.0404; + heading += declinationAngle; + // Find yours here: http://www.magnetic-declination.com/ + + // Correct for when signs are reversed. + if(heading < 0) + heading += 2*PI; + + // Check for wrap due to addition of declination. + if(heading > 2*PI) + heading -= 2*PI; + + // Convert radians to degrees for readability. + float headingDegrees = heading * 180/M_PI; + + + Serial.print("x: "); + Serial.print(x); + Serial.print(" y: "); + Serial.print(y); + Serial.print(" z: "); + Serial.print(z); + Serial.print(" heading: "); + Serial.print(heading); + Serial.print(" Radius: "); + Serial.print(headingDegrees); + Serial.println(); + Serial.print("Fec rec: "); + Serial.println(recog); + + /*if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 100 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "magnet/dir", headingDegrees)){ + Serial.println("PASSED"); + //Serial.println("PATH: " + fbdo.dataPath()); + //Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + }*/ + //delay(100); + + if(recog==1){ + X_save = x; + Y_save = y; + } + + Serial.println(X_save); + Serial.println(Y_save); + + if(y>=60000 && y<=100000){ + if(x>X_save+20){ + turnLeft = 1; + turnRight = 0; + } + else if (xX_save+20){ + turnLeft = 0; + turnRight = 1; + } + else if (x 10 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "following/turnLeft", turnLeft)){ + Serial.println("PASSED"); + //Serial.println("PATH: " + fbdo.dataPath()); + //Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + } + + if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 10 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "following/turnRight", turnRight)){ + Serial.println("PASSED"); + //Serial.println("PATH: " + fbdo.dataPath()); + //Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + } +} diff --git a/Tracking/final/motorDriverNodeMCU/motorDriverNodeMCU.ino b/Tracking/final/motorDriverNodeMCU/motorDriverNodeMCU.ino new file mode 100644 index 00000000..d4e1e431 --- /dev/null +++ b/Tracking/final/motorDriverNodeMCU/motorDriverNodeMCU.ino @@ -0,0 +1,252 @@ +/* + e-Gizmo QMC5883L GY-271 Compass + + Sample sketch for the GY-271 QMC5883L + for getting the raw data of x, y, z and + Radius in degrees. + + Codes by e-Gizmo Mechatronix Central + http://www.e-gizmo.com + July 10,2017 + +*/ + +#include +#include +#include +#if defined(ESP32) + #include +#elif defined(ESP8266) + #include +#endif +#include +#include +//Provide the token generation process info. +#include "addons/TokenHelper.h" +//Provide the RTDB payload printing info and other helper functions. +#include "addons/RTDBHelper.h" + +// Insert your network credentials +#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512" + + +// Insert Firebase project API Key +#define API_KEY "AIzaSyA3sxz8LTLgtvdkvBAaLvZO7gBLqzuLM_A" + +// Insert RTDB URLefine the RTDB URL */ +#define DATABASE_URL "https://rudra-x-default-rtdb.firebaseio.com/" +WiFiServer server(80); +//Define Firebase Data object +FirebaseData fbdo; + +FirebaseAuth auth; +FirebaseConfig config; + +unsigned long sendDataPrevMillis = 0; +int intValue; +float floatValue; +float x, y; +bool signupOK = false; + + + +/*// Insert your network credentials +#define WIFI_SSID "Galaxy M219B55" +#define WIFI_PASSWORD "ussr1512"*/ + + + + +int turnLeft; +int turnRight; +int stop1, start1; + + +void setup(){ + Serial.begin(115200); + //pinMode(trigPin1, OUTPUT); // Sets the trigPin as an Output + //pinMode(echoPin1, INPUT); // Sets the echoPin as an Input + + WiFi.begin(WIFI_SSID, WIFI_PASSWORD); + Serial.print("Connecting to Wi-Fi"); + while (WiFi.status() != WL_CONNECTED){ + Serial.print("."); + delay(300); + } + Serial.println(); + Serial.print("Connected with IP: "); + Serial.println(WiFi.localIP()); + Serial.println(); + + /* Assign the api key (required) */ + config.api_key = API_KEY; + + /* Assign the RTDB URL (required) */ + config.database_url = DATABASE_URL; + + /* Sign up */ + if (Firebase.signUp(&config, &auth, "", "")){ + Serial.println("ok"); + signupOK = true; + } + else{ + Serial.printf("%s\n", config.signer.signupError.message.c_str()); + } + + /* Assign the callback function for the long running token generation task */ + config.token_status_callback = tokenStatusCallback; //see addons/TokenHelper.h + + Firebase.begin(&config, &auth); + Firebase.reconnectWiFi(true); + + Wire.begin(D1,D2); + + + server.begin(); + Serial.println("Server started"); +} + + +void loop() { + /*if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 5 || sendDataPrevMillis == 0)) { + sendDataPrevMillis = millis(); + if (Firebase.RTDB.getInt(&fbdo, "/following/turnLeft")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { + turnLeft = fbdo.intData(); + //Serial.println(turnLeft); + } + } + else { + Serial.println(fbdo.errorReason()); + } + + + if (Firebase.RTDB.getFloat(&fbdo, "/following/turnRight")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { + turnRight = fbdo.intData(); + //Serial.println(turnRight); + } + } + else { + Serial.println(fbdo.errorReason()); + } + + if (Firebase.RTDB.getFloat(&fbdo, "/following/start1")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { + start1 = fbdo.intData(); + //Serial.println(start1); + } + } + else { + Serial.println(fbdo.errorReason()); + } + + if (Firebase.RTDB.getFloat(&fbdo, "/following/stop1")) { + if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { + stop1 = fbdo.intData(); + + //Serial.println(stop1); + + Serial.println(stop1); + + } + } + else { + Serial.println(fbdo.errorReason()); + }*/ + +// +// if (Firebase.RTDB.getFloat(&fbdo, "/joystick/x")) { +// if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { +// x = fbdo.floatData(); +// Serial.print("x: "); +// Serial.println(x); +// } +// } +// else { +// Serial.println(fbdo.errorReason()); +// } + +// if (Firebase.RTDB.getFloat(&fbdo, "/joystick/y")) { +// if (fbdo.dataType() == "float" || fbdo.dataType() == "int" || fbdo.dataType() == "bool" || fbdo.dataType() == "string") { +// y = fbdo.floatData(); +// Serial.print("y: "); +// Serial.println(y); +// } +// } +// else { +// Serial.println(fbdo.errorReason()); +// } + + + } + + + int val; + + WiFiClient client = server.available(); + if(!client){ + return; + } + + Serial.println("New Client"); + while(!client.available()){ + delay(1); + } + + String req = client.readStringUntil('\r'); + req.replace("+", " "); // Spaces without + + req.replace(" HTTP/1.1", ""); // this delete HTTP/1.1 + req.replace("GET /", ""); + val = req.toInt(); + /*if (Firebase.ready() && signupOK && (millis() - sendDataPrevMillis > 100 || sendDataPrevMillis == 0)){ + sendDataPrevMillis = millis(); + // Write an Int number on the database path test/int + if (Firebase.RTDB.setInt(&fbdo, "magnet/dir", headingDegrees)){ + Serial.println("PASSED"); + //Serial.println("PATH: " + fbdo.dataPath()); + //Serial.println("TYPE: " + fbdo.dataType()); + } + else { + Serial.println("FAILED"); + Serial.println("REASON: " + fbdo.errorReason()); + } + }*/ + //delay(100); + + + + + if(turnLeft==0 && turnRight ==0){ + val = 1000; + } + if(turnLeft==1 && turnRight == 0){ + val = 1001; + } + if(turnLeft==0 && turnRight == 1){ + val = 1002; + } + if(stop1 == 0 && start1 == 1){ + val = 3000; + } + if(stop1 == 1 && start1 == 0){ + val = 3001; + } + + + + byte buffer[10]; + buffer[0] = lowByte(val); + buffer[1] = highByte(val); + + + //Serial.println(val); + Serial.println(val); + Serial.println(start1); + Wire.beginTransmission(8); + Wire.write(buffer, 2); + Wire.endTransmission(); + + +} diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/.filecache b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/.filecache deleted file mode 100644 index ef4be701..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/.filecache +++ /dev/null @@ -1 +0,0 @@ -{"version":2,"files":[{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"9aca41e44c4c85ec4f14ba0018c38e34"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"f13a2c5d3307cc6597dce03141df1b4f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"0bf93c0037c70dc6f4a60e5fc78b0ddd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"0f7c2652a528ac287f4f3d1ffe049ecb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"c7f179c05dc551165e29ac9f278f5a27"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"9256b7c771d473c2e12851f3a2b0d460"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"b7b4f43c5075a97178ba155d63ca1317"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"a4d7b123ac688612762eaa7ad54abc67"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"cc7d02c7da5aa5a958da42f74955077d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart","hash":"d0d8b7556f38bc1bfea4f933aa1a1e8c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"306b2c1a4ff6237e3b653f3e4b468743"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\comparators.dart","hash":"d1410f48ac374235aaad55cba40bc4be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\triangle.dart","hash":"7d2bdb4801fc8b3a110f36d5e5fa59f5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"ae568db0bd2c30a0083e0cabf5d32bfc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"ca7e1a5d7812cf12200ce522e111be52"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"020b2d9e730918b95e23dfdc90f543b1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"d320fcf6eba18ece4ee0c5a205e3062c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","hash":"950bd49585ca693c470dece5bf907df1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"aa1fea25e296ebb3b04c3e8db56db246"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"fb80c7bcdc10d81d79055137b982428b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector4.dart","hash":"b5e3c6491bf22a914826ada505da9e43"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"94e4fb4ac2748d809caf13c91dc85956"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"cd8040ce5a7a87082944a7fc7e96333a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"699d1a810b806558840369dd2df490ed"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"795957df4acf565cfea5be90aed0d97c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"53e368901ef47a75e50412f3e215fa3a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"ea17d850d4556f9944c6ddb17491f2d7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"9b3a5a310954c8f5b86571c117ae26d0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wu.dart","hash":"c0da8171c63f0ab4e822dd094fc2c595"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"f9c4b7da4788cbdd71176a762aa31d34"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"a87692fac215fbea5a0362483078a1c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"dd7a529395d1ae4bd15303b9e8236eea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"af61297a7db2ed51f464088ec31838c3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\core_palette.dart","hash":"ae2ee0217638a20c8e825ce6aeead3ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"a900d9332d5149e99fff0e754829d2d5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\functions.dart","hash":"36924fad7effe6376fc3ef631d64ff7a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"973de094b4b7a61a10f0a1af1db7158d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"afd7adb0bf862255fc0d66dbc5f796b5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"8d177c520ba3d44b03f4ee4cecb67ed3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"04bffc3c574105a0cfb90cc50f157a61"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"0f251d83a1a726f55d3f0b0c05642b87"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"b55f66239e47503f2c12e6059e6a0366"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"88146771f38a442f56f93965b567bf92"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"bbbd89ab6bdf8a1ca010901c85293936"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"938bd6d891d13b45fe14ed9ed74a4a6d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_filter.dart","hash":"c51e8ece18358e80caa2c997e857c752"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"25d6fb05dd00b36906831d8e0963e532"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset","hash":"85834311933bdbdb6e647d3dc5fa899d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"3a0b54335fef271aafba3a566e884b0a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"cf69c70b2072fac6fc5787625cf1e2aa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"3c31a3f734c6a7e5b06281d98429fb76"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\obb3.dart","hash":"5ca0b5786bf63efd4fc72fcecfe1b36c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\collection.dart","hash":"476383869aff7b87579a7753e47722d7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"53ff3d500fab2278598bb3020813155f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"9795711c9c2ff1c03f089459aca32a04"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"94025c7fc9489c326a4415157da58545"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"6e7d3f8f07d85818033220b20796d5cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"c31191c59ba22c543d177bdea7e4e897"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"4469b4b46a7083b4ebffb3d97ad63911"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"a97d573dcd77d882318f0a846cad5402"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"5859d5cc49a29d78a68c1fad0312d290"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"45bc0077a39d07335f1e03094823049e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart","hash":"46297065fa2f156543bcb65084462c8b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart","hash":"9f9b79f577d9fdf4f20c17a26a2f1d57"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"5a6fdf7cd229b4ecefb78936cdb66e62"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"eb5251fe7e8ac80c245f813bc52b5b13"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"4753055ff66d6f84af58ea96005c2cc1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"fe07672b1baf78229920d6411b3db2f4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"28484b51e0d04c4054fd0f53cfbdf354"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"d747b1462d612382726d4de8112ec67e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"fdcb170364e922eca3efb2c75024ba29"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"48273fed507c32ab49275d92d3106e36"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"b51a43c23f7faff201f1243d3ca19c86"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"46e80ec9232be3b4c0a6b89df7d500e3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"e5ac30ecc6773a9e5d8ae547d48201d6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"21d77ecc82bfe5e05a2d6cba867b7313"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"5a944f21ed27e8b1473f0191b3f1bcdd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"5bbcae7ce931382502015895383143fe"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"8766a52d0a3c0dd9d658479b5f908273"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"c8c21f85d7ab4803a1441c278023f312"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"32282ab703f39d19cd1f8658907da2de"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"3f988f95d64279299bf17b18e9aefbe5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"2e810bb03217475c034ad3aed47b1c4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quad.dart","hash":"739bb2e85022ddfb653590b93216942a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"1891ac38b82d13dd4835003b801b9453"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"92b6985fbad7b83f0c1f10ab008bdcb0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"d08c266821ca200778523f360ed9240c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"8b4cad4e3e4262eedf412ebff73bc732"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\ray.dart","hash":"146741f6f87d6612ee7bbf6a6fa9c119"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"cdb0c4769071acd41ff5c4812e61492e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"bff1a3d8e0d6af68c2e663aed304923a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"6d5dca8325864add38c4062eec32b65b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"4fad2c226a3c6efdd8cd1c398ec96ba8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"f3b994de2186a68efff6c224b5612a72"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"6869c78d383b68f0c69eba09a0a6e72c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","hash":"ecfda3013b173d423fe66291acd19cba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"9323406dcbc5875734660b22820cc734"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"6cdfe6b53e693959cad18369ab3506d8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\LICENSE","hash":"5bd4f0c87c75d94b51576389aeaef297"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"3ac17ff87234fca071425c6e0d03a8ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"23a72f449799a4f4594c02ae28b49c63"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"6fea7b2187c0f3c146b5944cbfe156dc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\tonal_palette.dart","hash":"bdadbcf7bf3a4b727a7bcb5baafe59d5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"8be6a83b5172a8d6382fed138fbc60a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_choice.dart","hash":"c5d846b328d2a6b13a3a3972693dd692"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"74c5f4d7084fcc67d3bec5d377e5e62b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"8d730b7ed6ef7af189fabdc3a04e8a2c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"d880aed8990191547e6a3a3cb457b392"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"e9474582aa3e12ab2704b0dec930fef0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"3297897f14089e1eefe7b0aae7e79d7c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"13288e26d02b9c49a555f7e93ac4caf5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"d25cce1fef0c75469ef113d8d2401caf"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"02327f5ef7a9c40c8c6026080d8778c3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"7c86b2be58af3ac59ba120d7b23f4fd7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"f37fca973b5e7f5476b83c89645329dd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"0dfec9c92e78cbf6a8764f7a9a9b5150"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"2b3c408ddca21eefa07c5b9068f8ba3b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"d040e2d747fd1cac28f159455a266fe4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"0723aee21b13b309c6b8a52e6eb4e377"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"67014c866c54a61af915602f2a51e4b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"27129ef5ad1bed4b3daaf96216e70e23"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"28ee9bb063f51ed8c494b3452ebc235e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"4dbdb2d57830cae078747a6816c61cd1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"9af475bf417081baf552a518c736c2d8"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"2c40f15bf1cf535f6e018be44ca11479"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"487c9f8e58c0f4be4be6f6fdc89cef93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_extensions.dart","hash":"c6d7072e044ac41e7321582923540ba2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"e2a2828ab9ae29972cd965d68f3f9125"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"5ff6818a5447148e84575da2bc99f7cc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"eeff7491fe6908f26f045a969a938feb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"85d90e0e7b960d1a1bc32ca143b051bb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider_lab.dart","hash":"6566a35ff0dea9376debf257bdb08fba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"6ab2bb3bcd6edc405b29a4659cbf84dd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"d08ffae32c9bcae6096c2bcbaa7172c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f8fb1733ad7ae37b3d994f6f94750146"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"0ad49e2670094eee803b79b38e1b7361"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"736f287714cc3762c7449dc24b79acc2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"93b661a53fd3cafd840151319c0b78ad"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"a50da1a592ea57e2bf9cbe5d7de61bce"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"dca616878889bb978d399089190f992d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"434b3fa241a280fe78cc54bae88c29a7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"14119f315959ad4f47521b724ca8deb4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"75280888746a5a98b23c7b0e35d21d1c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"e7aed7081112456174a41ea7911a6b57"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"cc3c873013764dbf79bcdd672a940732"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"31ca060cd0631514ed19e5c94ab4b00c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"e29d018d128e75ea8db015ae190e8c11"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"4ba1aeff662ad82fe18c094e19f34b6f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"11a276bea3d8bc121aa1ebaeacefadc9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"aad2d710e2f0efb876fe9ed4c2df19bc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"4c572da8a846729660b36127866f1907"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"35fba0794fdb13603eaa91c675bacd93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"a998104789977d1aadaa56b32d5ef5f0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"0fd6cd4cf9d6655a8f79e74f7c6eb80b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"73640b0bfe7f7f66798fc96e6589cae9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"0d1af89ce4afa1f60459b832290cbde5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"4ec2f2741a31c09020b855ace1d91c75"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"92de587d23bad2b8cdb2f979f27e3ed6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"7ee07202ac9b92d17651e1ecfcc06a54"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"c31a658413a7b79ae195cb9d9a17707a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\LICENSE","hash":"3c68a7c20b2296875f67e431093dd99e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb3.dart","hash":"257ca4608e7d75f1db8d4c3ab710ac70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"672660cad7d634efb8ab1b823dbcc09b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"410e71de66317dd00498328bc41bb36b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"2c8d124f5486be50afb04c5a2e869a9a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"e4de058c2fbf1cc896ab61f662dfa04a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"bd88a6f73fa1e4d56f239f61da7dceeb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"da53880bef9400bc34c5e42a85537fff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"e478cbee07f42b25d43de9a33e0574ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"b5bedd25eb71d1e2b0b847bfaac65c5b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart","hash":"e4e35bec8a2194b90122416295be055c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"f3d30e04d1e42df0a61d00e16b07e255"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"32a087cb5afacf600f078ce739f49c87"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothPairingRequest.dart","hash":"009040ae4dfce0a0e18dc7248e27cd0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"9ab88fcf435a3322c6ad8c1c32affd0a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"93975e6dd9c18a8f3786d68f587e982a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"9863350f1ce54a844e044145cf7862a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"792d1ad3971918eff9117d7a67d70685"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"7c83cd61d3fa5561109df504a2fa37a0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"5495aadd18d907556f3f56fcf878f28a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"74ce055f5713138b8830ce0318946f2c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"18d68baadfbf06f406b84f6564509792"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"5a678e4715eb86b77e38fd3484c90676"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\boollist.dart","hash":"b3d51ec0dc553b1b1e883e087d5c73cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"f2a1094da33e1428da46c0bf4dd7bb3a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothConnection.dart","hash":"01703a73b75bcb7612cdbd4b9832bbf8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"161e72ebd059febaa5a064802c3db4b3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"80837596f59d9700d4a6dc2b5b190214"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"dc1963fd1d63aef486f58ea51f803cb2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"981c9ad7e4ff53cdb8d98adab218ba18"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"426201c7934eac02bd395312d9037b26"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"9a4c3652cc509b2e354dbf550ce5304f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE","hash":"2d0c70561d7f1d35b4ccc7df9158beed"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"66febf1d7a7d1dd6a0cba3732775592d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\hct.dart","hash":"d5d40323118344a8901b91b8055965b8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"61dbcf6b8958f989283ea4d4220240da"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"7cd3c95b67da5c1fd9ff7450644606d9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"e62e695cd16eb4e3f674806ffd5f7d01"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"3614f78294394123183384831b7773e3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"40da270ade1d037f693eec33bd5ed911"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE","hash":"88c7229273b8726b5dbd21efd7856585"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"a5091d4badf10be52606b48cf822c2cb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"83b3bc3f6ee58cfa3cfcda18dcbde43b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"92da1a7a7073b468f43c63e883da813c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"a95dbe7bb97f25a84b837a9988473cdd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDiscoveryResult.dart","hash":"4afd45719c5556bc75440b721a8fef3f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"45ed72d29d7197b0aaae712fa643affd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"50d5a8ab7251929dddcd7a28177d6269"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"40b68322bbb667df9b127e0f011b95ad"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"a0c3b1085109189f0cf22797fcb066eb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quaternion.dart","hash":"698a6fc4361dd42bae9034c9c2b6cf7b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"47f03eb2135ed3eb2bf87fa9d95e8446"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"7812bf976c8eb6bc30bb07beed26868f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"014c8be4e9a27547f008ca40e2648d90"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix2.dart","hash":"43975722ab4b6d145cce8c9d25af4a88"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","hash":"96b2edc60271aef0bf411fe959d576a7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"b23a87f71cb4a229acb52b7a80fa4db7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"e515165816fb982211b4f4d871d567bc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"73b259727dd7d75415fb250b71424b37"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"78ae379676a39ee7238095171f7c3f7e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\LICENSE","hash":"795187855bd168a6e96996d3046c988b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"839c31adb32efb8e52fe4a6b8e2737ba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart","hash":"36280c072e87476893ba441b9b25bc39"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"f0a406bdb8d55b1f3e39c8b6f72e8ecb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"6511bf8b3f1f395af22a8f51a0644138"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"9fc06695ad8b4c6ab37d1cc135c0ab5d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"8f40c14da598ff2b29f6f6c1c81e2cf4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"831232c039e34e12a173cab156aa5281"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\opengl.dart","hash":"9e22ead5e19c7b5da6de0678c8c13dca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"d7c9a5bb621771947bd3b285acce161c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"f18e38f5172d2b7af092a727ad990de8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"7f6d87bceb027f9e8aa05f67738b8e84"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml","hash":"939ebe49fa377675e6375654d88c3251"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"81f1f3c0494b37dbf782a00c1b6b9bbd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"2094ec1f9b60dc78d4b3107c42e44c82"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"726bc069ff0016237a5e47314361fa05"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"572aee6e0c52e398abb3f6ddba5ece30"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"eccefbdced215978673ace95edd70f2a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"cb6a95a3c700b33729429ea31f28c8e1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"40af0e749b28cdacd342afc1d3abf3ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.3.0\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"ee93d8dc9fbb05d4eb883d945543480b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\vector_math_64.dart","hash":"8e447b279adbe89508cbafc3734fe5b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"c946e0fee89320950945237f2cbc5d98"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fcbc4351adaf6127f5527d6672657b70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"7e448cfcd080ff0192cd7c555aa9a4e7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\colors.dart","hash":"5ed8acdae7dd3501b64b0ff3e33c1f45"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"2f7a624ff530a3c591d420bdb99a164f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"dfc0def33f1152e506c4527646b70c5a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"c8664e7dc20d0d2cf8e108606496ac67"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"0547db7678ce4646e4e9237a29aa2eb2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"e7a8832918d6fb5c5b3b311c233cbbee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"a4e90c28f0bb669a607985388a80b5c8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"f4fb675c8fe47aba6d3f00b55c5a70ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"8f20392960a5a4d9beec15840057e1cc"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"dc3d03800ccca4601324923c0b1d6d57"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"b3999a5ee967a14f73a798d9c70a16ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothState.dart","hash":"bb88607b7685e82080d43baaa9b9ef4a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"33798d70ba73f4cc1ac8901896c50c51"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"ab4a331857ed671e8b9ff20acb9866f1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\wrappers.dart","hash":"11e87c02beec338363a30c8f2f49c522"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"ab5c9d506f145cf79b2d1990ad55d668"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"175549e640563dfa9e7720641e2e5d14"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"f333599382b6568264164d175223fc1b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"cc30d62034be8f03dff2eaa9f3cae268"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"c4d627c55debe6b9c69bff6f4fec6e3d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"9f4f7fa430f0d9b5aa430583a20848fa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"25233066e7dbcfea0ae6d0cbe3f0d81a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"d865a441cc9a997c48eb6b0b2dc22e88"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"cf47e2530f725705723e9a9b8f5f0fc2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"adba67e2902d79bf4ca055251d19fa7b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"6acc42d821ffad57c39a91e78305a86c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"a57104f93d6127301039f613ebf03ca2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"7857f7eb53b69c1fc0d35883c7d4424e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"128cd7683a1a18162955f417230e3e78"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"454f11813e43a193cf6fa422fc834104"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"9bb7cf731e015b85beb5c12f182fc226"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"8dc1fa2fdefd18136478daf51c745e98"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"fcdd698fad99e2662b53f192453c3a79"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"d6de170e5d0a118dbbfaaca216f44a93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"34ce677e54aa59bf7443032ce19d83ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wsmeans.dart","hash":"4dece1c451454c02f93f3ed99fe418e1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\canonicalized_map.dart","hash":"26bd7410bad665cd40432c609e68e6a9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"4f40441075f2719a6fc9b0e948944c0f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"39221ca00f5f1e0af7767613695bb5d2"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\0e9c33e66046e605629120a573dad4df\\app.dill","hash":"f414dc50e45daf579f27349286cab547"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"f414dc50e45daf579f27349286cab547"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"5905275f7193f43cbf2bba06f90f5ecc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"bc85098785b2af74fdf7f218308fdff1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"a0ddc759bce16bf9c7f7bc828999a006"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart","hash":"188d03c92376ce139ce247b0f9b0946e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"9e055ea0947de7a2037e64230ab175bb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"792a2c07c5771bca12b9efa168ad6e81"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart","hash":"21bf6725b1fc374f03ae5b2cb46bd95b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"23b14a63219d631eefcb7973d1bfbbfa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"9c2ceb362ded96a3a85c9365ef5bc056"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"ab88fa83a655dd6e68f1303a0cef18fe"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"3dbbcded8b4587d41fde6b2723b13dc5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"bc6904175026b4252c3e6c9385ba0cb7"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg","hash":"2ff2aa2b420717e1df218ac947d66758"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart","hash":"3bb0652e163327c58784ce2a2b882a7c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"ce35b95a7c77b390af8aa30121743136"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"0e9eeec2da61f02d87c0cf201d4bebe6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"47173bd6353526e2626f4b093e8df664"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_input.dart","hash":"2384e8cc2800ab96f44ee2c428707974"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"681ae148c248bcfdfbf7eabf3f34a1e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"f2d35a828b76a9aa5eff6285a8e5114a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"8b040e755ef1ef3ac7e1677733ca2960"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"789e79772bba1132b3efdb60636a3ccb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"ceb8e04b57c9bb351f26a92bb4be2fcb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"36de23391a7b995a3a452f0a8cec9b74"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector.dart","hash":"6a67d38bafe568f1b4047286d586fbbc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"dffae0bea916323d391a7c29a974d773"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"7e7b0e15a268a1dab2917fdebae931f9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"f3820f10746bd09f5ddf793bea60dbca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\priority_queue.dart","hash":"6c66821ec0d637772e147c298645e478"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"c559ff163465fa0e511d3691d68ac7c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\empty_unmodifiable_set.dart","hash":"4814f7a1c3a7509ddb71fa9f13b2e169"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"e3de264746f0eebe9b76862e8eb90e36"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"c3b4d229c2f225aba3ec603d673c7257"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"966e29062a4a224dc65f895b0dcc17e8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"cc5e8be3d0401efb102d4bd001c2f035"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"21f27fccfbb513cc97894a3b09c68bf3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"5c759d91e693ec061868fa9b867fa35f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"acfda971cdcbff8337a7ccb573934a0a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"1c79620c94d486c9e55e0e27d4b993c2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"75eabf448a4685301a5641753c28af00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"de2acbe82979f4a8ff71a34b133f74f6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"54b963d257153551f8d436def6c61211"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"09c3a03bffd71041014487d712e944ae"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"e1f4c3e30b57b4ccdd0afc1d810d53b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"9974bfa9d3fff20dfd85999da9ead938"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"9cb8d4cc4bc06d68dcc3b3338c998a47"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"795399daa22ea2cd0a6b6de20f036bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality.dart","hash":"bb96a0e40a5198f25ff6a8b1dfd62a58"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"7e909925d7d98521500283d297d0fe19"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"fcd951716636ac3fa8fec2c3954e8ab5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"6e0c3a1bdc5c4f194fad7eea5a326263"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"57f33e81a6c25a84e46b7841e58d8e78"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"73a1264f4048161cf1e020b447b014a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"4b42191e7165a15c6b625f8f445a7dd1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"1f48218976da077e5f3656be303e3f64"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7233e0c442656dbb58e9396969435780"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"7cd1be6c748728c7a019e8b3e9612420"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"7cc7aeddf9c2fc7af65f7db5dd3e5089"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"07af09f641e50dd042ae34e3baa3b014"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"a43e296e76f20d8948af9b71bc5dbbce"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"756945330027ae142c3b530b4e5c7949"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\plane.dart","hash":"f0c6d5d05fbdc95ab84f1a63894b7be6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"8e059b49f047de42c3cb8b179ed84571"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"397e847af939ca57a8ae3ab1df6ca0b4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix3.dart","hash":"128305fa0c98f2a88cbd684f2b20cd0c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"52b5caca42a75cb7b2160959a1df913a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"624037ce825eaf3bd297da741ab51b31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"e89af0e4445a220b88bf9d0bae1c7020"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector3.dart","hash":"661ec2db8d36dc387722c417c4e6ba53"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\third_party\\noise.dart","hash":"c12ccedd20a6c9c3b0af7fbf64e055b3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothBondState.dart","hash":"ffd913b7a2f109af99de2a9d00d13bab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\sphere.dart","hash":"63473e31f03ea66a38affa41fd783752"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"f5780be145232ede897dcf592e8ab6ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\queue_list.dart","hash":"368a628be82e16cf17725d00a83f582c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"c53bce765b76558aa0ca3d82a24a451d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"a13c5500194f8fa7985c7b7cfc7f374f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"56f33c53fbc6ad4bb1b334918f7f666e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"b4908967fa16021c1adbd4f0a14cd8e1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"713300f6afcf6d513eaa7348b300fd76"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"7e538f24668c4dbe002ad6bfe8afb4a0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"de300a2f94fbff199de0595cecaace55"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"52e93d5a667cd102dfe98f0cdf25a680"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"a4ffc08b538624f8d62d1430743892be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"c680352a5e20a429d5caf74fed8c1e93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"a395d2f7826c2a3d64601150b99367ca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"30ee0fa5556507b09a99e77f3096299f"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"895315c15831a96e7195028f46a160cc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"5919af40fcc58aad824938f7161efe3b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"0fa5325fa291466f53b92d50e24541c3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"b63f040e69c0fa68ea93efc39b077fb0"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","hash":"95db9098c58fd6db106f1116bae85a0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.1\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"707b0ec88781a4c43d0cf7dc9978a4ab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart","hash":"d1b7fc88a21831bae0fc2e86f685d728"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"376f39c4c2ae7ee6b133a09ae5d9b726"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"bf21aee5b3e27411938f3ce59bafeca0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"ac34e50a6ecda2326bd02b21fe21c966"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"ffdc2814edfc96e4679f472ebe7893bd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"226971e8ddd223293b9880f40eb886c8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"97a7baa643a7665acbedd1119ca3ed64"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"a8b42720546a43897a0879e60e313cad"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"e8d63b041a8c0154c5f22bcf1707543d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"29ad57ea0d4870a0f0c602a97ad585eb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"f963fa2c4f8cbb556617472fe09fc6a9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart","hash":"80b952d2e449e077aef8b8881582a8db"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart","hash":"e3329b54f45c3b631506af35442ec761"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"a13de56e3cd90e9406f22e53637d9bfd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"49415430e44cd53023c6180490bd5e7a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"359388897ae53df8791213c31ef05fe6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"439ead644629a9aeb40c29ffdfd0e419"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.2\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"3e2f952047494e081605e81a619acba5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"8c57d62cf34fcf875f6ab7f86c6a4a03"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.9\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"556954ee4f1462d4b503e36e10a813ce"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"6c58a7789c9eebed84e2a9c49d72a44d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"a1dd90d00d02cdf72cab6b28dbf91141"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"6fb5b8a757f3dd97be09a2cd6248996e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"6e02deccb393325ebafc5f2ffb3a951e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"aeec5773d0282625fed75ba20cf0b0e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"397292d78b1b23dfb2749dc63e2e7d35"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"93be2aab8f78a0578e5cd44de8745fd3"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart","hash":"89c2eb5dd6debaf01eeec485fbbd5e1d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"c08bbf91b47a049cc09d34651363ac00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"74c57abb63e78d0474bd7e75947eb180"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"c77272c11b2641c88f13a197ace2ebb3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDevice.dart","hash":"9fb476d593144646e5c6cba3b0aab03d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\blend\\blend.dart","hash":"8585c7f2575d2778939c5f1412037f2c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"d8ebad04e55fe50b465069a0529f6004"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"7b1caddfd12789771ab11c18bdb3a132"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"62ca7a2c895330aca26b5c5b0a699aa6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"82fd4c938df3d5a3ef591283d3c606b1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"e91c31eb603d6e2001cfee988ad98c28"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"a94edded06d86f699f003b818ef3e8e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"c9b951fd3b9b1d05cc6bd50dad04ebbe"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"16dfc58b07a718653950370ebd144081"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_celebi.dart","hash":"3cf17899e608a8d3aef00220080fe5c0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"d0dc6c5d53627bcd9949f32a07c957c5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"3856d796f1cb4f5350c70dbc66982e61"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"f4bd550468f76a4a0eaba274f1d141d5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"2960f70ded945ecadd1390ea290ccaea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"f250567a65c8a39c0dbed260e925ad2e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"cc725c7db4966d33ede2483271e149bd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"8639e34750443363821417d1dc2f8d4b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"300ea80d23b081176f70472803aee12f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"a1345d3d69fc6545f6a78d726e55e6d4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","hash":"f902be978a032574a84639343a806488"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"19e95fdc73104d38db70d37101a064cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"68699c13fdf1bc8b1fe186bbd6d42a7c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"703b8b10af6ef53030e538cfefd10754"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"417b9e5231919a38553e6740f5e0eb3c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"f5fb846cafd6ca59e7abea0dac2166cb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"086c6071043ed25466b994cf69d02744"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"e02481e0360e6297e79fc367cb32cf5b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"149bd6cff42aa845ad510cece9e79e19"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"04573e1e5cea1b09e5b766cfe86f5fb4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"251481bdb54c3a341bcdb55f2893d3a6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"0cee34324310edc58cde755693fb99b0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"282d36fdfcd1d309fb8055574e2c37bd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"65af6f39d8521323bec96b40cff7a985"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\constants.dart","hash":"aa4b5c0cdb6a66685350611b29ca9d38"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"3c05a64d5c78bc03ba608cbc4fe8eb7a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"a12970ac8970f41f5930dbe3a44e5265"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\scheme\\scheme.dart","hash":"433579c43e6616f80fcfd498c57c14e2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"06da37c7c2a48fffc852c55f4df4b177"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"e2a394bdcb52bd5bbfd0565023fa87db"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"a28d8b2667a74647ebd4f558b3e449f9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"f6d098ae452b7e2e775148b1e5a24a46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"144706d1d6d6b3b322203a4d0125ce06"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"175ab25f87ba1dee0b776fc29ecefa39"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"423ec98cf0faa88e39ed6de9ba9f020b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"1a2d46e53c780cd3327858dd97bf280c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"12b91b3867c8ef7af14d14f09074202f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"472bde2455a890882aae141059ef3071"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","hash":"6b8e68f72bb19a488b83e967c84902f6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"bdd067441826ddabed13663795e6e0b8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"ac14b519e8d3af73bfa100b0c69103b4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"f0ec3ae105edef43cdb519519d692b74"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE","hash":"bc9787e25236e1379cf5f582cbc1b6e5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"50e184bf1edc29c166ade029dd5674ab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"4bcb40995515ea045e3ede520cf990f3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\frustum.dart","hash":"d975e51852aa1802c81c738dcb4c348d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"6a450d2b4e815afe19d49a1221be3117"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\FlutterBluetoothSerial.dart","hash":"5dd6ace892a09df1d7db17b9392c71cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"1b2bb6bd6671f3be0b2530db9a44a2ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"a33e94a7d3b4c24a9283999a304147f8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"ffcd9fdb2f1a0449f2ae11329b775bab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"97a29ecd681c01b36d1bff88bbb7b21e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"49618562604a8294b4165275049c1b21"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart","hash":"69f9ebd19d666a8fef25828aac0c59ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"481c8773008c797e0a87a5ccf3a5c47c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"330e1842301b240584811521fdea6647"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"45d4fba544bcd74dd622c5107374cda0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"dce2bd19edfde2cb0aec14046ca999df"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"6814b39ce16e47325c671ed8eb1bb810"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","hash":"8cbb4d86ada078e251134160d021b60c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"31d82a5713f64793f851e35192a400ae"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"4158f36a65c3bd165ab03b32ba1982be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"283e42c3a217eeae53aa87276a82f8ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"93e29419d65707b6172d13fc3f2c3b86"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"370fb9b9e52cf0621a41c3d658cb8fc7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"334cef6885071ecef8a7ee4b93141e36"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"091d1df4ac0dd2d4075791720270e43c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"62b95269a07ada6181a01901d252d0c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"f598d04c37201b1f6cf008a71ef331a3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"8f8f7b6796af6d5408c86a748339e417"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"90005acbb12611f2be34e3f98f207819"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"48fde74cb60cf37958583de92a6b6ade"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"17280ca4eb2d637c4f06384e8627e348"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"a0f80157a9747be0ef5d11d97d5a166a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"81b2d2a545e6f66510367ee8d4bdbf51"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"0273a3c06f438a3b215ab10ba9caa99b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"4e3542f6a69e0c03d3a4e9cbaad75201"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix4.dart","hash":"b2f026cb026e570fc2bf61579a4f9f0d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"cf80276a1b4f23450018caef12917a70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"c6a523f0410547a1e3f030f65317ae98"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"62210d4ddca9da0776c48ad76ba56939"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"83abe0a677b8f6bd8e02b823bb358a81"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\flutter_bluetooth_serial.dart","hash":"0c443f567e730c5fc5de06300f4b7b8d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"7a23f649958f737fcf117d86f635f1e4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"cebeb93d5009a7b16503f2028d4d1c0f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\LICENSE","hash":"d26b134ce6925adbbb07c08b02583fb8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"cecaaea1d93d30ac657cebf456134812"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"1d34ace1c08e1accdd414159ac3fdbc8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"ad246abb23640fd9a2a6f0b0483143dc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"bd9156a7523c01c5e3c9161c9642cd76"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"505e487052ddf919af3ad49852c82316"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"e484d7e10af0b446d0b5d382a08b9293"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"2c67130f4e224d35914e9e4b47c3ae9c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"5eb6f5622c956911f0bb82b12ac1634f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"0aecea799b69fd5da41a8b1f18aea5c2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"9b88a6448e072159c7116adf2fba4b4c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"9f0faefa7e80932368095e517f3e502f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"4e08dbf8f67e9ddb0856fe1733083076"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"1420a5408886a906d531cdf4ec665b6a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"af92ee44645e38e56eb6951999a9c0ca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"3907e41da2de98c3cd958a7c137efaa2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"e990e20bfb9894e5c4dcc795fb7b0ce5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"0697eb1d19dd1f93b0e0d3fefb39279f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"e69686c5647e0f9057ee2560d486d1e2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"1d930e1acf3f8435eb6718b9b0db0ae7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"930a21bdec94287a808ad8ed404accbb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE","hash":"09492d570d89a0914763aee7bc51bfba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\viewing_conditions.dart","hash":"89ac6e1a99054eb05805c6e7a6f58e6f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"02747fecd2279eff0df777944ae8daa7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"d6e1afee31389a2491da6933ea43d30c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"7d9cf04faadf659604eb58b1a6b8d2d4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"34d08fd281c886dd08d94d8e7358a830"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"bfa38d5635cabfc92d1fe138bb2a3a2f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"490d2d00ee2c00ed9feddd47a0bd322e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set_controller.dart","hash":"fcfae3ecf984ee7d09081c2a7898dcab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"19fc338672673f1ffb546b05a27c0dd0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"e7f9a0e76f8bb08125d6fe100f1f7b36"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"788b8171c781011b11592cf53958539f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"2e2716be8aaa8527d889eb960d910b40"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"8b467fdfa17738bcd415f14ef1a1ea77"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"0fd834519c94a75e8566ca933b3bce32"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDeviceType.dart","hash":"e717c503eb0fbf0b20ae502526b4d1c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"175eb5c3fb7a91acee030aceb9773d55"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13db4f76c4c3dacee24311db33dffb5a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"1fc6bf32f59075fbd42203e24951f062"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.9.0\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\color_utils.dart","hash":"8ff2f5edab0bfbbde83cb102dc7bee4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"c452fd8c37a430f8d176baba30b3dcde"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"644d1de361b9df8a3c7e3129f4e3335a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"45a0b4d54a9e8f6daf30fa39957841ba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"348f09d3bc8b33fb233c321329cd8713"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"37f0064eece2f0e23103844012a5bf5d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart","hash":"126c63b07d1b425e904b735cdac85afd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"9f11f11f53a7bc27cd77638591b876ef"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"8b4e4c73c4eba4d62e10e99f7f119fe8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","hash":"4cea7e227953f26aadf7313036259d8b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"5c76692f9618b734286562d7661fdddd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"12c12bbb8cf36e7ad237a18e3baf7044"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_map.dart","hash":"b6bcae6974bafba60ad95f20c12c72b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"abe2dca9539adfffc664d9516a4e1fd0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"0b50c47890119ecfd68762b35af1af34"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"d4aa6440dc92411a2d654857e542a81d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\cam16.dart","hash":"dc744c8152ad2616cf94544c21374f6a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"3c43ad555416595327d35bf5fabc0a75"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"e9c5ab1ef499a400a5f1c591e7768082"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","hash":"2ff2aa2b420717e1df218ac947d66758"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\material_color_utilities.dart","hash":"efd86bd9a7183660b902f2528da33973"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart","hash":"680a3f43922fba771a4de0aca72ef28b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"22c54e05fbd1c9434735f968c3e5b73b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"ffdb6888363b5a35f74739ed106eecf5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"dd3dc8c19ed217c12bff0b6adc14d577"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\math_utils.dart","hash":"bc178bfd881857e5d368d1e283173468"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","hash":"42d5bf7c22ac609351e84dbc39b12bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"93e0a06e4f3b1dc2fbcd6b13106e9097"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"158988f3594d4052bfea5d53e6ae5d10"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"e714901fb9fcf3e07630c4f5c32e9e66"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","hash":"25a2955809aa10c3ceb4cf2c6d0df388"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"0eb989698c92daa9948145272e4285b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"9006d9975a5ad8f716475cd5462d816b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"ad0d6ccce07f712ea99cf43d310641d9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"a38cf5ee71c85518be983894a37b1198"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"a4a3abb038e0e5aef6a886ee820b9350"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"b729c6f5e1dd329f7638e139c0978e73"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"e0e37923e2689f32dcfd9eca44f08d00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"afdff1554f9869cc73fca10c6c3551bd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"fe6fd9f9996fcd20bbd6bfe6dd340fda"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"7b7c55c2af1d4ab5991c00091593cf4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"848c88955b393838648087e74b1c4b46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"518c93c2d75f96cb8ac3d1b2acc10991"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"e2e4594527ed9255b75197b5c3bd624b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"a1b91331f56f1aeb46a4611f5944b728"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector2.dart","hash":"07f2ca6b60ab48d2f0010a3b5e2dc6b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"b0111cfe7cf2bdfc727c6aa9482b23fa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"085760f9c31794f0f35b2708bdd05348"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"95f250fa86f583b78a2c38d61dd3324d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"75bbc792537c2446189aae5c942e63ab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\LICENSE","hash":"ed635c8090c256b97e03f2700113d13e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"1ea88ac54e55de6fa61a123eb87bfaf6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"886ea72f06b0a19acdb38160909a4c2b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"114284a2602b8ccede8b5ae10717204d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"63e49f158fcf170f1b2a6ffd2fb4383a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\utilities.dart","hash":"3f5e8feebce49c954d9c5ac1cda935c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"ab513fe727e943bb719e971290cd976a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"2ece37913cf838c564571f279b8145cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\unmodifiable_wrappers.dart","hash":"ca6dcb9cea6b00d39a1deba4017fbde5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"fc28fb445e397284e559a7889bb8c882"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"9120287562563523b75bf2a415695b3f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"4233109d74effc87d4e1412ff2300978"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"170d0e776b5d73acd18157809ddee011"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"8415749006a3b1e852f215a35d21359b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"dba86640fdab5527f445512847e74695"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"95db9098c58fd6db106f1116bae85a0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"57f7dd4cc25dd024a0630042d612c804"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\algorithms.dart","hash":"a571fb0887637acc66339216a2290d48"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart","hash":"f9500cbe96d14b179bbfe24b2a8d5b89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"a9c94af96d0a66438b55bd88ff760985"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_action.dart","hash":"75a2ca7f339c23cb6c6126d6f6c07528"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"401d6eb9fa47b1e3461c386d27be3b2d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"ae8a9d6c503d9a6f5b115e0a0c6cdfff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"38fda81f2ecfd4d859e7850cba0aa5b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"3a6f46075502c2c996f3c64634f90608"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"4ea2b8047740f3ad63fb5dc9f961c907"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"75b03ef0d20c201194cfdd2336d85e30"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"7c74a3b43a6833110ab3bf2a15404979"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"040a3e4e3462120de393dfbc611fbabf"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\list_extensions.dart","hash":"87d63de4405bc19a699dc92d87e0e4db"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"1347bcccbaaf31e89867d3cb7d25a9eb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"eafac7ccd4280dcc85ea2d88fa8eaa46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"f13adf3333a9919917d6a2629c1a7427"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"5013dc831f401bcb81c09a5561a55e59"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set.dart","hash":"a9d0ac8febdea9748b1e274e2453730d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"6a70714764b9cf9503e9709f0682fb00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\score\\score.dart","hash":"78bb9e23de1808759508c34b98221d89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"71bb7993745c66edf052ef96dd70cada"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"4094ae59e616bd76862bc03c5c315cc7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"255fb57e535ace68ac98c53e71ca26ec"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"28b070a06eb5d457ff41199ccb8a609a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf","hash":"42d5bf7c22ac609351e84dbc39b12bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"7d4f3e7038778e01d1b183a0fce59e2c"}]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/app.dill b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/app.dill deleted file mode 100644 index 57271af3..00000000 Binary files a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/app.dill and /dev/null differ diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/debug_android_application.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/debug_android_application.stamp deleted file mode 100644 index 8135cfce..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/debug_android_application.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\0e9c33e66046e605629120a573dad4df\\app.dill","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.9.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.3.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.2\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.9\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD969337979"],"outputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/flutter_assets.d b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/flutter_assets.d deleted file mode 100644 index f9e094f3..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/flutter_assets.d +++ /dev/null @@ -1 +0,0 @@ - C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z: C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.9.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.3.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.2\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.9\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD969337979 \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_dart_plugin_registrant.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_dart_plugin_registrant.stamp deleted file mode 100644 index be5876e9..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_dart_plugin_registrant.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_localizations.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_localizations.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/gen_localizations.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.d b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.d deleted file mode 100644 index 0f60ce91..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.d +++ /dev/null @@ -1 +0,0 @@ -C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\0e9c33e66046e605629120a573dad4df\\app.dill: C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\flutter_blue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_action.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_choice.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_input.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\collection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\convert.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\rxdart.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pb.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_characteristic.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_descriptor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_device.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\flutter_blue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\guid.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\vector_math_64.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\material_color_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\algorithms.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\boollist.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\canonicalized_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\comparators.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\functions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_zip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\list_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\priority_queue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\queue_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\unmodifiable_wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\byte_accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\codepage.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\identity_codec.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\string_accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\rx.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\connectable_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\composite_subscription.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\error_and_stacktrace.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\notification.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\value_wrapper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\streams.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\subjects.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\transformers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\protobuf.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pbenum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\frustum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\obb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\opengl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\plane.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quad.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quaternion.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\ray.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\sphere.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\third_party\\noise.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\triangle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\blend\\blend.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\cam16.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\hct.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\viewing_conditions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\core_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\tonal_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_celebi.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wsmeans.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\scheme\\scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\score\\score.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\empty_unmodifiable_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\encoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\encoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\replay_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\value_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\combine_latest.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat_eager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\defer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\fork_join.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\from_callable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\merge.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\never.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\race.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\range.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\repeat.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry_when.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\sequence_equal.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\switch_latest.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\timer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\using.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\zip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\behavior_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\publish_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\replay_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\debounce.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\pairwise.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\sample.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\throttle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\window.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\default_if_empty.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\delay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\dematerialize.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\distinct_unique.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\do.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with_many.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\exhaust_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\flat_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\group_by.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\ignore_elements.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\interval.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\map_to.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\materialize.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\max.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\min.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\on_error_resume.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\scan.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\skip_until.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_many.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_if_empty.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_last.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_until.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_while_inclusive.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\time_interval.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\timestamp.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\where_type.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\with_latest_from.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\fixnum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json_parsing_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\permissive_compare.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\type_registry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_reader.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_writer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\builder_info.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\event_plugin.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\exceptions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_registry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_info.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_type.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_message.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\protobuf_enum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\proto3_json.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\readonly_message.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\rpc_client.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unknown_field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unpack.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\wire_format.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\color_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\math_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider_lab.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_queue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_buffers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\charcodes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\backpressure.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\min_max.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\intx.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int32.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int64.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_buffer.dart diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.stamp deleted file mode 100644 index 6bf4d6f8..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/kernel_snapshot.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\flutter_blue.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_action.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_choice.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_filter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_input.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\collection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\convert.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\rxdart.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pb.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_characteristic.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_descriptor.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_device.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_service.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\flutter_blue.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\guid.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\vector_math_64.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\material_color_utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\algorithms.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\boollist.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\canonicalized_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\comparators.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\functions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_zip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\list_extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\priority_queue.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\queue_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\unmodifiable_wrappers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\wrappers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\accumulator_sink.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\byte_accumulator_sink.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\codepage.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\identity_codec.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\string_accumulator_sink.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\rx.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\connectable_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\composite_subscription.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\error_and_stacktrace.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\notification.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\value_wrapper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\streams.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\subjects.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\transformers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\protobuf.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pbenum.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\frustum.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\obb3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\opengl.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\plane.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quad.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\ray.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\sphere.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\third_party\\noise.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\triangle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector4.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\blend\\blend.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\cam16.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\hct.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\viewing_conditions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\core_palette.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\tonal_palette.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_celebi.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\scheme\\scheme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\score\\score.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\empty_unmodifiable_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\decoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\encoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\decoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\encoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\replay_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\value_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\combine_latest.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat_eager.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\defer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\fork_join.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\from_callable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\merge.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\never.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\race.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\range.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\repeat.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry_when.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\sequence_equal.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\switch_latest.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\timer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\using.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\zip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\behavior_subject.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\publish_subject.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\replay_subject.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\subject.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\buffer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\debounce.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\pairwise.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\sample.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\throttle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\window.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\default_if_empty.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\delay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\dematerialize.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\distinct_unique.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\do.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with_many.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\exhaust_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\flat_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\group_by.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\ignore_elements.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\interval.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\map_to.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\materialize.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\max.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\min.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\on_error_resume.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\scan.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\skip_until.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_many.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_if_empty.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_last.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_until.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_while_inclusive.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\time_interval.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\timestamp.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\where_type.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\with_latest_from.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\fixnum.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json_parsing_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\permissive_compare.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\type_registry.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_reader.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_writer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\builder_info.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\event_plugin.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\exceptions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_field_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_registry.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_error.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_info.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_type.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_message.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_service.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\protobuf_enum.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\proto3_json.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\readonly_message.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\rpc_client.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unknown_field_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unpack.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\wire_format.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\color_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\math_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider_lab.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_queue.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_buffers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\charcodes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_error.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\backpressure.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_sink.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\min_max.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\intx.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int32.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int64.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_buffer.dart"],"outputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\0e9c33e66046e605629120a573dad4df\\app.dill"]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/outputs.json b/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/outputs.json deleted file mode 100644 index 195fc50a..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/0e9c33e66046e605629120a573dad4df/outputs.json +++ /dev/null @@ -1 +0,0 @@ -["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"] \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/.filecache b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/.filecache deleted file mode 100644 index 0ff38165..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/.filecache +++ /dev/null @@ -1 +0,0 @@ -{"version":2,"files":[{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","hash":"5dcd102d7c3866c6e95c8393a210bd3a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","hash":"cb0ac54306d13107885c92eb5b7671c5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","hash":"124270a73444b0f080e9eab5fe681dba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","hash":"7edbbef1e0cb7842e2800bd811a37a31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","hash":"b66f08d4f9c57ce1ee5c884cc37bc0ef"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","hash":"9256b7c771d473c2e12851f3a2b0d460"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","hash":"8c2f15ea01c9a11c65d13328c44030ba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","hash":"648117e681b36d46e240314202cd44ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","hash":"da7d66a75fab769c66e0128406e622cb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart","hash":"d0d8b7556f38bc1bfea4f933aa1a1e8c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","hash":"306b2c1a4ff6237e3b653f3e4b468743"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","hash":"ae568db0bd2c30a0083e0cabf5d32bfc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","hash":"cfe95be073c4cd88bcdcc1c3a2f31f4b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","hash":"8b36fbbac7f16c23042eddde2102dff4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterator.dart","hash":"6c54f90e0db5f42a13be6b3efeb4a04d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","hash":"a1cf35cab736e583e1c7e62c9f7220dc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","hash":"22ca7c5fb298e958a7f7ff552e5fa5bb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","hash":"edd306c9dc2e810b2d32006d7df8b9a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","hash":"5205cd18115285c59b8bb8cbc7f06bca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_set.dart","hash":"4b5d82ddeb09bc46ae0e980616ce0109"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","hash":"b27c8f2495d8619db90818d7131212ce"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","hash":"eebc0f8b33849ee9a81823ac16cd7eb5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","hash":"795957df4acf565cfea5be90aed0d97c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","hash":"1e73077bf0c0ab8a2f17939da1599564"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","hash":"06f0265380286cacaee13dae7ac6a7b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","hash":"323f871335e9a2549dbc3fa9bc93ae1d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart","hash":"ffd7e9991334466f08df7afe0c721048"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","hash":"e3cd5382489829d4c78cbab64fbf80cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_celebi.dart","hash":"3cf17899e608a8d3aef00220080fe5c0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","hash":"a87692fac215fbea5a0362483078a1c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","hash":"dd7a529395d1ae4bd15303b9e8236eea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","hash":"3adfd7bc422cac6bacf62fb9d8ed0fa8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","hash":"ec8202aacd1485af0bf6ebb40307bca5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\plane.dart","hash":"f0c6d5d05fbdc95ab84f1a63894b7be6"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\eb734ff91f9a3d7c2da54a2a998fbd0d\\app.dill","hash":"95b64925b689de1909615f57694c96f8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","hash":"973de094b4b7a61a10f0a1af1db7158d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","hash":"9efa1f3ab813607a7df060e49dd1523a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","hash":"59828d6faf3d86d875791c80bd4f5eda"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","hash":"d2461abdc3435e27ebc56bbde1f4ce0a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","hash":"94fdb881a43f23d33ed5ce46ad4f6f37"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","hash":"fdf9caeb2f75a1fb94a4b71a7d8373c0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","hash":"dd0fd8bd1b012844828d2d46be136f8e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","hash":"5f6f828b3cd969fc2f3136f68d7b6565"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","hash":"2651eb1daac2d7b6b20b3c3c8fa3c325"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","hash":"945e3032b0d067e7384f66517081ec02"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset","hash":"9c27daa9128e5e97c3c9a8e48c6488c5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","hash":"95ca86224a0101c900aed0820a574338"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","hash":"b6dbb6289ff0b03e3f2d550b4c06e2a5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","hash":"9e258f0d844f44eb93c3311f63006b2a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quaternion.dart","hash":"698a6fc4361dd42bae9034c9c2b6cf7b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","hash":"be7807052037ccd9dcbd9ac84acd0554"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","hash":"9795711c9c2ff1c03f089459aca32a04"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","hash":"22b4ab7909ea16401996624752da180e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","hash":"f31aaedc4b77fa0fba6b4c28b11f7b14"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","hash":"37353129e375b6f1c9184a747bd64605"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\vector_math_64.dart","hash":"8e447b279adbe89508cbafc3734fe5b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","hash":"fddae4e59eb1acdfb944cea685278174"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","hash":"a97d573dcd77d882318f0a846cad5402"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","hash":"1c6a02ef8cbdef37e4b8f018ee831c9b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","hash":"2d9a4f28ded442abc85364333151412c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart","hash":"0ef07a430efc50682b1d8141bf3f9c89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart","hash":"9f9b79f577d9fdf4f20c17a26a2f1d57"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","hash":"0f5d895fd5c8712813cee5e32ab812ef"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","hash":"eb5251fe7e8ac80c245f813bc52b5b13"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","hash":"41e76469d0dcb02192ec531cfa50a387"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","hash":"f2ae3026673548013209d0a25a1b5d7f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","hash":"bbf3024583af60090efa0b864f462572"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","hash":"44333635598128debd338a69e790a469"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","hash":"187ad6e714ef73642e64e59553febcea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","hash":"9d73796dadb138d402ba8ecc9c231953"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","hash":"b51a43c23f7faff201f1243d3ca19c86"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","hash":"46e80ec9232be3b4c0a6b89df7d500e3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","hash":"e5ac30ecc6773a9e5d8ae547d48201d6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","hash":"de66fc6adbb8358c27a81b9cbce40398"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","hash":"07051b7d939ee188f8df67d0f23c900f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\unmodifiable_wrappers.dart","hash":"ca6dcb9cea6b00d39a1deba4017fbde5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","hash":"d2cb8a3226d0cde4977960451b5f62f9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","hash":"bf3d43fbf94dd87fc02b91b97bb42023"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","hash":"6456a179ab5f84e42c434aff78f62bf6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","hash":"32282ab703f39d19cd1f8658907da2de"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","hash":"f430224422385b29ab1ce4f5a98d163e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","hash":"507f20e282b9793efc45b9995c4e5f58"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","hash":"4c239fc803f78a4883d5a88a306b912a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","hash":"6270301b25738a17cd3a5a80b4d82c07"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","hash":"3ee73ff626e2b710ff8aef78d90b3486"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","hash":"b98a168ecfe06807c6a8395e85a0602d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","hash":"cdb0c4769071acd41ff5c4812e61492e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","hash":"d2a4e109d447e5c0805ec8a5f8f7f5ba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","hash":"e51d362bc1bfab1482d06cdd2e138ab9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","hash":"d2c199e610064303fd19f71a89ea1a7f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","hash":"f3b994de2186a68efff6c224b5612a72"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","hash":"202a0b6b548de261773673c7a9d79e81"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","hash":"416ac3000ef00c2d6a8c19fd54771bc0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","hash":"c057ee57201e860f2ab5803b59f229a2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","hash":"75dc6c5b39149e47e5ed9dac76bfe096"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","hash":"ff523d1f45f02a59df0ab0be065e071d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","hash":"0dec6850aced6b7e9ac3700ba3a6c6ad"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\comparators.dart","hash":"d1410f48ac374235aaad55cba40bc4be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","hash":"642b13310e52e185820b95106310b824"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","hash":"bef2de7eb2a89b6f837a663af7add2b0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","hash":"9db218ccc7b360fef5d11f59e26134c0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","hash":"83b7700e2df4d46194cf01bd09c72601"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","hash":"07da5f85a9d76f68664aceda2c2f18b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","hash":"5d897b478fe7a7b193e138eb50ad2bc9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","hash":"4805433d09a38d09cc9038ba04d624ca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","hash":"c77a1e2984625659b2530c18e25db107"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","hash":"d25cce1fef0c75469ef113d8d2401caf"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","hash":"f7b6f7934cfa65ff4ede4f5b0498ce1d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","hash":"b1e3c99cafc7fe282649e964dc72187b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","hash":"71406f730a7577900cf39b06037dee11"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","hash":"e2575d7b84ad8e8f82aaf4896840bec8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","hash":"fc9a728239e9068ab638378a6a02d32b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","hash":"9f42ba0ea1da677844c5459368379dc4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","hash":"be5c39c9367ccc8c7d263b04bd82eaec"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","hash":"7e27401917d2bb6490b41695b4eaa9d7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","hash":"5531624f26f6a3bc059232af95621101"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\math_utils.dart","hash":"bc178bfd881857e5d368d1e283173468"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","hash":"c27022057a09e9d426ef0e5e33cf910a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","hash":"4cd65c08810ba79643ab80f2f316e753"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z","hash":"31f803cbbc38a33ba2b5d6b5e38920a3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart","hash":"487c9f8e58c0f4be4be6f6fdc89cef93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","hash":"8494dc94e241fb7d507f41f6f54367c9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","hash":"5ff6818a5447148e84575da2bc99f7cc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","hash":"200b16038ed601464534e0d6e17d1229"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","hash":"85d90e0e7b960d1a1bc32ca143b051bb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","hash":"9e5c1dff5f1b579f75e519eb932075ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\tonal_palette.dart","hash":"bdadbcf7bf3a4b727a7bcb5baafe59d5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","hash":"84f51018587bfce87930671a8443520e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","hash":"f027b29c45842f8c37b4fe0b15970643"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","hash":"736f287714cc3762c7449dc24b79acc2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_list.dart","hash":"81b2d2a545e6f66510367ee8d4bdbf51"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","hash":"051984d1b3a90c344f9cc89dd24946e5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","hash":"41c4916dbdf0db7e267d6e63520f507e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","hash":"dca616878889bb978d399089190f992d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","hash":"ca18fa3d525f55de67b9338f1dedca7b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","hash":"81bf639865a18ce6bc2d459ba963c166"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","hash":"6191aa6d22f1fe2271235db7856e15ba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\LICENSE","hash":"22aea0b7487320a5aeef22c3f2dfc977"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","hash":"0189c0682d513f43d7828fa49ca97315"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","hash":"cc3c873013764dbf79bcdd672a940732"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","hash":"31ca060cd0631514ed19e5c94ab4b00c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","hash":"2d6f2d1721acd58f900cfa1b84f8ef3a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","hash":"7745e1a13f795d0bb976ed1518651065"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","hash":"7938624dec0b8cd48009baa468220c45"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","hash":"c07577ce8af460552566f5aff7b23692"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","hash":"6b76afedc08e604ef6d6578bb8936527"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","hash":"35fba0794fdb13603eaa91c675bacd93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","hash":"312891dff870149634e8d3d8cf0de332"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","hash":"28a76f134bc743636ecd5e66a4e67159"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","hash":"73640b0bfe7f7f66798fc96e6589cae9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\collection.dart","hash":"d4aac344300f5d20f321bc2e7d9c128d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","hash":"0d1af89ce4afa1f60459b832290cbde5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","hash":"4ec2f2741a31c09020b855ace1d91c75"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","hash":"52330a1aaaed55b676294a8ed2878440"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider_lab.dart","hash":"6566a35ff0dea9376debf257bdb08fba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","hash":"05492ccf9f76b28a131986d1dccfe69e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","hash":"910dcee01670526616e0a5ef34dccb14"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","hash":"7d75d51225a2b57326cb1c57efeb93fb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","hash":"c624dd62885eb240a302a9941e301713"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","hash":"29ac3d6103368bc31d755181234a9966"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","hash":"5a3180e5fd96bccf7e6acf4c63e712e8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","hash":"bd88a6f73fa1e4d56f239f61da7dceeb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","hash":"6dafbf5b1d01d1cf7a136c8c59f390a6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","hash":"1f2c73c25c79c8d2b40d09f3ec204d11"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","hash":"a09bdaeb7d867dbcb33c91e304c3ad5e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart","hash":"4c5f03dfaf0d16de0c939473c7de90c4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","hash":"3306aca91b90f2279ad60b93c48044a4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","hash":"51bed17e1f31b1bbe84a4be66d1d11de"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothPairingRequest.dart","hash":"009040ae4dfce0a0e18dc7248e27cd0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","hash":"ec171a7f71d9941da5e0d18c91f32e24"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","hash":"175d3b03be0786f9542a140950ed9ca2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","hash":"d9cf0c93ce6718b9296f5c596e397ccb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","hash":"dfee9778f60a8ad33db4eb771b062292"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","hash":"b082ff0baf73317bc8cd43ae08ce7974"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","hash":"c3f666148b1099b783a1cb34c289bb89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","hash":"4b6f7468cee9de96b337091de49de1f4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\src\\typed_buffer.dart","hash":"408925975d3f9f2705add6882d8dbaa3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","hash":"510496d513b9f4c9491b55b62efa17df"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","hash":"5a678e4715eb86b77e38fd3484c90676"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","hash":"4dbc01f4fa5fe7c040f7957fbe6d02b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\wrappers.dart","hash":"9b25196b5260db71c1819f20728d6073"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothConnection.dart","hash":"01703a73b75bcb7612cdbd4b9832bbf8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","hash":"0761a5fc07a0a89635545d5cee5e2533"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","hash":"728c12680227af437d6185cb4963ffbc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","hash":"c8f25831613c55279d275eb5c81cc0fc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","hash":"981c9ad7e4ff53cdb8d98adab218ba18"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\hct.dart","hash":"d5d40323118344a8901b91b8055965b8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","hash":"426201c7934eac02bd395312d9037b26"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","hash":"cb1f1ccf3fe162bb52d8829f9ac4956b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE","hash":"2d0c70561d7f1d35b4ccc7df9158beed"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","hash":"66febf1d7a7d1dd6a0cba3732775592d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","hash":"61dbcf6b8958f989283ea4d4220240da"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","hash":"5e38262845ecbeaf5012ed33d2aafbe1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","hash":"0963da39693be4679125c606ac3fc505"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","hash":"9f04b011b5af7bb794cacfe56bb1e39d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","hash":"de8db89b295b5a4cfcb299d56749b917"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE","hash":"88c7229273b8726b5dbd21efd7856585"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\raised_button.dart","hash":"1630c3e523b8b2440e70645491e4a5e0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","hash":"2d7e4f02cd9b27272776d24795dd6bff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE","hash":"d2e1c26363672670d1aa5cc58334a83b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\list_extensions.dart","hash":"e04b28ce4286bb9f747fb940b3b6adc7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\utilities.dart","hash":"3f5e8feebce49c954d9c5ac1cda935c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","hash":"ca9d17df1a57896eaf4ee6bf95437f5f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer.dart","hash":"db799bf48af97b7c0edc93ad96b4a6da"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","hash":"63de0660bdd72514f0edd1f8b723218d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterable.dart","hash":"73a1264f4048161cf1e020b447b014a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","hash":"1673b798e2d29bbc7de5451a22be933f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDiscoveryResult.dart","hash":"4afd45719c5556bc75440b721a8fef3f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","hash":"e8a97c68019e61d9c9393acdec1d74aa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","hash":"6bebca4e2d5daba15e338f96a54ab063"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","hash":"6b3b5cac09c27c9c9f48033208456489"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","hash":"a0c3b1085109189f0cf22797fcb066eb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","hash":"3d5dd725a64672d9a6f794ccc3c203e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","hash":"d40fa70204feb6412a37cca9bb5691d1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix3.dart","hash":"128305fa0c98f2a88cbd684f2b20cd0c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","hash":"6504877fb907391dbe691e31f5f87a3b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","hash":"bc607d97787ec48af27b98e219825666"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","hash":"8a2a0b52174898506efc572b16943286"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","hash":"81952852ec544af11d09f6d55805cb88"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","hash":"64aa689882a6b055ff41ace56d0ce1d8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","hash":"fd6a9271c4631f896a5f81f872c03d1b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart","hash":"36280c072e87476893ba441b9b25bc39"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","hash":"5b66a74341696e9c5c83e6187da5ccf2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","hash":"8a00cc314c090bae372ec192c795fce9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wsmeans.dart","hash":"4dece1c451454c02f93f3ed99fe418e1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\functions.dart","hash":"3323bdae0e66f40319b9542e5974efb2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","hash":"baefba2a1f00de274bb6570a55076146"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","hash":"f6e92bc850ddb9c2f522429bb8e7d940"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","hash":"1f14bb4cbaf20c016bb6f1df5f911f38"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","hash":"6b0d2d1c605d07e06d045ed6988e38a4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","hash":"f9c09e70abce51b31d0463f6ce0a009a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\material_color_utilities.dart","hash":"efd86bd9a7183660b902f2528da33973"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_map.dart","hash":"700328ab0177ddfd9a003a8c15619c1a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","hash":"d296ffb4c6afa0c77929fd6cef78621e"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml","hash":"5b854132b7901c9daade78cb979ac33a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","hash":"372c5d92b713a8e3fec5aabc804798e9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flat_button.dart","hash":"ff32ba3e0c50cabac43e1d940fcc867a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","hash":"e7e321b3bf39ea9acd402e6e2d397c00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","hash":"726bc069ff0016237a5e47314361fa05"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","hash":"19c33af1877d53b649f79c858e032116"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","hash":"a092c817afad547a838170c24eb43185"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","hash":"331ce2afcb3dfe60f37d0aaf2ea0539e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","hash":"17ef0182096381f184967d846ca2f821"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","hash":"ee93d8dc9fbb05d4eb883d945543480b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","hash":"c946e0fee89320950945237f2cbc5d98"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","hash":"fcbc4351adaf6127f5527d6672657b70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","hash":"1968e86ac0b427d8be3d5318988fee90"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","hash":"2f7a624ff530a3c591d420bdb99a164f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","hash":"456fc53ac9c8212ff5b4387882584b07"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","hash":"5d6e64fec316e5322517bbc41fbe45bc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart","hash":"0547db7678ce4646e4e9237a29aa2eb2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","hash":"e7a8832918d6fb5c5b3b311c233cbbee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","hash":"b9c353c88835b74f4aeb43e2f2fa8621"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.8\\LICENSE","hash":"3323850953be5c35d320c2035aad1a87"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","hash":"79d11edc65aaa955446fc63be92c922c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","hash":"a79c07fc6fd91de381321cb847882431"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","hash":"dc3d03800ccca4601324923c0b1d6d57"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","hash":"d5de257147d3889f28240602da15524a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_map.dart","hash":"b6bcae6974bafba60ad95f20c12c72b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothState.dart","hash":"bb88607b7685e82080d43baaa9b9ef4a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","hash":"3860483b8503e8a38cad73fb61c07789"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","hash":"746d09154dab961399cc9e97048ffab1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart","hash":"ab5c9d506f145cf79b2d1990ad55d668"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","hash":"9c11d437487d645e8d18aa8a247f7a40"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","hash":"fefb9cb770d082109c939e24b9c22f0d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","hash":"cc30d62034be8f03dff2eaa9f3cae268"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","hash":"7bfb5b856b83a23ea80190c2467f94ab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","hash":"7d2872a9548c8acb467fee6094a7b268"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","hash":"c586d0f83dec0a2ece3fb345927e35b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","hash":"3aca1db3554d6588ad7d3c97ebe6d420"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE","hash":"ca58010597a5732e6aa48c6517ab7daf"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","hash":"52be6fbf67b3ac73a0ab1ba1406b06e3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","hash":"613723831ae8a68741a0ec68c5662760"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector4.dart","hash":"b5e3c6491bf22a914826ada505da9e43"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","hash":"337f3a3d41b5b4b8541c84c4ceff1832"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","hash":"a57104f93d6127301039f613ebf03ca2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","hash":"967a9225429824848b78493ea5bbf585"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","hash":"b28a1fb1eca432b119b72f1026752931"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","hash":"454f11813e43a193cf6fa422fc834104"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","hash":"48bd88fb159a73f93ec43e46531778a9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","hash":"205737b00f03a9613a71b0b45b892158"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","hash":"43a9de993329879a13fdcabc9e425f40"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","hash":"364f5709f448e8cb303ee7ab01c95a82"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","hash":"c6ded050607f5520a02adec3fe5afe3f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","hash":"4f40441075f2719a6fc9b0e948944c0f"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","hash":"95b64925b689de1909615f57694c96f8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","hash":"8249964a646c413b038ef16b10cde5ac"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","hash":"bd97e6b0180f531ee19c740a67ef99a7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","hash":"6b9460474813a456c18ee6751e1ab8b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart","hash":"188d03c92376ce139ce247b0f9b0946e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set.dart","hash":"a9d0ac8febdea9748b1e274e2453730d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\sphere.dart","hash":"63473e31f03ea66a38affa41fd783752"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","hash":"9e055ea0947de7a2037e64230ab175bb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE","hash":"7b710a7321d046e0da399b64da662c0b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","hash":"ba965832d27779ed966d8075fe2b53be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart","hash":"21bf6725b1fc374f03ae5b2cb46bd95b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","hash":"d100cd12516fe7abc541338649e65ec9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","hash":"3e860e34b4aef59ed04399d84be0c1fc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","hash":"510796b52e464c7bde5007d825cc5e12"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","hash":"8fb1d6996d4728bd67d8281778db8a3b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","hash":"83604df36f67dcb200daa7b6e3e3f8f8"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg","hash":"2ff2aa2b420717e1df218ac947d66758"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart","hash":"3bb0652e163327c58784ce2a2b882a7c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","hash":"1f37692efd7574888e683bea77635967"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","hash":"0e9eeec2da61f02d87c0cf201d4bebe6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","hash":"47173bd6353526e2626f4b093e8df664"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector.dart","hash":"6a67d38bafe568f1b4047286d586fbbc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\canonicalized_map.dart","hash":"e17ca582a586702deb1062b597f3ac32"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","hash":"1b1966382b50695d9d99ed2ae11a2be1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","hash":"695128e0de27b6a360c79b208c3fdbd2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart","hash":"8b040e755ef1ef3ac7e1677733ca2960"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\error_helpers.dart","hash":"39221ca00f5f1e0af7767613695bb5d2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","hash":"621e66e54ff043a34154413b006730b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb3.dart","hash":"257ca4608e7d75f1db8d4c3ab710ac70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","hash":"a402d1809520a0a431f1f175557228b5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wu.dart","hash":"c0da8171c63f0ab4e822dd094fc2c595"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","hash":"dffae0bea916323d391a7c29a974d773"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","hash":"e86f4c8d699f8d9b336e621c49d537e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","hash":"8e6e88663eebe9500c43de6a6ccca476"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","hash":"3be89a33db72c9f3959b9a84ae9354b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","hash":"f6a45b9ceadd0498d11b1d656d529b46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","hash":"37457991b27f451c6789ef98cb24459f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\scheme\\scheme.dart","hash":"ad5734785c94edbda3f62904dc13234a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","hash":"fe0193aa504624a5886e9757bc2483ad"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\triangle.dart","hash":"7d2bdb4801fc8b3a110f36d5e5fa59f5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","hash":"cc809d5f94cb2079dfce99560d436be5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","hash":"2fbceff86238525aa62e1997728d25c6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","hash":"9ae9207309eb71c683c78b39ec78211c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","hash":"0c2793e0e2ee4110e0f80fe11d9ca784"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","hash":"2861f770c7e4dab45bbf87e22f99d8ae"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","hash":"f01d12c76f92ac1b02e2231e4546a161"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","hash":"23035a15508bf6e05431c0e59939b8d4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","hash":"54b963d257153551f8d436def6c61211"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","hash":"741b683bbe79a00fd9e9eacf66d7121e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","hash":"e1f4c3e30b57b4ccdd0afc1d810d53b9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","hash":"eb3b0198467605c7f3305c353f5ef7f1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","hash":"78f234096ca2c045043b6f99ef8f9564"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\cam16.dart","hash":"dc744c8152ad2616cf94544c21374f6a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","hash":"06a2fcd195bce12ed8f82ca12540d237"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","hash":"7e909925d7d98521500283d297d0fe19"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","hash":"f58c710b7fb8e0f38b6ca767f929fee8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart","hash":"6e0c3a1bdc5c4f194fad7eea5a326263"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","hash":"c6189df841b73fb4e87deb1386e2a4a3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","hash":"96d27870121510584f055f0ede04031a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","hash":"1f48218976da077e5f3656be303e3f64"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","hash":"7233e0c442656dbb58e9396969435780"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\intersection_result.dart","hash":"789e79772bba1132b3efdb60636a3ccb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","hash":"7cd1be6c748728c7a019e8b3e9612420"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","hash":"abaf74fea14fc690963eaa9f0a58a096"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","hash":"5ca3cafebc79e69c6770307973c0eb95"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\score\\score.dart","hash":"78bb9e23de1808759508c34b98221d89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","hash":"82436852b1697d6e16ca4d20424928b8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","hash":"427ae29733552c52b223128f3cfd43b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","hash":"74b3466108654e06571c0b0b8172184c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\obb3.dart","hash":"5ca0b5786bf63efd4fc72fcecfe1b36c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider.dart","hash":"7504c44d1fa6150901dd65ec78877be0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","hash":"397e847af939ca57a8ae3ab1df6ca0b4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\color_utils.dart","hash":"8ff2f5edab0bfbbde83cb102dc7bee4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","hash":"cccd910ea148d734a45301a2e02f7a30"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","hash":"78f190c8a8420a8a469d4a082fd4ba86"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","hash":"876e469be2625a5270c7b4fc0914b542"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothBondState.dart","hash":"ffd913b7a2f109af99de2a9d00d13bab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","hash":"2bde402380208f1a47e7cdf43483f29d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.2.0\\LICENSE","hash":"175792518e4ac015ab6696d16c4f607e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","hash":"5876be1180e762ac3d96fcba776afefe"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","hash":"a13c5500194f8fa7985c7b7cfc7f374f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","hash":"92c7c14b60ad587645241a9429cab60e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","hash":"be81c1a2b7ca902c2815ed86acafc6fa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","hash":"61ba416e763f471658f478aac45be302"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","hash":"733d87159616d666ce5489d40ca251b8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","hash":"dde5e6b0032a900403fa3218257b7fd5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","hash":"49426ce00c47f052a2a30ddbdc9a82f0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","hash":"b140526fe9a843e1f5e19f4f1a088fa0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix4.dart","hash":"b2f026cb026e570fc2bf61579a4f9f0d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","hash":"9e032fdbb4772bf5f5bb7aa357a4b179"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart","hash":"de02657ca53cfbf3f5a6968fe896a8d2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","hash":"061c93059aa271bf8e442eb9b81d52e5"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","hash":"9b240e9faecf3e77163835bfd01d34a2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\blend\\blend.dart","hash":"8585c7f2575d2778939c5f1412037f2c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","hash":"f742e7fa023abd34c5b2f753fe5d7d0e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","hash":"a41651d5e8cc6b80aa1b9b5851b36199"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","hash":"b63f040e69c0fa68ea93efc39b077fb0"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","hash":"4e6447691c9509f7acdbf8a931a85ca1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","hash":"2d5d2b3c3ce16144980f406122c66c14"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart","hash":"d1b7fc88a21831bae0fc2e86f685d728"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","hash":"4dedd097d5314c866de555a7371ca00b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","hash":"376f39c4c2ae7ee6b133a09ae5d9b726"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","hash":"023e6272daef5de2e9debf9ef9d4a105"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","hash":"6c964309bda1008c80f10501a2e35ca8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","hash":"226971e8ddd223293b9880f40eb886c8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\core_palette.dart","hash":"ae2ee0217638a20c8e825ce6aeead3ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","hash":"253e553f48b1e9b973d9f136ee25f909"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","hash":"cbb3d9cf9ecb1f332adf2fac0efbc019"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","hash":"05fd9a836470e9afedb509aff4556b81"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","hash":"4720ff3aab554b526c41748039b51f03"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\constants.dart","hash":"aa4b5c0cdb6a66685350611b29ca9d38"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","hash":"bfb5cf781bf9d45d7275d7c1442d34ea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart","hash":"63d169645b412dfbdbaf6d334487a9f3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart","hash":"c8a335c5f3392c3c062d2af889a0afa2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","hash":"bf14b4cd4237305be9344f4b04d76ffd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","hash":"7a5e25b9bfb275ccbf06e08ff51b4514"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart","hash":"359388897ae53df8791213c31ef05fe6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","hash":"a76ecf9f380033d10b9d38a8de68023e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","hash":"b1b5f63432f3bc778a5291666bb4842e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","hash":"8c57d62cf34fcf875f6ab7f86c6a4a03"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE","hash":"4cb782b79f6fc5792728e331e81a3558"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","hash":"2811193bbc2995b3b7c9bbe8922a9a4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","hash":"6c58a7789c9eebed84e2a9c49d72a44d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","hash":"0df383122da5310310d3b8ffc82a6c7f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\LICENSE","hash":"09492d570d89a0914763aee7bc51bfba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","hash":"f95002c285dcf01c5e830d101c388804"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","hash":"6e02deccb393325ebafc5f2ffb3a951e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","hash":"6ca77023fcebb61e6e2997c35c796ce0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","hash":"9a6e57a1acde49ab7265a16d750d9335"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","hash":"9191c49d3fb7e186452cc8f04806043e"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart","hash":"e1709bf4c41e7d82688e7f8440b04d28"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","hash":"4c4e8d126ab433679c6ab14a37853785"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","hash":"fcbde6fc00e55df56f3ad989efe1f2be"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","hash":"ea6f1039d8536fdcc5280a68172ae833"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDevice.dart","hash":"9fb476d593144646e5c6cba3b0aab03d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_deprecated.dart","hash":"c53e892ebeb0e1432d6869240a9a21e9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\priority_queue.dart","hash":"8349419761c6f6a9895e670f29fdf8a4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","hash":"1a064b13805592e6b25e7f305f56ff89"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","hash":"7b1caddfd12789771ab11c18bdb3a132"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE","hash":"e9f463669bd6dfea2166dcdcbf392645"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","hash":"559844375c86260ab8c4d6566f1df986"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","hash":"96ade97710f3dd7835a80c9aa2671e64"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\third_party\\noise.dart","hash":"c12ccedd20a6c9c3b0af7fbf64e055b3"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","hash":"501cb4dfb29d5d51d140ae37ed1d3f80"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","hash":"b9486cd89d4be86dba2cd782918f3e28"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","hash":"b7e8989e91be3c0a471594012ba1b6ab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","hash":"b80af3be8f36276b66c91e6827185430"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","hash":"a59c2e96c8d303c229bca2f94c21b26e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\typed_buffers.dart","hash":"ce98eef91a240aa9f848a1b9ab61e55b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","hash":"7da4a8296ce60e95f5cd35b18e05a1c8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","hash":"471d7eb1a487cb8f1af4ebf1c7e67199"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","hash":"c7ebc80c81d3d8facf41ee6ac7d7138f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","hash":"f4bd550468f76a4a0eaba274f1d141d5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","hash":"bea632cb86828b3ba44c33b2d0b40585"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","hash":"6677267e1b81475aed82141aaf008d41"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","hash":"167a69279277faab0c6ccaff58e80f15"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","hash":"e098f4912138de91b048c485fbce4d3c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","hash":"a82fc26b116d1119141ce2ba90797d70"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","hash":"16425fb2929c6c746e93b0580bdef50a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\empty_unmodifiable_set.dart","hash":"71431671bb58314c66f09cfb26e5a92c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","hash":"a226c45a2f24b8d70d9952cca49311dc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE","hash":"83228a1ae32476770262d4ff2ac6f984"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","hash":"dca98b9539ace5f94949101a2ecce0b4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","hash":"ecbc8c24cdb5576f1247342781218acb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart","hash":"086c6071043ed25466b994cf69d02744"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\utils.dart","hash":"fe2489ea57393e2508d17e99b05f9c99"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","hash":"fa9455b9ea303a899ed85534cd354b16"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","hash":"f8c2241826a62da55221aab7b101e1c5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","hash":"04573e1e5cea1b09e5b766cfe86f5fb4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","hash":"c24e0b6d68cd63be6df236c0248e5a6c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outline_button.dart","hash":"2dc03c1981c76d1857465a1aa2342f32"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","hash":"0cee34324310edc58cde755693fb99b0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","hash":"6fc349424b43f4db62a502b235db565c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","hash":"e1b093d8cff3857358b7fc3984e3eba2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb2.dart","hash":"f8fb1733ad7ae37b3d994f6f94750146"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","hash":"5915d97072f2b678a4ef9328c341686f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\queue_list.dart","hash":"5cf652cfa0f6ecc30b5280cf309e078b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","hash":"03d68e0a2e31a2a245f822afbffaedf2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","hash":"1d6901f2563aceb02860c4f5f24b28f1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","hash":"e2a394bdcb52bd5bbfd0565023fa87db"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","hash":"2008dcc194bcc3bb36e10c1140b958a5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","hash":"f6d098ae452b7e2e775148b1e5a24a46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","hash":"685ab51a380c0d05fb65b119c06a81af"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","hash":"3a1115de153505ba1c9e0c370df74b2e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","hash":"0643e744c9179de3b22cf5ab69c35462"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","hash":"1a2d46e53c780cd3327858dd97bf280c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","hash":"27df59ce3dcfd310b0e0b2d154aea48f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","hash":"472bde2455a890882aae141059ef3071"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","hash":"6b8e68f72bb19a488b83e967c84902f6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","hash":"d1fa94bb6ea0db113a3faa900a9f4473"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","hash":"ad464b9f81001d965d87cdb3109fc2ed"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality.dart","hash":"a500eb19da707b5dc935c18cba68f741"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.1\\LICENSE","hash":"a32e0281a3048498898209597e42dc31"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","hash":"f0ec3ae105edef43cdb519519d692b74"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE","hash":"bc9787e25236e1379cf5f582cbc1b6e5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","hash":"1ea2381b93f540f21bd32412fc52a372"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","hash":"820698232bdbca644ed082049ad853d1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","hash":"57906cfc68af898f6e47884e179ff9bc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\FlutterBluetoothSerial.dart","hash":"5dd6ace892a09df1d7db17b9392c71cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","hash":"1b2bb6bd6671f3be0b2530db9a44a2ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","hash":"aac933588e193c7ed6d1b94cc489e3e1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\colors.dart","hash":"5ed8acdae7dd3501b64b0ff3e33c1f45"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","hash":"aa3513a7dbc4cf64aa3d6f2851cc4a4e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","hash":"97a29ecd681c01b36d1bff88bbb7b21e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart","hash":"69f9ebd19d666a8fef25828aac0c59ff"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","hash":"e9c7a171d3baa2e3d6808ba15b99a229"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","hash":"45c8d72994ad49e9c3a077634c01de5e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","hash":"b28a14a8abaa99059ef39f1ec2ae3d1b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","hash":"f1b3e919cff6b2f72e80aa5d75b9ae92"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","hash":"56632f01d5d4f2d8bf85137484a78e9b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","hash":"47d457e2ad01a10f08738db2bba0f604"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","hash":"abe6c93a2175244ffb8df9d9589206a8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","hash":"fc149f618b910f4d2a0af7f6c2085bd9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart","hash":"283e42c3a217eeae53aa87276a82f8ee"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","hash":"5733b485adec308134eadad406d709d0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","hash":"370fb9b9e52cf0621a41c3d658cb8fc7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","hash":"919b76591be02489e2451c4d944d64e9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","hash":"091d1df4ac0dd2d4075791720270e43c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","hash":"b8eb710c59596f34fc705084ec4bbcb6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","hash":"705c204018653e421e3e3b70eca711d4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","hash":"139f68e772c5e4250fd80f4267b8b803"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","hash":"6a3d726caec811b22c4858953445f07d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","hash":"48fde74cb60cf37958583de92a6b6ade"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","hash":"83bfe25bd7a9b813f0a44f64fb6f32e0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_zip.dart","hash":"df699735e3bcd730f16ce377d562f787"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","hash":"efb8c9eadd5277e87096c9baa6bab7b1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set_controller.dart","hash":"fcfae3ecf984ee7d09081c2a7898dcab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","hash":"066598e60f386c29c0788dcdd24422a0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\algorithms.dart","hash":"8f941d851dd3ce6a35153a42b47b0cf6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","hash":"1a34cd7debee76759ef8738093abc51a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","hash":"607523dc36a255acc99c7091de785272"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","hash":"c6e7410534e464fea7120bd1c09543db"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","hash":"4575bc7b2dc54920caa664e0f041ad11"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","hash":"e58aa3c5b7059d744546cb3ab3a2c1e8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\flutter_bluetooth_serial.dart","hash":"0c443f567e730c5fc5de06300f4b7b8d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","hash":"2576aa19db8fe3d21a2249e468706d4c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","hash":"0da5f2e7dffa5a5ef195546ee68d4f30"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","hash":"fd9ddc04e919310907d769311531b36d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","hash":"019090bff4624ac248092828c11c146d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","hash":"ad246abb23640fd9a2a6f0b0483143dc"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","hash":"41a0e63f66119a102695cc7c0838c9f2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","hash":"70344060ab75112ea2ae07bf5b75e431"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","hash":"4b58c916b1e24f8ecdd4900d65566e5f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","hash":"00028508d9b7a5d99a8cd010e6b051a4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","hash":"bf2e2dfb0e3ba090dce2e8b9609d5576"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","hash":"0aecea799b69fd5da41a8b1f18aea5c2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","hash":"9b88a6448e072159c7116adf2fba4b4c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","hash":"a1dbec7ac9e81f0e91675f6382b318e2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","hash":"672a15c44c5130c55445a2d59604c73d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","hash":"a1d1b2fa14c4462a1e51ddb6124e9644"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","hash":"af92ee44645e38e56eb6951999a9c0ca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","hash":"2366ff0690220d5201a48bb927f83e38"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","hash":"3bd845ff56a24127a5d8884118b67e84"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","hash":"b12467f8694f07ea11c705e35441a29c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","hash":"08b2e64bb9bca46362ff8733060dbedb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","hash":"8bc3576478c6d0ab6b33cddb250e1af1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","hash":"e0ea5769e0ea5f4a3857be98164a1376"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE","hash":"09492d570d89a0914763aee7bc51bfba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","hash":"9843bb4f3b0e218efa56f47013dfe492"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","hash":"4b931f27ece15e029ae3ec64e0b3da6f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","hash":"7d9cf04faadf659604eb58b1a6b8d2d4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","hash":"6a7e93a898c46f1b79c6e2686c0b72f4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","hash":"eb5de6b78ce3d3092b4e9670f4dc928d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","hash":"490d2d00ee2c00ed9feddd47a0bd322e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\viewing_conditions.dart","hash":"89ac6e1a99054eb05805c6e7a6f58e6f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","hash":"d69cfe997fb07df43a2c3a80f0178a8e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","hash":"2c1c2b02da1e9d2b1e41c5e1cc7bfe50"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","hash":"dbcdba28aada70e2a5bda69176fa252a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","hash":"5960ddb5ede7d834732b5b0ef2c7f9a1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","hash":"8706d9a370087b0f833ceae2d7ab9419"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","hash":"3192e68c5cbda0095f21add84a7cc550"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDeviceType.dart","hash":"e717c503eb0fbf0b20ae502526b4d1c1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","hash":"6221a365b4df7e3825297386fb770291"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","hash":"af5688cddaa7e55c3c72b9dcfe2131c7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\frustum.dart","hash":"d975e51852aa1802c81c738dcb4c348d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","hash":"04e699b2aa75981071f32153574e827a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","hash":"644d1de361b9df8a3c7e3129f4e3335a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","hash":"a196119bda9de1a2ed21f98bef5e2aab"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","hash":"a315527bf6e3afc05fd7ac45d06fd6e6"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","hash":"3e44652c568228d03b8d020b9448f37e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart","hash":"126c63b07d1b425e904b735cdac85afd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","hash":"2dac0fd18a71a5f6d4ce6d67e0579813"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","hash":"3c54c02ca28eb9f7447da90f2785c7dd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","hash":"d6713a651ce4beae34118b0e31bab372"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","hash":"0aae776380e2da520a1e0524649a0c76"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","hash":"4332e67498003048eebeeeca478ca044"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","hash":"abe2dca9539adfffc664d9516a4e1fd0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","hash":"931b4873ecb21ba5ca260f04aab48b5d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","hash":"668675780a7ff3d86040e77bcf967d50"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","hash":"ba91853887578eca4ba61e030ee1adbb"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","hash":"a7a7389551c9685faacc8ae1f136edba"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","hash":"2ff2aa2b420717e1df218ac947d66758"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart","hash":"a0dc5a2444796de864a2c75a79ad488b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","hash":"180c6cbb598e1619a3d09d2e5af1c9c0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","hash":"045d2db22214b9d967f9c4e1c2d37db0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","hash":"f7c16618b988befb8b17a559e1a70b96"},{"path":"C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","hash":"42d5bf7c22ac609351e84dbc39b12bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","hash":"d6a678747fb4280cf4b80cd308675140"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","hash":"fcc20c76bca9e85f35192643f5fc86a0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","hash":"584742405cf21b1524bafea37e6b5e84"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","hash":"17d5acfce474724d3d2c9ce821b961e2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","hash":"9006d9975a5ad8f716475cd5462d816b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","hash":"0c7744ed313b9e96ac025ee807d4fe6f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","hash":"2f899921af19bdd76211bc775d804e8e"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","hash":"b46a29ae4b5b09007f227cffb0ebb714"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","hash":"f0d3d657c8886a53d8a35e0506546052"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","hash":"e0e37923e2689f32dcfd9eca44f08d00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","hash":"ffc56e087c0fa266f6f6c6edb2f1a33b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","hash":"df254fb99e2e0aa929690211a639a860"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","hash":"8d41e50a900c90da4b3a35177c5aa3ea"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix2.dart","hash":"43975722ab4b6d145cce8c9d25af4a88"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","hash":"d0b0554a9961d387a1b3796415d7cbf7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart","hash":"38e17b28106d00f831c56d4e78ca7421"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.8.2\\LICENSE","hash":"39062f759b587cf2d49199959513204a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\ray.dart","hash":"146741f6f87d6612ee7bbf6a6fa9c119"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","hash":"0c03479b1a8e947d1edfa6bdb5c4fc83"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","hash":"eaf6831532fbb5e57bc2d631ab21d75d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\LICENSE","hash":"09492d570d89a0914763aee7bc51bfba"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","hash":"dfae8d10312df783f741fef2c1b83cc4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","hash":"b0111cfe7cf2bdfc727c6aa9482b23fa"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","hash":"6dc439057f0d309e8eb985e4da2c4646"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","hash":"56e52b2fc2dd46c16ef2468a94f7c2b5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","hash":"9c9aa9e6c22ea06efa7e12821fed56b4"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","hash":"e2dc5612742555b881d160d75b687b7c"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","hash":"886ea72f06b0a19acdb38160909a4c2b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","hash":"830d9cd27f96aba4adff1bd9c3494ee1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","hash":"63e49f158fcf170f1b2a6ffd2fb4383a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","hash":"13e3ce7f581f4ed78aa8a096c498f741"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_extensions.dart","hash":"c8919ec1cd69204239ccfb6c49c28e1d"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","hash":"2ece37913cf838c564571f279b8145cd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\opengl.dart","hash":"9e22ead5e19c7b5da6de0678c8c13dca"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","hash":"9213c3387f1768b78ef25c9c6829a525"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","hash":"9120287562563523b75bf2a415695b3f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","hash":"0e1dc49914f2476ec445c872c4c4b14b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","hash":"a9cb7381de2f519dc4b3cb75631edd4a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","hash":"b614d8172098403c683c68aafa3e92e8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","hash":"319a89da87a25a984313237deda66dfd"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","hash":"6e52e5a672d8649891fa21dd12ae71a5"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","hash":"4e6447691c9509f7acdbf8a931a85ca1"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_map.dart","hash":"13db4f76c4c3dacee24311db33dffb5a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","hash":"260ba36edc12d44f9845cd95d3d3d978"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart","hash":"0fd5a2dcbf232cdb30ed61dc9e3ad75f"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","hash":"5d006309f09c22bcfe08fa4b4732d737"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE","hash":"a60894397335535eb10b54e2fff9f265"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector2.dart","hash":"07f2ca6b60ab48d2f0010a3b5e2dc6b7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","hash":"875166f697143df0b06b67e573e312c8"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","hash":"7f788ddb2a13b5ed55d98437401bad93"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","hash":"3eb81fd6acbc6c96a89c4f53013bd427"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","hash":"38fda81f2ecfd4d859e7850cba0aa5b2"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","hash":"f5ffaf980955cb1d884e71953d26d7a0"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","hash":"75b03ef0d20c201194cfdd2336d85e30"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","hash":"2e3c3bc06042ccef23762101a5abe6c7"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quad.dart","hash":"a5ad06cbd4a6af4cd4615a52407a7bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","hash":"5fdbebb1f207cf85a928c60b6f8bb299"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","hash":"d3a772be65c4716482691c07d8a38087"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart","hash":"eafac7ccd4280dcc85ea2d88fa8eaa46"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","hash":"1af13844c1ff75027b668bdf7d9cea27"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","hash":"5013dc831f401bcb81c09a5561a55e59"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","hash":"6a70714764b9cf9503e9709f0682fb00"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","hash":"db25a70a6146aff5e5fac5bc5312c43a"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector3.dart","hash":"661ec2db8d36dc387722c417c4e6ba53"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","hash":"344b589e70ec5b7f8ebb891e0f742e6b"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","hash":"0066905b7e893f4f227978ca23cd7b25"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","hash":"db8e35c616389ee66279c05d9b6da365"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf","hash":"42d5bf7c22ac609351e84dbc39b12bf9"},{"path":"C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","hash":"718125bb95ad868d497d95c7249c8099"}]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/app.dill b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/app.dill deleted file mode 100644 index dc22a976..00000000 Binary files a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/app.dill and /dev/null differ diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/debug_android_application.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/debug_android_application.stamp deleted file mode 100644 index 3be2b232..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/debug_android_application.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\eb734ff91f9a3d7c2da54a2a998fbd0d\\app.dill","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.8.2\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.2.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.8\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD418950041"],"outputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/flutter_assets.d b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/flutter_assets.d deleted file mode 100644 index 349e0618..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/flutter_assets.d +++ /dev/null @@ -1 +0,0 @@ - C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z: C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.8.2\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.8\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD418950041 \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_dart_plugin_registrant.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_dart_plugin_registrant.stamp deleted file mode 100644 index be5876e9..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_dart_plugin_registrant.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_localizations.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_localizations.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/gen_localizations.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.d b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.d deleted file mode 100644 index 6e44ff4e..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.d +++ /dev/null @@ -1 +0,0 @@ -C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\eb734ff91f9a3d7c2da54a2a998fbd0d\\app.dill: C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\flutter_bluetooth_serial.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_deprecated.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flat_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outline_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\raised_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothState.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothBondState.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDeviceType.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDevice.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothPairingRequest.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDiscoveryResult.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothConnection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\FlutterBluetoothSerial.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\vector_math_64.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\material_color_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\frustum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\obb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\opengl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\plane.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quad.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quaternion.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\ray.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\sphere.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\third_party\\noise.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\triangle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\blend\\blend.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\cam16.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\hct.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\viewing_conditions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\core_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\tonal_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_celebi.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wsmeans.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\scheme\\scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\score\\score.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\typed_buffers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\collection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\color_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\math_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider_lab.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\src\\typed_buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\algorithms.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\canonicalized_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\comparators.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\functions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_zip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\list_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\priority_queue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\queue_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\unmodifiable_wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\empty_unmodifiable_set.dart diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.stamp b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.stamp deleted file mode 100644 index 518a332a..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/kernel_snapshot.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\flutter_bluetooth_serial.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker_deprecated.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flat_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outline_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\raised_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothState.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothBondState.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDeviceType.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDevice.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothPairingRequest.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothDiscoveryResult.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\BluetoothConnection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\lib\\FlutterBluetoothSerial.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\vector_math_64.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\material_color_utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\utilities.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\aabb3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\colors.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\error_helpers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\frustum.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\intersection_result.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\matrix4.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\obb3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\opengl.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\plane.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quad.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\quaternion.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\ray.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\sphere.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\third_party\\noise.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\triangle.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector2.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector3.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.1\\lib\\src\\vector_math_64\\vector4.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\blend\\blend.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\cam16.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\hct.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\hct\\viewing_conditions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\core_palette.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\palettes\\tonal_palette.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_celebi.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wsmeans.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\quantizer_wu.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\scheme\\scheme.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\score\\score.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\typed_buffers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\collection.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\color_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\utils\\math_utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider_lab.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.3\\lib\\quantize\\point_provider.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.0\\lib\\src\\typed_buffer.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\algorithms.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\canonicalized_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterable.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\comparators.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_map.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\equality_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\functions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\iterable_zip.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\list_extensions.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\priority_queue.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\queue_list.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\union_set_controller.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\unmodifiable_wrappers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\wrappers.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\utils.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\combined_wrappers\\combined_iterator.dart","C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.15.0\\lib\\src\\empty_unmodifiable_set.dart"],"outputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\flutter_build\\eb734ff91f9a3d7c2da54a2a998fbd0d\\app.dill"]} \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/outputs.json b/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/outputs.json deleted file mode 100644 index 195fc50a..00000000 --- a/Tracking/rudra_app/.dart_tool/flutter_build/eb734ff91f9a3d7c2da54a2a998fbd0d/outputs.json +++ /dev/null @@ -1 +0,0 @@ -["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json","C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z"] \ No newline at end of file diff --git a/Tracking/rudra_app/.dart_tool/package_config.json b/Tracking/rudra_app/.dart_tool/package_config.json deleted file mode 100644 index 0a98bff3..00000000 --- a/Tracking/rudra_app/.dart_tool/package_config.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "configVersion": 2, - "packages": [ - { - "name": "async", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.9.0", - "packageUri": "lib/", - "languageVersion": "2.14" - }, - { - "name": "boolean_selector", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "characters", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "charcode", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.3.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "clock", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "collection", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.16.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "convert", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/convert-3.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "cupertino_icons", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "fake_async", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.3.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "fixnum", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fixnum-1.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter", - "packageUri": "lib/", - "languageVersion": "2.17" - }, - { - "name": "flutter_blue", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_blue-0.8.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_bluetooth_serial", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_bluetooth_serial-0.4.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_lints", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_lints-1.0.4", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "flutter_test", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter_test", - "packageUri": "lib/", - "languageVersion": "2.17" - }, - { - "name": "lints", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/lints-1.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "matcher", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.11", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "material_color_utilities", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/material_color_utilities-0.1.4", - "packageUri": "lib/", - "languageVersion": "2.13" - }, - { - "name": "meta", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.7.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "path", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "protobuf", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/protobuf-2.0.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "rxdart", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "sky_engine", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/bin/cache/pkg/sky_engine", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "source_span", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.2", - "packageUri": "lib/", - "languageVersion": "2.14" - }, - { - "name": "stack_trace", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "stream_channel", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "string_scanner", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "term_glyph", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "test_api", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.4.9", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "typed_data", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.1", - "packageUri": "lib/", - "languageVersion": "2.12" - }, - { - "name": "vector_math", - "rootUri": "file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.2", - "packageUri": "lib/", - "languageVersion": "2.14" - }, - { - "name": "rudra_app", - "rootUri": "../", - "packageUri": "lib/", - "languageVersion": "2.16" - } - ], - "generated": "2022-05-28T06:18:29.751149Z", - "generator": "pub", - "generatorVersion": "2.18.0-44.1.beta" -} diff --git a/Tracking/rudra_app/.dart_tool/package_config_subset b/Tracking/rudra_app/.dart_tool/package_config_subset deleted file mode 100644 index 622a35fa..00000000 --- a/Tracking/rudra_app/.dart_tool/package_config_subset +++ /dev/null @@ -1,129 +0,0 @@ -async -2.14 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.9.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.9.0/lib/ -boolean_selector -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/lib/ -characters -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.2.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.2.0/lib/ -charcode -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.3.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.3.1/lib/ -clock -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/lib/ -collection -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.16.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.16.0/lib/ -convert -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/convert-3.0.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/convert-3.0.1/lib/ -cupertino_icons -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.4/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.4/lib/ -fake_async -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.3.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.3.0/lib/ -fixnum -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fixnum-1.0.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fixnum-1.0.1/lib/ -flutter_blue -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_blue-0.8.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_blue-0.8.0/lib/ -flutter_bluetooth_serial -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_bluetooth_serial-0.4.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_bluetooth_serial-0.4.0/lib/ -flutter_lints -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_lints-1.0.4/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_lints-1.0.4/lib/ -lints -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/lints-1.0.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/lints-1.0.1/lib/ -matcher -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.11/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.11/lib/ -material_color_utilities -2.13 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/material_color_utilities-0.1.4/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/material_color_utilities-0.1.4/lib/ -meta -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.7.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.7.0/lib/ -path -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.1/lib/ -protobuf -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/protobuf-2.0.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/protobuf-2.0.1/lib/ -rxdart -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/lib/ -source_span -2.14 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.2/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.2/lib/ -stack_trace -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/lib/ -stream_channel -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/lib/ -string_scanner -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/lib/ -term_glyph -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/lib/ -test_api -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.4.9/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.4.9/lib/ -typed_data -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.1/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.1/lib/ -vector_math -2.14 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.2/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.2/lib/ -sky_engine -2.12 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/bin/cache/pkg/sky_engine/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/bin/cache/pkg/sky_engine/lib/ -flutter -2.17 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter/lib/ -flutter_test -2.17 -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter_test/ -file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter_test/lib/ -rudra_app -2.16 -file:///C:/Computer/Git%20Repositories/Rudra/Tracking/rudra_app/ -file:///C:/Computer/Git%20Repositories/Rudra/Tracking/rudra_app/lib/ -2 diff --git a/Tracking/rudra_app/.dart_tool/version b/Tracking/rudra_app/.dart_tool/version deleted file mode 100644 index a0cd9f0c..00000000 --- a/Tracking/rudra_app/.dart_tool/version +++ /dev/null @@ -1 +0,0 @@ -3.1.0 \ No newline at end of file diff --git a/Tracking/rudra_app/.flutter-plugins b/Tracking/rudra_app/.flutter-plugins deleted file mode 100644 index 263bd40c..00000000 --- a/Tracking/rudra_app/.flutter-plugins +++ /dev/null @@ -1,3 +0,0 @@ -# This is a generated file; do not edit or check into version control. -flutter_blue=C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\ -flutter_bluetooth_serial=C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\ diff --git a/Tracking/rudra_app/.flutter-plugins-dependencies b/Tracking/rudra_app/.flutter-plugins-dependencies deleted file mode 100644 index bc5b8948..00000000 --- a/Tracking/rudra_app/.flutter-plugins-dependencies +++ /dev/null @@ -1 +0,0 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"flutter_blue","path":"C:\\\\Computer\\\\FLUTTER\\\\flutter_windows_2.8.1-stable\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\flutter_blue-0.8.0\\\\","native_build":true,"dependencies":[]}],"android":[{"name":"flutter_blue","path":"C:\\\\Computer\\\\FLUTTER\\\\flutter_windows_2.8.1-stable\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\flutter_blue-0.8.0\\\\","native_build":true,"dependencies":[]},{"name":"flutter_bluetooth_serial","path":"C:\\\\Computer\\\\FLUTTER\\\\flutter_windows_2.8.1-stable\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\flutter_bluetooth_serial-0.4.0\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"flutter_blue","path":"C:\\\\Computer\\\\FLUTTER\\\\flutter_windows_2.8.1-stable\\\\flutter\\\\.pub-cache\\\\hosted\\\\pub.dartlang.org\\\\flutter_blue-0.8.0\\\\","native_build":true,"dependencies":[]}],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"flutter_blue","dependencies":[]},{"name":"flutter_bluetooth_serial","dependencies":[]}],"date_created":"2022-05-30 17:12:32.073562","version":"3.1.0"} \ No newline at end of file diff --git a/Tracking/rudra_app/.gitignore b/Tracking/rudra_app/.gitignore deleted file mode 100644 index 23f87f32..00000000 --- a/Tracking/rudra_app/.gitignore +++ /dev/null @@ -1,46 +0,0 @@ -# Miscellaneous -*.class -*.log -*.pyc -*.swp -.DS_Store -.atom/ -.buildlog/ -.history -.svn/ - -# IntelliJ related -*.iml -*.ipr -*.iws -.idea/ - -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ - -## Flutter/Dart/Pub related -#**/doc/api/ -#**/ios/Flutter/.last_build_id -#.dart_tool/ -#.flutter-plugins -#.flutter-plugins-dependencies -#.packages -#.pub-cache/ -#.pub/ -#/build/ - -# Web related -#lib/generated_plugin_registrant.dart -# -## Symbolication related -#app.*.symbols -# -## Obfuscation related -#app.*.map.json -# -## Android Studio will place build artifacts here -#/android/app/debug -#/android/app/profile -#/android/app/release diff --git a/Tracking/rudra_app/.metadata b/Tracking/rudra_app/.metadata deleted file mode 100644 index 356d05d6..00000000 --- a/Tracking/rudra_app/.metadata +++ /dev/null @@ -1,10 +0,0 @@ -# This file tracks properties of this Flutter project. -# Used by Flutter tool to assess capabilities and perform upgrades etc. -# -# This file should be version controlled and should not be manually edited. - -version: - revision: fdd0af78bbda27e1084ec859b27765d927cbe27e - channel: beta - -project_type: app diff --git a/Tracking/rudra_app/.packages b/Tracking/rudra_app/.packages deleted file mode 100644 index f49b428b..00000000 --- a/Tracking/rudra_app/.packages +++ /dev/null @@ -1,38 +0,0 @@ -# This file is deprecated. Tools should instead consume -# `.dart_tool/package_config.json`. -# -# For more info see: https://dart.dev/go/dot-packages-deprecation -# -# Generated by pub on 2022-05-28 11:48:29.731158. -async:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.9.0/lib/ -boolean_selector:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/lib/ -characters:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.2.0/lib/ -charcode:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.3.1/lib/ -clock:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/lib/ -collection:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.16.0/lib/ -convert:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/convert-3.0.1/lib/ -cupertino_icons:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.4/lib/ -fake_async:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.3.0/lib/ -fixnum:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fixnum-1.0.1/lib/ -flutter:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter/lib/ -flutter_blue:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_blue-0.8.0/lib/ -flutter_bluetooth_serial:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_bluetooth_serial-0.4.0/lib/ -flutter_lints:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_lints-1.0.4/lib/ -flutter_test:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/packages/flutter_test/lib/ -lints:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/lints-1.0.1/lib/ -matcher:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.11/lib/ -material_color_utilities:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/material_color_utilities-0.1.4/lib/ -meta:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.7.0/lib/ -path:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.1/lib/ -protobuf:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/protobuf-2.0.1/lib/ -rxdart:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/rxdart-0.26.0/lib/ -sky_engine:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/bin/cache/pkg/sky_engine/lib/ -source_span:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.2/lib/ -stack_trace:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/lib/ -stream_channel:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/lib/ -string_scanner:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/lib/ -term_glyph:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/lib/ -test_api:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.4.9/lib/ -typed_data:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.1/lib/ -vector_math:file:///C:/Computer/FLUTTER/flutter_windows_2.8.1-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.2/lib/ -rudra_app:lib/ diff --git a/Tracking/rudra_app/README.md b/Tracking/rudra_app/README.md deleted file mode 100644 index 8c101a75..00000000 --- a/Tracking/rudra_app/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# rudra_app - -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -A few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) - -For help getting started with Flutter, view our -[online documentation](https://flutter.dev/docs), which offers tutorials, -samples, guidance on mobile development, and a full API reference. diff --git a/Tracking/rudra_app/analysis_options.yaml b/Tracking/rudra_app/analysis_options.yaml deleted file mode 100644 index 61b6c4de..00000000 --- a/Tracking/rudra_app/analysis_options.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# This file configures the analyzer, which statically analyzes Dart code to -# check for errors, warnings, and lints. -# -# The issues identified by the analyzer are surfaced in the UI of Dart-enabled -# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be -# invoked from the command line by running `flutter analyze`. - -# The following line activates a set of recommended lints for Flutter apps, -# packages, and plugins designed to encourage good coding practices. -include: package:flutter_lints/flutter.yaml - -linter: - # The lint rules applied to this project can be customized in the - # section below to disable rules from the `package:flutter_lints/flutter.yaml` - # included above or to enable additional rules. A list of all available lints - # and their documentation is published at - # https://dart-lang.github.io/linter/lints/index.html. - # - # Instead of disabling a lint rule for the entire project in the - # section below, it can also be suppressed for a single line of code - # or a specific dart file by using the `// ignore: name_of_lint` and - # `// ignore_for_file: name_of_lint` syntax on the line or in the file - # producing the lint. - rules: - # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule - -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options diff --git a/Tracking/rudra_app/android/.gitignore b/Tracking/rudra_app/android/.gitignore deleted file mode 100644 index 6f568019..00000000 --- a/Tracking/rudra_app/android/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -gradle-wrapper.jar -/.gradle -/captures/ -/gradlew -/gradlew.bat -/local.properties -GeneratedPluginRegistrant.java - -# Remember to never publicly share your keystore. -# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app -key.properties -**/*.keystore -**/*.jks diff --git a/Tracking/rudra_app/android/app/build.gradle b/Tracking/rudra_app/android/app/build.gradle deleted file mode 100644 index 5ff6220b..00000000 --- a/Tracking/rudra_app/android/app/build.gradle +++ /dev/null @@ -1,57 +0,0 @@ -def localProperties = new Properties() -def localPropertiesFile = rootProject.file('local.properties') -if (localPropertiesFile.exists()) { - localPropertiesFile.withReader('UTF-8') { reader -> - localProperties.load(reader) - } -} - -def flutterRoot = localProperties.getProperty('flutter.sdk') -if (flutterRoot == null) { - throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") -} - -def flutterVersionCode = localProperties.getProperty('flutter.versionCode') -if (flutterVersionCode == null) { - flutterVersionCode = '1' -} - -def flutterVersionName = localProperties.getProperty('flutter.versionName') -if (flutterVersionName == null) { - flutterVersionName = '1.0' -} - -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" - -android { - compileSdkVersion flutter.compileSdkVersion - - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - - defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "com.example.rudra_app" - minSdkVersion 19 - //minSdkVersion flutter.minSdkVersion - targetSdkVersion flutter.targetSdkVersion - versionCode flutterVersionCode.toInteger() - versionName flutterVersionName - } - - buildTypes { - release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. - signingConfig signingConfigs.debug - } - } -} - -flutter { - source '../..' -} diff --git a/Tracking/rudra_app/android/app/src/debug/AndroidManifest.xml b/Tracking/rudra_app/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index 2bd4871b..00000000 --- a/Tracking/rudra_app/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/Tracking/rudra_app/android/app/src/main/AndroidManifest.xml b/Tracking/rudra_app/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index 16e13499..00000000 --- a/Tracking/rudra_app/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tracking/rudra_app/android/app/src/main/java/com/example/rudra_app/MainActivity.java b/Tracking/rudra_app/android/app/src/main/java/com/example/rudra_app/MainActivity.java deleted file mode 100644 index 857526bd..00000000 --- a/Tracking/rudra_app/android/app/src/main/java/com/example/rudra_app/MainActivity.java +++ /dev/null @@ -1,6 +0,0 @@ -package com.example.rudra_app; - -import io.flutter.embedding.android.FlutterActivity; - -public class MainActivity extends FlutterActivity { -} diff --git a/Tracking/rudra_app/android/app/src/main/res/drawable-v21/launch_background.xml b/Tracking/rudra_app/android/app/src/main/res/drawable-v21/launch_background.xml deleted file mode 100644 index f74085f3..00000000 --- a/Tracking/rudra_app/android/app/src/main/res/drawable-v21/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/Tracking/rudra_app/android/app/src/main/res/drawable/launch_background.xml b/Tracking/rudra_app/android/app/src/main/res/drawable/launch_background.xml deleted file mode 100644 index 304732f8..00000000 --- a/Tracking/rudra_app/android/app/src/main/res/drawable/launch_background.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/Tracking/rudra_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/Tracking/rudra_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index db77bb4b..00000000 Binary files a/Tracking/rudra_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/Tracking/rudra_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/Tracking/rudra_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index 17987b79..00000000 Binary files a/Tracking/rudra_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/Tracking/rudra_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/Tracking/rudra_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index 09d43914..00000000 Binary files a/Tracking/rudra_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/Tracking/rudra_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/Tracking/rudra_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index d5f1c8d3..00000000 Binary files a/Tracking/rudra_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/Tracking/rudra_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/Tracking/rudra_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index 4d6372ee..00000000 Binary files a/Tracking/rudra_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/Tracking/rudra_app/android/app/src/main/res/values-night/styles.xml b/Tracking/rudra_app/android/app/src/main/res/values-night/styles.xml deleted file mode 100644 index 3db14bb5..00000000 --- a/Tracking/rudra_app/android/app/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/Tracking/rudra_app/android/app/src/main/res/values/styles.xml b/Tracking/rudra_app/android/app/src/main/res/values/styles.xml deleted file mode 100644 index d460d1e9..00000000 --- a/Tracking/rudra_app/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/Tracking/rudra_app/android/app/src/profile/AndroidManifest.xml b/Tracking/rudra_app/android/app/src/profile/AndroidManifest.xml deleted file mode 100644 index 2bd4871b..00000000 --- a/Tracking/rudra_app/android/app/src/profile/AndroidManifest.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/Tracking/rudra_app/android/build.gradle b/Tracking/rudra_app/android/build.gradle deleted file mode 100644 index 4256f917..00000000 --- a/Tracking/rudra_app/android/build.gradle +++ /dev/null @@ -1,31 +0,0 @@ -buildscript { - ext.kotlin_version = '1.6.10' - repositories { - google() - mavenCentral() - } - - dependencies { - classpath 'com.android.tools.build:gradle:4.1.0' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - } -} - -allprojects { - repositories { - google() - mavenCentral() - } -} - -rootProject.buildDir = '../build' -subprojects { - project.buildDir = "${rootProject.buildDir}/${project.name}" -} -subprojects { - project.evaluationDependsOn(':app') -} - -task clean(type: Delete) { - delete rootProject.buildDir -} diff --git a/Tracking/rudra_app/android/gradle.properties b/Tracking/rudra_app/android/gradle.properties deleted file mode 100644 index 94adc3a3..00000000 --- a/Tracking/rudra_app/android/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -org.gradle.jvmargs=-Xmx1536M -android.useAndroidX=true -android.enableJetifier=true diff --git a/Tracking/rudra_app/android/gradle/wrapper/gradle-wrapper.properties b/Tracking/rudra_app/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index bc6a58af..00000000 --- a/Tracking/rudra_app/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Fri Jun 23 08:50:38 CEST 2017 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/Tracking/rudra_app/android/settings.gradle b/Tracking/rudra_app/android/settings.gradle deleted file mode 100644 index 44e62bcf..00000000 --- a/Tracking/rudra_app/android/settings.gradle +++ /dev/null @@ -1,11 +0,0 @@ -include ':app' - -def localPropertiesFile = new File(rootProject.projectDir, "local.properties") -def properties = new Properties() - -assert localPropertiesFile.exists() -localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } - -def flutterSdkPath = properties.getProperty("flutter.sdk") -assert flutterSdkPath != null, "flutter.sdk not set in local.properties" -apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/Tracking/rudra_app/assets/photo.jpg b/Tracking/rudra_app/assets/photo.jpg deleted file mode 100644 index f32eb0b2..00000000 Binary files a/Tracking/rudra_app/assets/photo.jpg and /dev/null differ diff --git a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/_composite.stamp b/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/_composite.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/_composite.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_dart_plugin_registrant.stamp b/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_dart_plugin_registrant.stamp deleted file mode 100644 index be5876e9..00000000 --- a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_dart_plugin_registrant.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_localizations.stamp b/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_localizations.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/build/00c1e8d6dec6cd0ab22d30a7b24b2aa9/gen_localizations.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/4f2a58af27abc49ecf55570043bbf938.cache.dill.track.dill b/Tracking/rudra_app/build/4f2a58af27abc49ecf55570043bbf938.cache.dill.track.dill deleted file mode 100644 index 3a3e54e1..00000000 Binary files a/Tracking/rudra_app/build/4f2a58af27abc49ecf55570043bbf938.cache.dill.track.dill and /dev/null differ diff --git a/Tracking/rudra_app/build/app/generated/source/buildConfig/debug/com/example/rudra_app/BuildConfig.java b/Tracking/rudra_app/build/app/generated/source/buildConfig/debug/com/example/rudra_app/BuildConfig.java deleted file mode 100644 index 1a257450..00000000 --- a/Tracking/rudra_app/build/app/generated/source/buildConfig/debug/com/example/rudra_app/BuildConfig.java +++ /dev/null @@ -1,12 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package com.example.rudra_app; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String APPLICATION_ID = "com.example.rudra_app"; - public static final String BUILD_TYPE = "debug"; - public static final int VERSION_CODE = 1; - public static final String VERSION_NAME = "1.0.0"; -} diff --git a/Tracking/rudra_app/build/app/intermediates/annotation_processor_list/debug/annotationProcessors.json b/Tracking/rudra_app/build/app/intermediates/annotation_processor_list/debug/annotationProcessors.json deleted file mode 100644 index 9e26dfee..00000000 --- a/Tracking/rudra_app/build/app/intermediates/annotation_processor_list/debug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/compatible_screen_manifest/debug/output-metadata.json b/Tracking/rudra_app/build/app/intermediates/compatible_screen_manifest/debug/output-metadata.json deleted file mode 100644 index cc0222c5..00000000 --- a/Tracking/rudra_app/build/app/intermediates/compatible_screen_manifest/debug/output-metadata.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "COMPATIBLE_SCREEN_MANIFEST", - "kind": "Directory" - }, - "applicationId": "com.example.rudra_app", - "variantName": "debug", - "elements": [] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/Tracking/rudra_app/build/app/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar deleted file mode 100644 index 5ec78b24..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/AssetManifest.json.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/AssetManifest.json.jar deleted file mode 100644 index 639b4401..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/AssetManifest.json.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/FontManifest.json.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/FontManifest.json.jar deleted file mode 100644 index 0ee7af71..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/FontManifest.json.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/NOTICES.Z.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/NOTICES.Z.jar deleted file mode 100644 index 7ea75a28..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/NOTICES.Z.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/assets/photo.jpg.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/assets/photo.jpg.jar deleted file mode 100644 index e35c6a8b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/assets/photo.jpg.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/fonts/MaterialIcons-Regular.otf.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/fonts/MaterialIcons-Regular.otf.jar deleted file mode 100644 index 0923b395..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/fonts/MaterialIcons-Regular.otf.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/isolate_snapshot_data.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/isolate_snapshot_data.jar deleted file mode 100644 index 691dec29..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/isolate_snapshot_data.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/kernel_blob.bin.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/kernel_blob.bin.jar deleted file mode 100644 index 0cee84f4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/kernel_blob.bin.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf.jar deleted file mode 100644 index f39730fe..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/vm_snapshot_data.jar b/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/vm_snapshot_data.jar deleted file mode 100644 index 1c62409a..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/compressed_assets/debug/out/assets/flutter_assets/vm_snapshot_data.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/dex/debug/mergeDexDebug/classes.dex b/Tracking/rudra_app/build/app/intermediates/dex/debug/mergeDexDebug/classes.dex deleted file mode 100644 index ca470a16..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/dex/debug/mergeDexDebug/classes.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/dex_archive_input_jar_hashes/debug/out b/Tracking/rudra_app/build/app/intermediates/dex_archive_input_jar_hashes/debug/out deleted file mode 100644 index fc587b1a..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/dex_archive_input_jar_hashes/debug/out and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/dex_number_of_buckets_file/debug/out b/Tracking/rudra_app/build/app/intermediates/dex_number_of_buckets_file/debug/out deleted file mode 100644 index 301160a9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/dex_number_of_buckets_file/debug/out +++ /dev/null @@ -1 +0,0 @@ -8 \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/external_libs_dex/debug/mergeExtDexDebug/classes.dex b/Tracking/rudra_app/build/app/intermediates/external_libs_dex/debug/mergeExtDexDebug/classes.dex deleted file mode 100644 index ccb51f9a..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/external_libs_dex/debug/mergeExtDexDebug/classes.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/.last_build_id b/Tracking/rudra_app/build/app/intermediates/flutter/debug/.last_build_id deleted file mode 100644 index 4c090e8b..00000000 --- a/Tracking/rudra_app/build/app/intermediates/flutter/debug/.last_build_id +++ /dev/null @@ -1 +0,0 @@ -0e9c33e66046e605629120a573dad4df \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.json b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.json deleted file mode 100644 index f92a4350..00000000 --- a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/AssetManifest.json +++ /dev/null @@ -1 +0,0 @@ -{"assets/photo.jpg":["assets/photo.jpg"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json deleted file mode 100644 index 464ab588..00000000 --- a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/FontManifest.json +++ /dev/null @@ -1 +0,0 @@ -[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z deleted file mode 100644 index 4542a9d9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/NOTICES.Z and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/assets/photo.jpg b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/assets/photo.jpg deleted file mode 100644 index f32eb0b2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/assets/photo.jpg and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf deleted file mode 100644 index de28db84..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/fonts/MaterialIcons-Regular.otf and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data deleted file mode 100644 index 8a408aa3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/isolate_snapshot_data and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin deleted file mode 100644 index 57271af3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/kernel_blob.bin and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf deleted file mode 100644 index 79ba7ea0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data deleted file mode 100644 index 8d6fd783..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_assets/vm_snapshot_data and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_build.d b/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_build.d deleted file mode 100644 index 6d54092f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/flutter/debug/flutter_build.d +++ /dev/null @@ -1 +0,0 @@ - C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\AssetManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\FontManifest.json C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\NOTICES.Z C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\assets/photo.jpg C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\fonts/MaterialIcons-Regular.otf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\isolate_snapshot_data C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\kernel_blob.bin C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\flutter\\debug\\flutter_assets\\vm_snapshot_data: C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\async-2.9.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\boolean_selector-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\characters_impl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\breaks.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\characters-1.2.0\\lib\\src\\grapheme_clusters\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\charcode-1.3.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\clock-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\collection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\algorithms.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\boollist.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\canonicalized_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_iterator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\combined_wrappers\\combined_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\comparators.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\empty_unmodifiable_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\equality_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\functions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\iterable_zip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\list_extensions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\priority_queue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\queue_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\union_set_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\unmodifiable_wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\collection-1.16.0\\lib\\src\\wrappers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\convert.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\byte_accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\charcodes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\codepage.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\hex\\encoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\identity_codec.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\percent\\encoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\string_accumulator_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\convert-3.0.1\\lib\\src\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cupertino_icons-1.0.4\\assets\\CupertinoIcons.ttf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fake_async-1.3.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\fixnum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int32.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\int64.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\fixnum-1.0.1\\lib\\src\\intx.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\flutter_blue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pb.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\gen\\flutterblue.pbenum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_characteristic.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_descriptor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_device.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\bluetooth_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\flutter_blue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_blue-0.8.0\\lib\\src\\guid.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_bluetooth_serial-0.4.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\flutter_lints-1.0.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\lints-1.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\matcher-0.12.11\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\blend\\blend.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\cam16.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\hct.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\hct\\viewing_conditions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\material_color_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\core_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\palettes\\tonal_palette.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\point_provider_lab.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_celebi.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wsmeans.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\quantize\\quantizer_wu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\scheme\\scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\score\\score.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\color_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\material_color_utilities-0.1.4\\lib\\utils\\math_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\meta-1.7.0\\lib\\meta_meta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\path-1.8.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\protobuf.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\builder_info.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_reader.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\coded_buffer_writer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\event_plugin.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\exceptions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\extension_registry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_info.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\field_type.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_message.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\generated_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\json_parsing_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\pb_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\permissive_compare.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\proto3_json.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\protobuf_enum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\readonly_message.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\rpc_client.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\type_registry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unknown_field_set.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\unpack.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\protobuf-2.0.1\\lib\\src\\protobuf\\wire_format.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\rxdart.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\rx.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\combine_latest.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\concat_eager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\connectable_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\defer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\fork_join.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\from_callable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\merge.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\never.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\race.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\range.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\repeat.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\replay_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\retry_when.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\sequence_equal.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\switch_latest.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\timer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\using.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\value_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\streams\\zip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\behavior_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\publish_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\replay_subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\subjects\\subject.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\backpressure.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\debounce.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\pairwise.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\sample.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\throttle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\backpressure\\window.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\default_if_empty.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\delay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\dematerialize.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\distinct_unique.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\do.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\end_with_many.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\exhaust_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\flat_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\group_by.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\ignore_elements.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\interval.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\map_to.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\materialize.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\max.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\min.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\on_error_resume.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\scan.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\skip_until.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\start_with_many.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_if_empty.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\switch_map.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_last.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_until.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\take_while_inclusive.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\time_interval.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\timestamp.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\where_type.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\transformers\\with_latest_from.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\composite_subscription.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\error_and_stacktrace.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_sink.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\forwarding_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\min_max.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\notification.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\src\\utils\\value_wrapper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\streams.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\subjects.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\rxdart-0.26.0\\lib\\transformers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\source_span-1.8.2\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stack_trace-1.10.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\stream_channel-2.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\string_scanner-1.1.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\term_glyph-1.2.0\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\test_api-0.4.9\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_buffer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\src\\typed_queue.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_buffers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\typed_data-1.3.1\\lib\\typed_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\aabb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\error_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\frustum.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\intersection_result.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\matrix4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\obb3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\opengl.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\plane.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quad.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\quaternion.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\ray.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\sphere.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\third_party\\noise.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\triangle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector2.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector3.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\src\\vector_math_64\\vector4.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\vector_math-2.1.2\\lib\\vector_math_64.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\bin\\internal\\engine.version C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\LICENSE C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\cupertino.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\foundation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\gestures.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\painting.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\rendering.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\scheduler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\services.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animation_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\listener_helpers.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\animation\\tween_sequence.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\activity_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\bottom_tab_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\context_menu_action.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\form_section.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\interface_level.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\nav_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\page_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\refresh.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\route.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\search_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\sliding_segmented_control.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\tab_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_form_field_row.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_selection_toolbar_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\cupertino\\thumb_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_bitfield_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_isolates_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\_platform_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\annotations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\assertions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\bitfield.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\change_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\collections.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\consolidate_response.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\diagnostics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\isolates.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\licenses.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\node.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\observer_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\platform.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\print.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\serialization.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\stack_frame.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\synchronous_future.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\foundation\\unicode.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\arena.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\converter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\drag_details.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\eager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\events.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\force_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\gesture_settings.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\hit_test.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\long_press.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\lsq_solver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\monodrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multidrag.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\multitap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\pointer_signal_resolver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\recognizer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\resampler.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\scale.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\tap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\team.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\gestures\\velocity_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\about.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\animated_icons_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\add_event.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\arrow_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\close_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\ellipsis_search.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\event_add.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\home_menu.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\list_view.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_arrow.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_close.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\menu_home.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\pause_play.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\play_pause.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\search_ellipsis.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\animated_icons\\data\\view_list.g.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\arc.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\back_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\banner_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_app_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\bottom_sheet_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_style_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\calendar_date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\card_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\checkbox_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_action.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_choice.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_input.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\chip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\circle_avatar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\color_scheme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\curves.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_source.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\data_table_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\date_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\desktop_text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dialog_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\divider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\drawer_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\dropdown.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevated_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\elevation_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expand_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_panel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\expansion_tile_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flexible_space_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_location.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\floating_action_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\grid_tile_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icon_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\icons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_highlight.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_ripple.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_sparkle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\ink_well.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_date_picker_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\input_decorator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\list_tile_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\material_state_mixin.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\mergeable_material.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\navigation_rail_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\no_splash.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\outlined_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\page_transitions_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\paginated_data_table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\popup_menu_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\progress_indicator_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\radio_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\range_slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\refresh_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scaffold.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\scrollbar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\search.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\selectable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\shadows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\slider_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\snack_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\stepper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_list_tile.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\switch_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_bar_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tab_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tabs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_button_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_form_field.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_selection_toolbar_text_button.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\text_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\time_picker_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggle_buttons_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\toggleable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\tooltip_visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\typography.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\material\\user_accounts_drawer_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\_network_image_io.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\alignment.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\basic_types.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\beveled_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\border_radius.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\borders.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_fit.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\box_shadow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\circle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\clip.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\colors.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\continuous_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\decoration_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\edge_insets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\flutter_logo.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\fractional_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\geometry.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\gradient.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_cache.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_decoder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_resolution.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\image_stream.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\inline_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\matrix_utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\notched_shapes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\paint_utilities.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\placeholder_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\rounded_rectangle_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shader_warm_up.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\shape_decoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\stadium_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\strut_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_painter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\painting\\text_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\clamped_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\friction_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\gravity_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\spring_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\tolerance.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\physics\\utils.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_layout.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\custom_paint.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\debug_overflow_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\editable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\error.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flex.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\flow.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\layout_helper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_body.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\list_wheel_viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\mouse_tracker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\object.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\paragraph.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\proxy_sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\rotated_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\shifted_box.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_fixed_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_grid.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_multi_box_adaptor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_padding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\stack.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\table_border.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\tweens.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\viewport_offset.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\rendering\\wrap.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\priority.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\scheduler\\ticker.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_event.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\semantics\\semantics_service.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\asset_bundle.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binary_messenger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\clipboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\deferred_component.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\font_loader.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\haptic_feedback.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\hardware_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_key.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\keyboard_maps.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codec.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\message_codecs.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_cursor.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\mouse_tracking.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_channel.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\platform_views.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_android.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_fuchsia.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_ios.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_linux.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_macos.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_web.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\raw_keyboard_windows.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_channels.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_chrome.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\system_sound.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_editing_delta.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_formatter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_input.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\services\\text_layout_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\actions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_cross_fade.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\animated_switcher.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\annotated_region.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\app.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\async.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autocomplete.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\autofill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\automatic_keep_alive.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\banner.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\basic.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\binding.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\bottom_navigation_bar_item.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\color_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\constants.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\container.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\debug.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_selection_style.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\default_text_editing_shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\desktop_text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dismissible.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\display_feature_sub_screen.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\disposable_build_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\drag_target.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\draggable_scrollable_sheet.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\dual_transition_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\editable_text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\fade_in_image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_manager.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\focus_traversal.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\form.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\framework.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\gesture_detector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\grid_paper.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\heroes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\icon_theme_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_filter.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\image_icon.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\implicit_animations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_model.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\inherited_theme.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\interactive_viewer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\list_wheel_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\localizations.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\media_query.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\modal_barrier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigation_toolbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\navigator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\nested_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\notification_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\orientation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overflow_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\overscroll_indicator.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_storage.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\page_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\pages.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\performance_overlay.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\placeholder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_menu_bar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\platform_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\preferred_size.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\primary_scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\raw_keyboard_listener.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\reorderable_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\restoration_properties.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\router.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\routes.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\safe_area.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_activity.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_aware_image_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_configuration.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_controller.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_metrics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_notification_observer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_physics.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_position_with_single_context.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_simulation.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollable.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\scrollbar.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\semantics_debugger.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shared_app_data.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\shortcuts.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\single_child_scroll_view.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\size_changed_layout_notifier.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_fill.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_layout_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_persistent_header.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\sliver_prototype_extent_list.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\slotted_render_object_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\spacer.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\status_transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\table.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_editing_intents.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\text_selection_toolbar_layout_delegate.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\texture.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\ticker_provider.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\title.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\transitions.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\tween_animation_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\unique_widget.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\value_listenable_builder.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\viewport.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\visibility.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_inspector.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\widget_span.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\src\\widgets\\will_pop_scope.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter\\lib\\widgets.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\common.dart C:\\Computer\\FLUTTER\\flutter_windows_2.8.1-stable\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\icon_tree_shaker.dart C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\DOES_NOT_EXIST_RERUN_FOR_WILDCARD969337979 C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\assets\\photo.jpg C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\lib\\main.dart C:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\pubspec.yaml \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/flutter/debug/libs.jar b/Tracking/rudra_app/build/app/intermediates/flutter/debug/libs.jar deleted file mode 100644 index 3992fef7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/flutter/debug/libs.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/merge-state b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/merge-state deleted file mode 100644 index 22360512..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/merge-state and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= deleted file mode 100644 index 6ccda32b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= deleted file mode 100644 index 4a5cc3de..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= deleted file mode 100644 index 28b9e4d2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= deleted file mode 100644 index 9426e404..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= deleted file mode 100644 index b9563a88..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= deleted file mode 100644 index 8fd6cd4c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= deleted file mode 100644 index 25e19330..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= deleted file mode 100644 index eb87c390..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= deleted file mode 100644 index b8493c23..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= deleted file mode 100644 index 3992fef7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= deleted file mode 100644 index fb794be9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= deleted file mode 100644 index 7c49e1c1..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= deleted file mode 100644 index 13914543..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= deleted file mode 100644 index 0c6c64d9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= deleted file mode 100644 index d0a17a98..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= deleted file mode 100644 index 310a04af..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= deleted file mode 100644 index b3560cdd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= deleted file mode 100644 index 22bbf666..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= deleted file mode 100644 index ed509825..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= deleted file mode 100644 index a7d8208b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= deleted file mode 100644 index 66efff06..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= deleted file mode 100644 index df414ff5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= deleted file mode 100644 index 2fc01838..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= deleted file mode 100644 index 628378ab..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= deleted file mode 100644 index 189e23f2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= deleted file mode 100644 index c26eb50f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= deleted file mode 100644 index 3ba64084..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= deleted file mode 100644 index 4435f5f4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= deleted file mode 100644 index ef8c7be6..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= deleted file mode 100644 index 7f6506df..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= deleted file mode 100644 index 3f15ff81..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= deleted file mode 100644 index fd7a41fa..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= deleted file mode 100644 index ecfb50cc..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= deleted file mode 100644 index 4b56a487..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= deleted file mode 100644 index e011d685..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= deleted file mode 100644 index 5707aa88..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= deleted file mode 100644 index e717ddd7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= deleted file mode 100644 index 90923973..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= deleted file mode 100644 index facf43ed..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= deleted file mode 100644 index 4ee118cd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= deleted file mode 100644 index 6888d08f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= deleted file mode 100644 index e3c6fbd0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= deleted file mode 100644 index 33f73886..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= deleted file mode 100644 index 30d4e613..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= deleted file mode 100644 index afb71049..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= deleted file mode 100644 index 3796a09c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= deleted file mode 100644 index 9250744b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= deleted file mode 100644 index 8db9f9de..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= deleted file mode 100644 index a1967433..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= deleted file mode 100644 index 5a710026..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= deleted file mode 100644 index dbefb590..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= deleted file mode 100644 index 176918b5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= deleted file mode 100644 index b42ca4fc..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= deleted file mode 100644 index d1e38778..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= deleted file mode 100644 index e2c4774d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= deleted file mode 100644 index 8488a029..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeJavaRes/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/merge-state b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/merge-state deleted file mode 100644 index ba0d6704..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/merge-state and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= deleted file mode 100644 index 6ccda32b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+4Ge+RO92FfyUXvnEyN06tM3bn4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= deleted file mode 100644 index 4a5cc3de..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/+LnsUj41Naxu6yYTthil_4GBS8U= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= deleted file mode 100644 index 28b9e4d2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/0z5MqaDWw6sRtH_T7DwYOvhuj7c= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= deleted file mode 100644 index 9426e404..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/1TZIzUjgYB0VgP6BC29Y6oX0C8Q= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= deleted file mode 100644 index b9563a88..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/5NHpdYluJcXvtVEoycTZGPtUs78= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= deleted file mode 100644 index 8fd6cd4c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/63UcCG_2ba006ZbF9bOP1VvLQkI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= deleted file mode 100644 index 25e19330..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/7zHcpwp4hLwkoaBQUQNgaFUHFjk= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= deleted file mode 100644 index eb87c390..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9B2XD9x4SmTPv+fDUAE2YXHH0go= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= deleted file mode 100644 index b8493c23..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/9yX6i0Rs3WHQUknAs9nEfTjkr5M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= deleted file mode 100644 index 3992fef7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/AQAaGXjlq7FzTIf+FRtV57+tr6M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= deleted file mode 100644 index fb794be9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/BGlyCguOcNzpYMnT03VEY1Xjzec= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= deleted file mode 100644 index 7c49e1c1..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/CqSF6egKnpwP5+CJXWxr3ZcxgF0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= deleted file mode 100644 index 13914543..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/DsaddT8C56MppKhsENIOrYqc1_I= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= deleted file mode 100644 index 0c6c64d9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/HACldnIgRvxIY85CbosAgqjs56M= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= deleted file mode 100644 index d0a17a98..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I2P_DLD+GgMCUm13yUHWBjETqR0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= deleted file mode 100644 index 310a04af..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/I4mg9HmgUwAIm+gVzhc8KNhAlJI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= deleted file mode 100644 index b3560cdd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/J1JoQDUeH4SbsnEm7VKEU1Y83+s= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= deleted file mode 100644 index 22bbf666..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LlT_Uie0aZY5WW2_hKrnavi+mz0= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= deleted file mode 100644 index ed509825..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/LrYgIctpC2f5I_TOX6DVSTOVgOQ= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= deleted file mode 100644 index a7d8208b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NkLdlCKWLBYvC8h+pEi9ud9sqUw= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= deleted file mode 100644 index 66efff06..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/NzvWnss7kQAamxgQICHYuMeNDFI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= deleted file mode 100644 index df414ff5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/PwFtXaeW0aX6i1F5FlGh3d8wZII= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= deleted file mode 100644 index 2fc01838..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/RVyHf8qLAsSf0KpxhPYrEZQ07rU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= deleted file mode 100644 index 628378ab..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TYvx9+pMEmhuweV+Ylf6495d8f8= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= deleted file mode 100644 index 189e23f2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TZBfYUw8Y9nLsbZWbQbVw0BB2no= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= deleted file mode 100644 index c26eb50f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TlUZKxdF05Py335EUxID7g2Amb8= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= deleted file mode 100644 index 3ba64084..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TujeQ1cRf2iHLSj7drewGZbbYOY= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= deleted file mode 100644 index 4435f5f4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/TwEAsUd8ss0ahsHocTIJC2rr8Ag= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= deleted file mode 100644 index ef8c7be6..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/U2o0y6uxpwRiOQNYpys3WH7YO6A= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= deleted file mode 100644 index 7f6506df..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UA5QXriqcRpDkSliy5bmRgTzkcs= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= deleted file mode 100644 index 3f15ff81..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/UhN2pCKcLTIRIk_1ajvHYrc+Whg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= deleted file mode 100644 index fd7a41fa..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VJiidyL72SNUHKCfT+EANOqasq4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= deleted file mode 100644 index ecfb50cc..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/VVOFVEQu4jIa8xQM1YsP1sTV7Eg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= deleted file mode 100644 index 4b56a487..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/XZyPmBdpZvvRAMfR72MSg6LmuXU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= deleted file mode 100644 index e011d685..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/Za4GhrUocZGvpPVvqXd5+THqF14= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= deleted file mode 100644 index 5707aa88..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZrslKTFws0f6IW6igmsfFQtFHoM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= deleted file mode 100644 index e717ddd7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/ZxeWyQ6LHMZHf3QYkLkeXDHHH10= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= deleted file mode 100644 index 90923973..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_DD2ldRg9A90+a58OUf3DgD19F4= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= deleted file mode 100644 index facf43ed..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_GqdwjoVNJ42EzU4H9i7aBNYU9k= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= deleted file mode 100644 index 4ee118cd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/_T29mUi5WOKd8etqGcOWUdJdnLM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= deleted file mode 100644 index 6888d08f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/a3iUCBvStfGkNoPh3Y4aS9wNzvM= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= deleted file mode 100644 index e3c6fbd0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/aj_YXZDOU2MVlRAUgb6lxQlaTwc= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= deleted file mode 100644 index 33f73886..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/jakKBqMDPHQQqhsrwfSBZxUlmlo= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= deleted file mode 100644 index 30d4e613..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/k+vXborGRmvjRdF5Avk_n4yzTJg= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= deleted file mode 100644 index afb71049..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/oVzugSm7pXq_DqIGefGimXhKIYk= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= deleted file mode 100644 index 3796a09c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/rfJaO9sr6o2SdeW6ComxGpLZc1Q= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= deleted file mode 100644 index 9250744b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/t23UvILa7UpweOvPf9ZR1Pyn4HI= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= deleted file mode 100644 index 8db9f9de..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/tEBKw+OBWvYMlvAniAQsUnzCaKc= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= deleted file mode 100644 index a1967433..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uSIWSwJ_RyLmeqZf6Xc5dLBAtOU= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= deleted file mode 100644 index 5a710026..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/uihhP4bGq7cf4lgwK_UunLFxhRE= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= deleted file mode 100644 index dbefb590..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/v8cLA15dcxhHeb_BQw5NeaBr724= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= deleted file mode 100644 index 176918b5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/vE470NGgr_hYW0Qg1MeNluKvd8Y= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= deleted file mode 100644 index b42ca4fc..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/x9cWfR5_OfzTYd5bm0pmIYJun_w= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= deleted file mode 100644 index d1e38778..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xAXtcAMDT7nqbrEcDGswFVZojws= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= deleted file mode 100644 index e2c4774d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/xUTtDEVMxW9gQCsvdwK+JdB0IRA= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= b/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= deleted file mode 100644 index 8488a029..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/debug-mergeNativeLibs/zip-cache/yxKymqo4aUk+UQTFFSKOMNZuD0A= and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugAssets/merger.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugAssets/merger.xml deleted file mode 100644 index e7dc06e8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index 06dd6c58..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/compile-file-map.properties deleted file mode 100644 index 92a06e90..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/compile-file-map.properties +++ /dev/null @@ -1,8 +0,0 @@ -#Sat May 28 11:49:29 IST 2022 -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher.png.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\drawable\\launch_background.xml=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\drawable_launch_background.xml.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher.png.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\drawable-v21\\launch_background.xml=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\drawable-v21_launch_background.xml.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher.png=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher.png.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher.png=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher.png.flat -C\:\\Computer\\Git\ Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher.png=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher.png.flat diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml deleted file mode 100644 index 304fd2e6..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Gaan na tuisskerm" - "Gaan op" - "Nog opsies" - "Klaar" - "Sien alles" - "Kies \'n program" - "AF" - "AAN" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Funksie+" - "Meta+" - "Shift+" - "spasiebalk" - "Simbool+" - "Kieslys+" - "Soek …" - "Vee navraag uit" - "Soektognavraag" - "Soek" - "Dien navraag in" - "Stemsoektog" - "Deel met" - "Deel met %s" - "Vou in" - "Soek" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml deleted file mode 100644 index 88b54b75..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "መነሻ ዳስስ" - "ወደ ላይ ያስሱ" - "ተጨማሪ አማራጮች" - "ተከናውኗል" - "ሁሉንም ይመልከቱ" - "አንድ መተግበሪያ ይምረጡ" - "አጥፋ" - "አብራ" - "Alt+" - "Ctrl+" - "ሰርዝ" - "enter" - "Function+" - "Meta+" - "Shift+" - "ክፍተት" - "Sym+" - "Menu+" - "ይፈልጉ…" - "መጠይቅ አጽዳ" - "የፍለጋ መጠይቅ" - "ፍለጋ" - "መጠይቅ አስገባ" - "የድምጽ ፍለጋ" - "አጋራ በ" - "ለ%s አጋራ" - "ሰብስብ" - "ፍለጋ" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml deleted file mode 100644 index 8aaa5edf..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "التوجه إلى المنزل" - "التنقل إلى أعلى" - "خيارات أكثر" - "تم" - "عرض الكل" - "اختيار تطبيق" - "إيقاف" - "تفعيل" - "Alt+" - "Ctrl+" - "حذف" - "enter" - "Function+" - "Meta+" - "Shift+" - "فضاء" - "Sym+" - "القائمة+" - "بحث…" - "محو طلب البحث" - "طلب بحث" - "البحث" - "إرسال طلب البحث" - "بحث صوتي" - "مشاركة مع" - "مشاركة مع %s" - "تصغير" - "البحث" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml deleted file mode 100644 index e2060749..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "গৃহ পৃষ্ঠালৈ যাওক" - "ওপৰলৈ যাওক" - "অধিক বিকল্প" - "সম্পন্ন হ’ল" - "সকলো চাওক" - "কোনো এপ্ বাছনি কৰক" - "অফ" - "অন" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "সন্ধান কৰক…" - "সন্ধান কৰা প্ৰশ্ন মচক" - "সন্ধান কৰা প্ৰশ্ন" - "Search" - "প্ৰশ্ন দাখিল কৰক" - "কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান" - "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" - "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" - "সংকোচন কৰক" - "Search" - "৯৯৯+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml deleted file mode 100644 index 8f277891..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Əsas səhifəyə keçin" - "Yuxarı keçin" - "Digər seçimlər" - "Hazırdır" - "Hamısına baxın" - "Tətbiq seçin" - "DEAKTİV" - "AKTİV" - "Alt+" - "Ctrl+" - "silin" - "daxil olun" - "Funksiya+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menyu+" - "Axtarış..." - "Sorğunu silin" - "Axtarış sorğusu" - "Axtarın" - "Sorğunu göndərin" - "Səsli axtarış" - "Paylaşın" - "%s ilə paylaşın" - "Yığcamlaşdırın" - "Axtarın" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml deleted file mode 100644 index 1742b186..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Idite na početnu" - "Idite nagore" - "Još opcija" - "Gotovo" - "Prikaži sve" - "Izaberite aplikaciju" - "ISKLJUČENO" - "UKLJUČENO" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "taster za razmak" - "Sym+" - "Menu+" - "Pretražite…" - "Obrišite upit" - "Pretražite upit" - "Pretražite" - "Pošaljite upit" - "Glasovna pretraga" - "Delite pomoću" - "Delite pomoću aplikacije %s" - "Skupi" - "Pretražite" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml deleted file mode 100644 index 0cd2a621..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Перайсці на галоўную старонку" - "Перайсці ўверх" - "Дадатковыя параметры" - "Гатова" - "Паказаць усе" - "Выберыце праграму" - "ВЫКЛ." - "УКЛ." - "Alt +" - "Ctrl +" - "Delete" - "Enter" - "Fn +" - "Meta +" - "Shift +" - "Прабел" - "Sym +" - "Меню +" - "Пошук…" - "Выдаліць запыт" - "Пошукавы запыт" - "Пошук" - "Адправіць запыт" - "Галасавы пошук" - "Абагуліць праз" - "Абагуліць праз праграму \"%s\"" - "Згарнуць" - "Пошук" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml deleted file mode 100644 index 31c32cb7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Навигиране към началния екран" - "Навигиране нагоре" - "Още опции" - "Готово" - "Преглед на всички" - "Изберете приложение" - "ИЗКЛ." - "ВКЛ." - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "клавиша за интервал" - "Sym+" - "Menu+" - "Търсете…" - "Изчистване на заявката" - "Заявка за търсене" - "Търсене" - "Изпращане на заявката" - "Гласово търсене" - "Споделяне със:" - "Споделяне със: %s" - "Свиване" - "Търсене" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml deleted file mode 100644 index 65c84bef..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "হোমে নেভিগেট করুন" - "উপরে নেভিগেট করুন" - "আরও বিকল্প" - "হয়ে গেছে" - "সবগুলি দেখুন" - "একটি অ্যাপ বেছে নিন" - "বন্ধ আছে" - "চালু করুন" - "Alt+" - "Ctrl+" - "মুছুন" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "সার্চ করুন…" - "কোয়েরি মুছে ফেলুন" - "সার্চ কোয়েরি" - "সার্চ করুন" - "কোয়েরি জমা দিন" - "ভয়েস সার্চ করুন" - "শেয়ার করুন" - "%s-এর সাথে শেয়ার করুন" - "সঙ্কুচিত করুন" - "সার্চ করুন" - "৯৯৯+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml deleted file mode 100644 index 008ce54f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Vratite se na početnu stranicu" - "Idi gore" - "Više opcija" - "Gotovo" - "Prikaži sve" - "Odaberite aplikaciju" - "ISKLJUČENO" - "UKLJUČENO" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "razmak" - "Sym+" - "Menu+" - "Pretražite..." - "Obriši upit" - "Pretraži upit" - "Pretraži" - "Pošalji upit" - "Glasovno pretraživanje" - "Dijeli sa" - "Dijeli putem aplikacije %s" - "Suzi" - "Pretražite" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml deleted file mode 100644 index c47fac87..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navega fins a la pàgina d\'inici" - "Navega cap amunt" - "Més opcions" - "Fet" - "Mostra-ho tot" - "Selecciona una aplicació" - "DESACTIVA" - "ACTIVA" - "Alt+" - "Ctrl+" - "Supr" - "Retorn" - "Funció+" - "Meta+" - "Maj+" - "Espai" - "Sym+" - "Menú+" - "Cerca…" - "Esborra la consulta" - "Consulta de cerca" - "Cerca" - "Envia la consulta" - "Cerca per veu" - "Comparteix amb" - "Comparteix amb %s" - "Replega" - "Cerca" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml deleted file mode 100644 index 606075a2..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Přejít na plochu" - "Přejít nahoru" - "Další možnosti" - "Hotovo" - "Zobrazit vše" - "Vybrat aplikaci" - "VYP" - "ZAP" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Fn+" - "Meta+" - "Shift+" - "mezerník" - "Sym+" - "Menu+" - "Vyhledat…" - "Smazat dotaz" - "Dotaz pro vyhledávání" - "Hledat" - "Odeslat dotaz" - "Hlasové vyhledávání" - "Sdílet s" - "Sdílet s aplikací %s" - "Sbalit" - "Hledat" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml deleted file mode 100644 index 6c4307ec..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Find hjem" - "Gå op" - "Flere valgmuligheder" - "Udfør" - "Se alle" - "Vælg en app" - "FRA" - "TIL" - "Alt+" - "Ctrl+" - "slet" - "enter" - "Fn+" - "Meta+" - "Shift+" - "mellemrum" - "Sym+" - "Menu+" - "Søg…" - "Ryd forespørgsel" - "Søgeforespørgsel" - "Søg" - "Indsend forespørgsel" - "Talesøgning" - "Del med" - "Del med %s" - "Skjul" - "Søg" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml deleted file mode 100644 index a96e8700..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Zur Startseite" - "Nach oben" - "Weitere Optionen" - "Fertig" - "Alle anzeigen" - "App auswählen" - "AUS" - "AN" - "Alt +" - "Strg +" - "Löschen" - "Eingabetaste" - "Funktionstaste +" - "Meta-Taste +" - "Umschalttaste +" - "Leertaste" - "Sym-Taste +" - "Menütaste +" - "Suchen…" - "Suchanfrage löschen" - "Suchanfrage" - "Suche" - "Anfrage senden" - "Sprachsuche" - "Teilen mit" - "Mit %s teilen" - "Minimieren" - "Suche" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml deleted file mode 100644 index 4ebd7801..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Πλοήγηση στην αρχική σελίδα" - "Πλοήγηση προς τα επάνω" - "Περισσότερες επιλογές" - "Τέλος" - "Εμφάνιση όλων" - "Επιλέξτε μια εφαρμογή" - "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" - "ΕΝΕΡΓΟΠΟΙΗΣΗ" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "διάστημα" - "Sym+" - "Menu+" - "Αναζήτηση…" - "Διαγραφή ερωτήματος" - "Ερώτημα αναζήτησης" - "Αναζήτηση" - "Υποβολή ερωτήματος" - "Φωνητική αναζήτηση" - "Κοινοποίηση σε" - "Κοινοποίηση στην εφαρμογή %s" - "Σύμπτυξη" - "Αναζήτηση" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml deleted file mode 100644 index 78c5a566..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navigate home" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml deleted file mode 100644 index 78c5a566..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navigate home" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml deleted file mode 100644 index 78c5a566..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navigate home" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml deleted file mode 100644 index 78c5a566..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navigate home" - "Navigate up" - "More options" - "Done" - "See all" - "Choose an app" - "OFF" - "ON" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "Search…" - "Clear query" - "Search query" - "Search" - "Submit query" - "Voice search" - "Share with" - "Share with %s" - "Collapse" - "Search" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml deleted file mode 100644 index 14b21fa8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‎‎‎‎‏‏‎‏‎‏‏‎‎‏‎‎‎‏‎‏‎‏‏‏‎‏‎‎‎‎‏‏‎‏‏‏‏‏‏‎‎Navigate home‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‏‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‎‎‏‏‏‎‎‎‎‎Navigate up‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‎‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‏‎More options‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‎‎‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‎‎‏‏‏‎‎‎‎‏‎‎‎‏‏‏‎‎‏‎‎‎‏‎‎‎‎‎Done‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‎‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‏‎‎‎‎‏‏‎‏‏‏‎‎‎‎‏‏‏‎‎‏‎‎‎‎‏‏‏‎‏‏‎‏‎‏‎‏‎‎‎‎‏‎See all‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‎‏‎‏‎‎‏‏‎‏‏‎‏‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‎‏‎‎‏‎‏‎‎‎‎‎‎‎‎‎‎Choose an app‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‎‏‎‎‎‏‏‏‎‏‏‎‎‏‏‎‏‏‎‏‎‎‎‎‎‏‏‎‏‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‎‏‏‎OFF‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‎‎‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎ON‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‏‎‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‎‎Alt+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‎‏‏‎‏‏‎‏‎‏‏‎‎‎‎‎‏‎‏‎‏‎‎‏‏‏‏‎‎‏‎‎‎‏‎‎‏‎‏‎‎‎‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‎Ctrl+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‎‏‎‎‎‎‏‎‎‏‎‏‏‎‏‏‎‏‎‏‏‏‏‏‎‏‏‎‎‏‎‏‎‎‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎delete‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‎‏‎‏‏‏‎‏‎‏‏‏‏‏‏‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‎‎‏‏‎enter‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‎‎‏‏‎‏‎‏‎‎‎‎‎‏‏‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‏‎‎‏‏‎‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‎‏‏‏‎Function+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‎‏‏‎‏‏‎‏‏‏‎‎‎‏‎‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‎‎‏‎‎‎‎‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‎‎Meta+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‎‏‏‏‎‎‏‏‎‏‎‏‏‎‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‏‎‎‏‎‎‎‏‏‎‎‎‎‏‏‎Shift+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‏‎‎‎‎‎‎‎‏‏‎‏‏‎‎‎‏‏‎‎‏‎‎‎‏‏‎‏‎‎‎‎‏‎‏‏‎‎space‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‎‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‏‏‏‏‎‏‎‎‎‎‎‎‎‎‎‎‎‏‎‎‎‏‎‎‏‏‎‏‏‏‎‎Sym+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‎‎‎‏‏‏‎‏‏‏‏‎‎‎‎‎‏‎‎‎‏‎‏‏‏‏‎‏‎‏‏‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‎‎Menu+‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‎‎‎‎‎‎‏‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎‏‎‎‎‏‎‎‎‏‏‏‏‏‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‏‏‎‏‎‎‎Search…‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‏‏‏‎‏‎‏‏‎‏‎‏‎‎‎‏‎‎‏‏‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‏‏‏‎‎‏‏‎Clear query‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‎‎‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‎‎‎‎‎‎‏‎‏‎‎‏‏‏‎‏‏‎‏‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‏‎‏‏‎‏‏‎Search query‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‏‏‎‎‎‎‎‎‎‎‎‏‏‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‏‏‎‎‎‎Search‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‎‎‏‎‏‎‎‎‎‏‎‎‏‏‏‏‎‎‎‎‏‎‏‏‎‏‎‏‎‏‎‏‏‎‏‏‏‎‎‎‏‏‏‏‏‎‏‏‎‎‏‏‎‏‏‏‏‏‎Submit query‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‎‏‏‎‎‎‏‎‏‏‏‏‏‎‏‏‎‎‎‏‏‎‏‏‎‏‎‎‎‎‏‎‎‎‏‎‎‏‎‏‏‏‎Voice search‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‎‏‎‏‎‏‎‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‏‎‏‎‎‏‎‏‏‏‏‎‏‏‎‏‏‏‎Share with‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‎‏‎‏‎‏‎‏‏‎‎‎‏‏‎‏‏‏‎‎‏‎‏‎‎‏‎‏‏‏‎‎‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‏‎‏‎‎‏‏‎‏‏‏‎‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎Collapse‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‎‏‎‏‏‎‎‏‎‏‎‎‏‎‎‏‎‎‎‏‎‏‏‎‎‏‎‏‎‏‏‎‎‎Search‎‏‎‎‏‎" - "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml deleted file mode 100644 index 47c7e5c6..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Navegar a la página principal" - "Navegar hacia arriba" - "Más opciones" - "Listo" - "Ver todas" - "Elegir una app" - "DESACTIVAR" - "ACTIVAR" - "Alt+" - "Ctrl+" - "borrar" - "intro" - "Función+" - "Meta+" - "Mayúscula+" - "espacio" - "Sym+" - "Menú+" - "Buscar…" - "Borrar consulta" - "Búsqueda" - "Buscar" - "Enviar consulta" - "Búsqueda por voz" - "Compartir con" - "Compartir con %s" - "Contraer" - "Buscar" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml deleted file mode 100644 index 3de25517..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Ir a inicio" - "Desplazarse hacia arriba" - "Más opciones" - "Listo" - "Ver todo" - "Seleccionar una aplicación" - "DESACTIVADO" - "ACTIVADO" - "Alt +" - "Ctrl +" - "Suprimir" - "Intro" - "Función +" - "Meta +" - "Mayús +" - "Espacio" - "Sym +" - "Menú +" - "Buscar…" - "Borrar consulta" - "Consulta de búsqueda" - "Buscar" - "Enviar consulta" - "Búsqueda por voz" - "Compartir con" - "Compartir con %s" - "Ocultar" - "Buscar" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml deleted file mode 100644 index f0d91214..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Liigu avalehele" - "Liigu üles" - "Rohkem valikuid" - "Valmis" - "Kuva kõik" - "Valige rakendus" - "VÄLJAS" - "SEES" - "Alt +" - "Ctrl +" - "kustuta" - "sisestusklahv" - "Funktsiooniklahv +" - "Meta +" - "Tõstuklahv +" - "tühik" - "Sym +" - "Menüü +" - "Otsige …" - "Päringu tühistamine" - "Otsingupäring" - "Otsing" - "Päringu esitamine" - "Häälotsing" - "Jaga:" - "Jagamine rakendusega %s" - "Ahendamine" - "Otsing" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml deleted file mode 100644 index 1015ba8e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Joan orri nagusira" - "Joan gora" - "Aukera gehiago" - "Eginda" - "Ikusi guztiak" - "Aukeratu aplikazio bat" - "DESAKTIBATU" - "AKTIBATU" - "Alt +" - "Ktrl +" - "ezabatu" - "sartu" - "Funtzioa +" - "Meta +" - "Maius +" - "zuriunea" - "Sym +" - "Menua +" - "Bilatu…" - "Garbitu kontsulta" - "Bilaketa-kontsulta" - "Bilatu" - "Bidali kontsulta" - "Ahozko bilaketa" - "Partekatu honekin" - "Partekatu %s aplikazioarekin" - "Tolestu" - "Bilatu" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml deleted file mode 100644 index a21615c9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "پیمایش به صفحه اصلی" - "رفتن به بالا" - "گزینه‌های بیشتر" - "تمام" - "دیدن همه" - "انتخاب برنامه" - "خاموش" - "روشن" - "‎Alt+‎" - "‎Ctrl+‎" - "حذف" - "enter" - "‎Function+‎" - "‎Meta+‎" - "‎Shift+‎" - "فاصله" - "‎Sym+‎" - "منو+" - "جستجو…‏" - "پاک کردن پُرسمان" - "درخواست جستجو" - "جستجو" - "ارسال پُرسمان" - "جستجوی گفتاری" - "هم‌رسانی با" - "هم‌رسانی با %s" - "کوچک کردن" - "جستجو" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml deleted file mode 100644 index 74084f17..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Siirry etusivulle" - "Siirry ylös" - "Lisäasetukset" - "Valmis" - "Näytä kaikki" - "Valitse sovellus" - "POIS PÄÄLTÄ" - "PÄÄLLÄ" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Fn+" - "Meta+" - "Vaihto+" - "välilyönti" - "Sym+" - "Valikko+" - "Haku…" - "Tyhjennä kysely" - "Hakukysely" - "Haku" - "Lähetä kysely" - "Puhehaku" - "Jaa…" - "Jaa: %s" - "Tiivistä" - "Haku" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml deleted file mode 100644 index 935b03ee..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Revenir à l\'accueil" - "Revenir en arrière" - "Autres options" - "Terminé" - "Tout afficher" - "Sélectionner une application" - "DÉSACTIVER" - "ACTIVER" - "Alt+" - "Ctrl+" - "supprimer" - "entrée" - "Fonction+" - "Méta+" - "Maj+" - "espace" - "Sym+" - "Menu+" - "Rechercher…" - "Effacer la requête" - "Requête de recherche" - "Rechercher" - "Envoyer la requête" - "Recherche vocale" - "Partager avec" - "Partager avec %s" - "Réduire" - "Rechercher" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml deleted file mode 100644 index 6238d96a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Revenir à l\'accueil" - "Revenir en haut de la page" - "Autres options" - "OK" - "Tout afficher" - "Sélectionner une application" - "NON" - "OUI" - "Alt+" - "Ctrl+" - "supprimer" - "entrée" - "Fonction+" - "Méta+" - "Maj+" - "espace" - "Sym+" - "Menu+" - "Rechercher…" - "Effacer la requête" - "Requête de recherche" - "Rechercher" - "Envoyer la requête" - "Recherche vocale" - "Partager avec" - "Partager avec %s" - "Réduire" - "Rechercher" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml deleted file mode 100644 index 54661aab..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Vai ao inicio" - "Vai cara arriba" - "Máis opcións" - "Feito" - "Ver todo" - "Selecciona unha aplicación" - "DESACTIVAR" - "ACTIVAR" - "Alt +" - "Ctrl +" - "eliminar" - "intro" - "Función +" - "Meta +" - "Maiús +" - "espazo" - "Sym +" - "Menú +" - "Busca…" - "Borra a consulta" - "Busca a consulta" - "Realiza buscas" - "Envía a consulta" - "Busca por voz" - "Comparte contido con" - "Comparte contido coa aplicación %s" - "Contrae" - "Buscar" - ">999" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml deleted file mode 100644 index 1148bc97..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "ઘરનો રસ્તો બતાવો" - "ઉપર નૅવિગેટ કરો" - "વધુ વિકલ્પો" - "થઈ ગયું" - "બધી જુઓ" - "ઍપ્લિકેશન પસંદ કરો" - "બંધ" - "ચાલુ" - "Alt+" - "Ctrl+" - "delete" - "Enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "શોધો…" - "ક્વેરી સાફ કરો" - "શોધ ક્વેરી" - "શોધો" - "ક્વેરી સબમિટ કરો" - "વૉઇસ શોધ" - "આની સાથે શેર કરો" - "%sની સાથે શેર કરો" - "સંકુચિત કરો" - "શોધો" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml deleted file mode 100644 index e38bb90b..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 54dip - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml deleted file mode 100644 index d5a138ef..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml deleted file mode 100644 index 03aa7d17..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "होम पेज पर जाएं" - "वापस जाएं" - "ज़्यादा विकल्प" - "हो गया" - "सभी देखें" - "कोई ऐप्लिकेशन चुनें" - "बंद" - "चालू" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "खोजें…" - "क्‍वेरी हटाएं" - "सर्च क्वेरी" - "खोजें" - "क्वेरी सबमिट करें" - "बोलकर खोजें" - "इससे शेयर करें:" - "%s से शेयर करें" - "छोटा करें" - "खोजें" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml deleted file mode 100644 index 37e5c0a4..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Idi na početnu" - "Natrag" - "Više opcija" - "Gotovo" - "Prikaži sve" - "Odabir aplikacije" - "ISKLJUČENO" - "UKLJUČENO" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "svemir" - "Sym+" - "Menu+" - "Pretražite…" - "Izbriši upit" - "Upit za pretraživanje" - "Pretraži" - "Pošalji upit" - "Glasovno pretraživanje" - "Dijeli s" - "Dijeli putem aplikacije %s" - "Sažmi" - "Pretraži" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml deleted file mode 100644 index 0fcd6d44..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Ugrás a főoldalra" - "Fel" - "További lehetőségek" - "Kész" - "Az összes megtekintése" - "Válasszon alkalmazást" - "KI" - "BE" - "Alt+" - "Ctrl+" - "Delete" - "Enter" - "Function+" - "Meta+" - "Shift+" - "Szóköz" - "Sym+" - "Menu+" - "Keresés…" - "Lekérdezés törlése" - "Keresési lekérdezés" - "Keresés" - "Lekérdezés küldése" - "Hangalapú keresés" - "Megosztás a következővel:" - "Megosztás a következő alkalmazással: %s" - "Összecsukás" - "Keresés" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml deleted file mode 100644 index c0dcbe4a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Անցնել գլխավոր էջ" - "Անցնել վերև" - "Այլ ընտրանքներ" - "Պատրաստ է" - "Տեսնել բոլորը" - "Ընտրել հավելված" - "ԱՆՋԱՏԵԼ" - "ՄԻԱՑՆԵԼ" - "Alt+" - "Ctrl+" - "Delete" - "Enter" - "Function+" - "Meta+" - "Shift+" - "բացատ" - "Sym+" - "Menu+" - "Որոնում…" - "Ջնջել հարցումը" - "Որոնման հարցում" - "Որոնել" - "Ուղարկել հարցումը" - "Ձայնային որոնում" - "Կիսվել…" - "Կիսվել %s հավելվածի միջոցով" - "Ծալել" - "Որոնել" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml deleted file mode 100644 index 29513d2e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Tunjukkan jalan ke rumah" - "Kembali ke atas" - "Opsi lain" - "Selesai" - "Lihat semua" - "Pilih aplikasi" - "NONAKTIF" - "AKTIF" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "spasi" - "Sym+" - "Menu+" - "Telusuri..." - "Hapus kueri" - "Telusuri kueri" - "Telusuri" - "Kirim kueri" - "Penelusuran suara" - "Bagikan dengan" - "Bagikan dengan %s" - "Ciutkan" - "Telusuri" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml deleted file mode 100644 index 1d7b8aa7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Fara heim" - "Fara upp" - "Fleiri valkostir" - "Lokið" - "Sjá allt" - "Veldu forrit" - "SLÖKKT" - "KVEIKT" - "Alt+" - "Ctrl+" - "eyða" - "enter" - "Aðgerðarlykill+" - "Meta+" - "Shift+" - "bilslá" - "Sym+" - "Valmynd+" - "Leita…" - "Hreinsa fyrirspurn" - "Leitarfyrirspurn" - "Leit" - "Senda fyrirspurn" - "Raddleit" - "Deila með" - "Deila með %s" - "Minnka" - "Leit" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml deleted file mode 100644 index 0876d05f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Portami a casa" - "Torna indietro" - "Altre opzioni" - "Fine" - "Mostra tutto" - "Scelta di un\'app" - "OFF" - "ON" - "ALT +" - "CTRL +" - "CANC" - "INVIO" - "FUNZIONE +" - "META +" - "MAIUSC +" - "SPAZIO" - "SYM +" - "MENU +" - "Cerca…" - "Cancella query" - "Query di ricerca" - "Cerca" - "Invia query" - "Ricerca vocale" - "Condividi con" - "Condividi tramite %s" - "Comprimi" - "Cerca" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml deleted file mode 100644 index f0a1c3a0..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "ניווט לדף הבית" - "ניווט למעלה" - "עוד אפשרויות" - "סיום" - "הצגת הכול" - "בחירת אפליקציה" - "כבוי" - "מופעל" - "Alt+" - "Ctrl+‎" - "מחיקה" - "Enter" - "Function+" - "Meta+" - "Shift+" - "רווח" - "Sym+" - "תפריט+" - "חיפוש…" - "מחיקת השאילתה" - "שאילתת חיפוש" - "חיפוש" - "שליחת שאילתה" - "חיפוש קולי" - "שיתוף עם" - "שיתוף עם %s" - "כיווץ" - "חיפוש" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml deleted file mode 100644 index 3abbbc47..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "ホームに戻る" - "前に戻る" - "その他のオプション" - "完了" - "すべて表示" - "アプリの選択" - "OFF" - "ON" - "Alt+" - "Ctrl+" - "Delete" - "Enter" - "Function+" - "Meta+" - "Shift+" - "Space" - "Sym+" - "Menu+" - "検索…" - "検索キーワードを削除" - "検索キーワード" - "検索" - "検索キーワードを送信" - "音声検索" - "共有" - "%sと共有" - "折りたたむ" - "検索" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml deleted file mode 100644 index 04695504..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "მთავარზე გადასვლა" - "ზემოთ გადასვლა" - "სხვა ვარიანტები" - "მზადაა" - "ყველას ნახვა" - "აირჩიეთ აპი" - "გამორთვა" - "ჩართვა" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "შორისი" - "Sym+" - "Menu+" - "ძიება…" - "მოთხოვნის გასუფთავება" - "მოთხოვნის ძიება" - "ძიება" - "მოთხოვნის გადაგზავნა" - "ხმოვანი ძიება" - "გაზიარება:" - "%s-ით გაზიარება" - "ჩაკეცვა" - "ძიება" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml deleted file mode 100644 index 7e9fffaa..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Негізгі бетке өту" - "Жоғары қарай өту" - "Басқа опциялар" - "Дайын" - "Барлығын көру" - "Қолданбаны таңдау" - "ӨШІРУ" - "ҚОСУ" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "бос орын" - "Sym+" - "Menu+" - "Іздеу…" - "Сұрауды өшіру" - "Іздеу сұрауы" - "Іздеу" - "Сұрауды жіберу" - "Дауыспен іздеу" - "Бөлісу" - "%s қолданбасымен бөлісу" - "Жию" - "Іздеу" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml deleted file mode 100644 index 207f6f6d..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "​ទៅទំព័រដើម" - "រំកិលឡើងលើ" - "ជម្រើសច្រើនទៀត" - "រួចរាល់" - "មើលទាំងអស់" - "ជ្រើសរើស​កម្មវិធី​​" - "បិទ" - "បើក" - "Alt+" - "Ctrl+" - "លុប" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "ស្វែងរក…" - "សម្អាត​សំណួរ" - "ស្វែងរកសំណួរ​" - "ស្វែងរក" - "ដាក់បញ្ជូន​សំណួរ" - "ស្វែងរក​តាម​សំឡេង" - "ចែករំលែក​ជា​មួយ" - "ចែក​រំលែក​ជា​មួយ %s" - "បង្រួម" - "ស្វែងរក" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml deleted file mode 100644 index c13109c2..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" - "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" - "ಮುಗಿದಿದೆ" - "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" - "ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ" - "ಆಫ್" - "ಆನ್" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "ಹುಡುಕಿ…" - "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ" - "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" - "Search" - "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ" - "ಧ್ವನಿ ಹುಡುಕಾಟ" - "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" - "ಕುಗ್ಗಿಸಿ" - "Search" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml deleted file mode 100644 index d92f75bc..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "홈으로 이동" - "위로 이동" - "추가 옵션" - "완료" - "전체 보기" - "앱 선택" - "사용 중지" - "사용" - "Alt+" - "Ctrl+" - "Delete" - "Enter" - "Function+" - "Meta+" - "Shift+" - "스페이스바" - "Sym+" - "Menu+" - "검색..." - "검색어 삭제" - "검색어" - "검색" - "검색어 보내기" - "음성 검색" - "공유 대상:" - "%s과(와) 공유" - "접기" - "검색" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml deleted file mode 100644 index a34668ff..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Башкы бетке чабыттоо" - "Мурунку экранга өтүү" - "Дагы параметрлер" - "Бүттү" - "Баарын көрүү" - "Колдонмо тандоо" - "ӨЧҮК" - "КҮЙҮК" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "боштук" - "Sym+" - "Menu+" - "Издөө…" - "Сурамды өчүрүү" - "Изделген сурам" - "Издөө" - "Сурам тапшыруу" - "Айтып издөө" - "Төмөнкү менен бөлүшүү" - "%s аркылуу бөлүшүү" - "Жыйыштыруу" - "Издөө" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml deleted file mode 100644 index a12899f9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - 48dp - 12dp - 14dp - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml deleted file mode 100644 index cc236ebd..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - 440dp - 60% - 90% - 60% - 90% - 55% - 80% - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml deleted file mode 100644 index f85a197a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml deleted file mode 100644 index 7dad77f9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - 0px - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml deleted file mode 100644 index d0853d77..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml +++ /dev/null @@ -1,277 +0,0 @@ - - - @color/androidx_core_secondary_text_default_material_light - 0dp - 0dp - 12dp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml deleted file mode 100644 index d4a514a5..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml deleted file mode 100644 index 853e94cd..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml deleted file mode 100644 index f9b3c08d..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml deleted file mode 100644 index 8b28a465..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml deleted file mode 100644 index 99bddaab..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Chỉ đường về nhà" - "Di chuyển lên" - "Tùy chọn khác" - "Xong" - "Xem tất cả" - "Chọn một ứng dụng" - "TẮT" - "BẬT" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Menu+" - "Tìm kiếm…" - "Xóa truy vấn" - "Truy vấn tìm kiếm" - "Tìm kiếm" - "Gửi truy vấn" - "Tìm kiếm bằng giọng nói" - "Chia sẻ với" - "Chia sẻ với %s" - "Thu gọn" - "Tìm kiếm" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml deleted file mode 100644 index 2d85812e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml deleted file mode 100644 index deecc9e8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml deleted file mode 100644 index b499d2cf..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - 60% - 90% - 50% - 70% - 45% - 72% - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml deleted file mode 100644 index 2ef777a7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "转到首页" - "转到上一层级" - "更多选项" - "完成" - "查看全部" - "选择应用" - "关闭" - "开启" - "Alt+" - "Ctrl+" - "Delete 键" - "Enter 键" - "Fn+" - "Meta+" - "Shift+" - "空格键" - "Sym+" - "Menu+" - "搜索…" - "清除查询" - "搜索查询" - "搜索" - "提交查询" - "语音搜索" - "分享对象" - "与%s分享" - "收起" - "搜索" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml deleted file mode 100644 index 95dfec14..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "瀏覽主頁" - "向上瀏覽" - "更多選項" - "完成" - "查看全部" - "選擇應用程式" - "關閉" - "開啟" - "Alt +" - "Ctrl +" - "刪除" - "Enter 鍵" - "Fn +" - "Meta +" - "Shift +" - "空白鍵" - "Sym +" - "Menu +" - "搜尋…" - "清除查詢" - "搜尋查詢" - "搜尋" - "提交查詢" - "語音搜尋" - "分享對象" - "使用「%s」分享" - "收合" - "搜尋" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml deleted file mode 100644 index 78f27160..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "瀏覽首頁" - "向上瀏覽" - "更多選項" - "完成" - "查看全部" - "選擇應用程式" - "關閉" - "開啟" - "Alt +" - "Ctrl +" - "Delete 鍵" - "Enter 鍵" - "Fn +" - "Meta +" - "Shift +" - "空格鍵" - "Sym +" - "Menu +" - "搜尋…" - "清除查詢" - "搜尋查詢" - "搜尋" - "提交查詢" - "語音搜尋" - "分享對象" - "與「%s」分享" - "收合" - "搜尋" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml deleted file mode 100644 index d04e5565..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - "Zulazulela ekhaya" - "Zulazulela phezulu" - "Ezinye izinketho" - "Kwenziwe" - "Buka konke" - "Khetha insiza" - "VALA" - "VULA" - "Alt+" - "Ctrl+" - "delete" - "enter" - "Function+" - "Meta+" - "Shift+" - "space" - "Sym+" - "Imenyu+" - "Sesha…" - "Sula inkinga" - "Sesha umbuzo" - "Sesha" - "Thumela umbuzo" - "Ukusesha ngezwi" - "Yabelana no" - "Yabelana ne-%s" - "Goqa" - "Sesha" - "999+" - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml deleted file mode 100644 index fe27cc82..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml +++ /dev/null @@ -1,3334 +0,0 @@ - - - - - - - - - - - - - - - - true - true - #ff000000 - #ffffffff - #7fa87f - @android:color/black - @android:color/black - @color/material_deep_teal_200 - @color/material_deep_teal_500 - #1f000000 - #8a000000 - @color/material_grey_800 - @android:color/white - @color/material_grey_850 - @color/material_grey_50 - #80ffffff - #80000000 - @color/bright_foreground_material_light - @color/bright_foreground_material_dark - @android:color/white - @android:color/black - #ff5a595b - #ffd6d7d7 - #80bebebe - #80323232 - #ffbebebe - #ff323232 - #ff7043 - #ff5722 - @android:color/white - @android:color/black - #6680cbc4 - #66009688 - #ff37474f - #ff263238 - #ff21272b - #ff80cbc4 - #ff008577 - #fff5f5f5 - #ffe0e0e0 - #fffafafa - #ff757575 - #ff424242 - #ff303030 - #ff212121 - #ffffffff - #ff9e9e9e - @android:color/black - @color/material_grey_600 - @color/material_grey_900 - @color/material_grey_100 - #ffffffff - #de000000 - #4Dffffff - #39000000 - #33ffffff - #1f000000 - #b3ffffff - #8a000000 - #36ffffff - #24000000 - #ff616161 - #ffbdbdbd - #ffbdbdbd - #fff1f1f1 - #e6616161 - #e6FFFFFF - 16dp - 72dp - 56dp - 0dp - 0dp - 4dp - 16dp - 10dp - 6dp - 48dp - 180dp - 5dp - -3dp - 48dp - 48dp - 36dp - 48dp - 48dp - @dimen/abc_control_inset_material - 6dp - 8dp - @dimen/abc_control_padding_material - 720dp - 320dp - 2dp - 4dp - 4dp - 2dp - 80% - 100% - 320dp - 320dp - 8dp - 8dp - 65% - 95% - 24dp - 18dp - 8dp - 0.30 - 0.26 - 32dip - 8dip - 8dip - 7dp - 4dp - 10dp - 16dp - 80dp - 64dp - 48dp - @dimen/abc_action_bar_content_inset_material - 296dp - 4dp - 48dip - 320dip - 2dp - 2dp - 20dp - 48dp - 36dp - 16dp - 3dp - 14sp - 14sp - 14sp - 12sp - 34sp - 45sp - 56sp - 112sp - 24sp - 22sp - 18sp - 14sp - 16sp - 14sp - 16sp - 16dp - 20sp - 20dp - 4dp - 6dp - 8dp - 4dp - 2dp - 320dp - 320dp - 0.30 - 0.26 - 0.26 - 0.20 - 0.12 - 0.50 - 0.38 - 0.70 - 0.54 - 32dp - 13sp - 12dp - 8dp - 64dp - 64dp - 10dp - @dimen/notification_content_margin_start - 16dp - 2dp - 3dp - 24dp - 13sp - 10dp - 5dp - 2dp - 16dp - 8dp - 8dp - 96dp - 6.5dp - 0dp - 16dp - #3333B5E5 - #0cffffff - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 220 - 150 - 127 - 150 - 999 - Navigate home - Navigate up - More options - Done - See all - Choose an app - OFF - ON - Alt+ - Ctrl+ - delete - enter - Function+ - Meta+ - Shift+ - space - Sym+ - Menu+ - Search… - Clear query - Search query - Search - Submit query - Voice search - Share with - Share with %s - Collapse - Search - 999+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "999+""999+""999+""999+""999+" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - truetrue#ff000000#ffffffff#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff008577#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp80%100%320dp320dp8dp8dp65%95%24dp18dp8dp0.300.2632dip8dip8dip7dp4dp10dp16dp80dp64dp48dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp48dp36dp16dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp0.300.260.260.200.120.500.380.700.542dp16dp8dp8dp96dp6.5dp0dp16dp220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch"होम पेज पर जाएं""वापस जाएं""ज़्यादा विकल्प""हो गया""सभी देखें""कोई ऐप्लिकेशन चुनें""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजें…""क्‍वेरी हटाएं""सर्च क्वेरी""खोजें""क्वेरी सबमिट करें""बोलकर खोजें""इससे शेयर करें:""%s से शेयर करें""छोटा करें""खोजें""Idi na početnu""Natrag""Više opcija""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""svemir""Sym+""Menu+""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraži""Pošalji upit""Glasovno pretraživanje""Dijeli s""Dijeli putem aplikacije %s""Sažmi""Pretraži""Ugrás a főoldalra""Fel""További lehetőségek""Kész""Az összes megtekintése""Válasszon alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következő alkalmazással: %s""Összecsukás""Keresés""Անցնել գլխավոր էջ""Անցնել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել հավելված""ԱՆՋԱՏԵԼ""ՄԻԱՑՆԵԼ""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""բացատ""Sym+""Menu+""Որոնում…""Ջնջել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել…""Կիսվել %s հավելվածի միջոցով""Ծալել""Որոնել""Tunjukkan jalan ke rumah""Kembali ke atas""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Telusuri kueri""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""eyða""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leit""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leit""Portami a casa""Torna indietro""Altre opzioni""Fine""Mostra tutto""Scelta di un\'app""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""SPAZIO""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Cerca""ניווט לדף הבית""ניווט למעלה""עוד אפשרויות""סיום""הצגת הכול""בחירת אפליקציה""כבוי""מופעל""Alt+""Ctrl+‎""מחיקה""Enter""Function+""Meta+""Shift+""רווח""Sym+""תפריט+""חיפוש…""מחיקת השאילתה""שאילתת חיפוש""חיפוש""שליחת שאילתה""חיפוש קולי""שיתוף עם""שיתוף עם %s""כיווץ""חיפוש""ホームに戻る""前に戻る""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""Menu+""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""მთავარზე გადასვლა""ზემოთ გადასვლა""სხვა ვარიანტები""მზადაა""ყველას ნახვა""აირჩიეთ აპი""გამორთვა""ჩართვა""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""შორისი""Sym+""Menu+""ძიება…""მოთხოვნის გასუფთავება""მოთხოვნის ძიება""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""%s-ით გაზიარება""ჩაკეცვა""ძიება""Негізгі бетке өту""Жоғары қарай өту""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУ""ҚОСУ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""бос орын""Sym+""Menu+""Іздеу…""Сұрауды өшіру""Іздеу сұрауы""Іздеу""Сұрауды жіберу""Дауыспен іздеу""Бөлісу""%s қолданбасымен бөлісу""Жию""Іздеу""​ទៅទំព័រដើម""រំកិលឡើងលើ""ជម្រើសច្រើនទៀត""រួចរាល់""មើលទាំងអស់""ជ្រើសរើស​កម្មវិធី​​""បិទ""បើក""Alt+""Ctrl+""លុប""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាត​សំណួរ""ស្វែងរកសំណួរ​""ស្វែងរក""ដាក់បញ្ជូន​សំណួរ""ស្វែងរក​តាម​សំឡេង""ចែករំលែក​ជា​មួយ""ចែក​រំលែក​ជា​មួយ %s""បង្រួម""ស្វែងរក""ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""Search""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಕುಗ್ಗಿಸಿ""Search""홈으로 이동""위로 이동""추가 옵션""완료""전체 보기""앱 선택""사용 중지""사용""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""스페이스바""Sym+""Menu+""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상:""%s과(와) 공유""접기""검색""Башкы бетке чабыттоо""Мурунку экранга өтүү""Дагы параметрлер""Бүттү""Баарын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Сурамды өчүрүү""Изделген сурам""Издөө""Сурам тапшыруу""Айтып издөө""Төмөнкү менен бөлүшүү""%s аркылуу бөлүшүү""Жыйыштыруу""Издөө"48dp12dp14dp440dp60%90%60%90%55%80%0px"Chỉ đường về nhà""Di chuyển lên""Tùy chọn khác""Xong""Xem tất cả""Chọn một ứng dụng""TẮT""BẬT""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Tìm kiếm…""Xóa truy vấn""Truy vấn tìm kiếm""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s""Thu gọn""Tìm kiếm"60%90%50%70%45%72%"转到首页""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享对象""与%s分享""收起""搜索""瀏覽主頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""刪除""Enter 鍵""Fn +""Meta +""Shift +""空白鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""使用「%s」分享""收合""搜尋""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""Zulazulela ekhaya""Zulazulela phezulu""Ezinye izinketho""Kwenziwe""Buka konke""Khetha insiza""VALA""VULA""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Sesha…""Sula inkinga""Sesha umbuzo""Sesha""Thumela umbuzo""Ukusesha ngezwi""Yabelana no""Yabelana ne-%s""Goqa""Sesha" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugShaders/merger.xml b/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index 5670f936..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt deleted file mode 100644 index 08e16b49..00000000 --- a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +++ /dev/null @@ -1,4 +0,0 @@ -#Mon May 30 17:13:10 IST 2022 -base.0=C\:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\dex\\debug\\mergeDexDebug\\classes.dex -renamed.0=classes.dex -path.0=classes.dex diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources deleted file mode 100644 index 966c6512..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 b/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 deleted file mode 100644 index 0ae9244d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/Tracking/rudra_app/build/app/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt deleted file mode 100644 index 1bfc49dc..00000000 --- a/Tracking/rudra_app/build/app/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,114 +0,0 @@ -1 -2 -6 -7 -10 -14 -14-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:6:5-66 -14-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:6:22-64 -15 -16 C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:4:5-5:38 -17 android:name="android.permission.BLUETOOTH" -17-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:4:22-65 -18 android:maxSdkVersion="30" /> -18-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:5:9-35 -19 C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:6:5-7:38 -20 android:name="android.permission.BLUETOOTH_ADMIN" -20-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:6:22-71 -21 android:maxSdkVersion="30" /> -21-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:7:9-35 -22 -28 -28-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:13:5-73 -28-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:13:22-70 -29 -33 -33-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:17:5-78 -33-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:17:22-75 -34 -38 -38-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:21:5-76 -38-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:21:22-73 -39 -39-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:24:5-79 -39-->C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:24:22-76 -40 -40-->[:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:9:5-81 -40-->[:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:9:22-78 -41 -42 [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:24:18-86 -45 android:debuggable="true" -46 android:icon="@mipmap/ic_launcher" -47 android:label="rudra_app" > -48 -56 -57 -63 -66 -67 -68 -69 -70 -71 -72 -73 -77 -80 -81 [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:25:9-27:40 -82 android:name="androidx.window.extensions" -82-->[androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:26:13-54 -83 android:required="false" /> -83-->[androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:27:13-37 -84 [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:28:9-30:40 -85 android:name="androidx.window.sidecar" -85-->[androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:29:13-51 -86 android:required="false" /> -86-->[androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:30:13-37 -87 -88 -89 diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/AssetManifest.json b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/AssetManifest.json deleted file mode 100644 index f92a4350..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/AssetManifest.json +++ /dev/null @@ -1 +0,0 @@ -{"assets/photo.jpg":["assets/photo.jpg"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/FontManifest.json b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/FontManifest.json deleted file mode 100644 index 464ab588..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/FontManifest.json +++ /dev/null @@ -1 +0,0 @@ -[{"family":"MaterialIcons","fonts":[{"asset":"fonts/MaterialIcons-Regular.otf"}]},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/NOTICES.Z b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/NOTICES.Z deleted file mode 100644 index 4542a9d9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/NOTICES.Z and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/assets/photo.jpg b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/assets/photo.jpg deleted file mode 100644 index f32eb0b2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/assets/photo.jpg and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/fonts/MaterialIcons-Regular.otf b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/fonts/MaterialIcons-Regular.otf deleted file mode 100644 index de28db84..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/fonts/MaterialIcons-Regular.otf and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/isolate_snapshot_data b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/isolate_snapshot_data deleted file mode 100644 index 8a408aa3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/isolate_snapshot_data and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/kernel_blob.bin b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/kernel_blob.bin deleted file mode 100644 index 57271af3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/kernel_blob.bin and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf deleted file mode 100644 index 79ba7ea0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/vm_snapshot_data b/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/vm_snapshot_data deleted file mode 100644 index 8d6fd783..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_assets/debug/out/flutter_assets/vm_snapshot_data and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_java_res/debug/out.jar b/Tracking/rudra_app/build/app/intermediates/merged_java_res/debug/out.jar deleted file mode 100644 index 9cd9f6f8..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_java_res/debug/out.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_manifest/debug/out/AndroidManifest.xml b/Tracking/rudra_app/build/app/intermediates/merged_manifest/debug/out/AndroidManifest.xml deleted file mode 100644 index 10ea4c90..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_manifest/debug/out/AndroidManifest.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/AndroidManifest.xml b/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/AndroidManifest.xml deleted file mode 100644 index 10ea4c90..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/AndroidManifest.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/output-metadata.json b/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/output-metadata.json deleted file mode 100644 index 6ac7619c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_manifests/debug/output-metadata.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "MERGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "com.example.rudra_app", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "versionCode": 1, - "versionName": "1.0.0", - "outputFile": "AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libflutter.so b/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libflutter.so deleted file mode 100644 index 66bd3bf4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86/libflutter.so b/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86/libflutter.so deleted file mode 100644 index d7402ccf..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86_64/libflutter.so b/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86_64/libflutter.so deleted file mode 100644 index cf74fc71..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/merged_native_libs/debug/out/lib/x86_64/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json deleted file mode 100644 index 1bf35b92..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json +++ /dev/null @@ -1,3291 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-nb_values-nb.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-nb\\values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", - "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", - "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-nb\\values-nb.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2817", - "endColumns": "100", - "endOffsets": "2913" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ja_values-ja.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ja\\values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", - "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", - "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ja\\values-ja.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2770", - "endColumns": "100", - "endOffsets": "2866" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-night-v8_values-night-v8.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-night-v8\\values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593,687", - "endColumns": "69,83,83,95,101,101,93,88", - "endOffsets": "120,204,288,384,486,588,682,771" - }, - "to": { - "startLines": "10,11,12,13,14,15,16,17", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "521,591,675,759,855,957,1059,1153", - "endColumns": "69,83,83,95,101,101,93,88", - "endOffsets": "586,670,754,850,952,1054,1148,1237" - } - }, - { - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\values-night\\styles.xml", - "from": { - "startLines": "3,14", - "startColumns": "4,4", - "startOffsets": "175,820", - "endLines": "7,16", - "endColumns": "12,12", - "endOffsets": "471,986" - }, - "to": { - "startLines": "2,7", - "startColumns": "4,4", - "startOffsets": "55,352", - "endLines": "6,9", - "endColumns": "12,12", - "endOffsets": "347,516" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-pt-rBR_values-pt-rBR.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt-rBR\\values-pt-rBR.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2929", - "endColumns": "100", - "endOffsets": "3025" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt-rBR\\values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", - "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", - "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-uz_values-uz.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-uz\\values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", - "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", - "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-uz\\values-uz.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2860", - "endColumns": "100", - "endOffsets": "2956" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-fi_values-fi.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fi\\values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", - "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", - "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fi\\values-fi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2856", - "endColumns": "100", - "endOffsets": "2952" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-fr_values-fr.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fr\\values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", - "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", - "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fr\\values-fr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2934", - "endColumns": "100", - "endOffsets": "3030" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-iw_values-iw.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-iw\\values-iw.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2843", - "endColumns": "100", - "endOffsets": "2939" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-iw\\values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", - "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", - "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-th_values-th.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-th\\values-th.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2816", - "endColumns": "100", - "endOffsets": "2912" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-th\\values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", - "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", - "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sl_values-sl.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sl\\values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", - "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", - "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sl\\values-sl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2935", - "endColumns": "100", - "endOffsets": "3031" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-lo_values-lo.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lo\\values-lo.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2854", - "endColumns": "100", - "endOffsets": "2950" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lo\\values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", - "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", - "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-port_values-port.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-port\\values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-watch-v20_values-watch-v20.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-watch-v20\\values-watch-v20.xml", - "from": { - "startLines": "2,5,8", - "startColumns": "4,4,4", - "startOffsets": "55,214,385", - "endLines": "4,7,10", - "endColumns": "12,12,12", - "endOffsets": "209,380,553" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ka_values-ka.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ka\\values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", - "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", - "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ka\\values-ka.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2890", - "endColumns": "100", - "endOffsets": "2986" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v17_values-v17.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v17\\values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", - "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-tl_values-tl.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-tl\\values-tl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2930", - "endColumns": "100", - "endOffsets": "3026" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-tl\\values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", - "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", - "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-fr-rCA_values-fr-rCA.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fr-rCA\\values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", - "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", - "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fr-rCA\\values-fr-rCA.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2942", - "endColumns": "100", - "endOffsets": "3038" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ko_values-ko.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ko\\values-ko.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2764", - "endColumns": "100", - "endOffsets": "2860" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ko\\values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", - "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", - "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ru_values-ru.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ru\\values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", - "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", - "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ru\\values-ru.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2904", - "endColumns": "100", - "endOffsets": "3000" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-large-v4_values-large-v4.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-large-v4\\values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ms_values-ms.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ms\\values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", - "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", - "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ms\\values-ms.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-pl_values-pl.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pl\\values-pl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2900", - "endColumns": "100", - "endOffsets": "2996" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pl\\values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", - "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", - "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sq_values-sq.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sq\\values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", - "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", - "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sq\\values-sq.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2883", - "endColumns": "100", - "endOffsets": "2979" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v22_values-v22.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v22\\values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-hr_values-hr.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hr\\values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", - "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", - "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hr\\values-hr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2901", - "endColumns": "100", - "endOffsets": "2997" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v23_values-v23.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v23\\values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", - "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", - "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", - "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-mk_values-mk.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mk\\values-mk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2905", - "endColumns": "100", - "endOffsets": "3001" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mk\\values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", - "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", - "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-az_values-az.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-az\\values-az.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2897", - "endColumns": "100", - "endOffsets": "2993" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-az\\values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", - "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", - "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v26_values-v26.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v26\\values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-de_values-de.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-de\\values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", - "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", - "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-de\\values-de.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2914", - "endColumns": "100", - "endOffsets": "3010" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-watch-v21_values-watch-v21.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-watch-v21\\values-watch-v21.xml", - "from": { - "startLines": "2,6,10", - "startColumns": "4,4,4", - "startOffsets": "55,271,499", - "endLines": "5,9,13", - "endColumns": "12,12,12", - "endOffsets": "266,494,724" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sv_values-sv.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sv\\values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", - "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", - "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sv\\values-sv.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2858", - "endColumns": "100", - "endOffsets": "2954" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-kk_values-kk.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-kk\\values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", - "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", - "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-kk\\values-kk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2878", - "endColumns": "100", - "endOffsets": "2974" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-bg_values-bg.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bg\\values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", - "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", - "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bg\\values-bg.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2938", - "endColumns": "100", - "endOffsets": "3034" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-xlarge-v4_values-xlarge-v4.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-xlarge-v4\\values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-en-rCA_values-en-rCA.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rCA\\values-en-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rCA\\values-en-rCA.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-zh-rHK_values-zh-rHK.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rHK\\values-zh-rHK.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2745", - "endColumns": "100", - "endOffsets": "2841" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rHK\\values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", - "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", - "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-b+sr+Latn_values-b+sr+Latn.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2923", - "endColumns": "100", - "endOffsets": "3019" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", - "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", - "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v16_values-v16.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v16\\values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-v16\\values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-el_values-el.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-el\\values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", - "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", - "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-el\\values-el.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2972", - "endColumns": "100", - "endOffsets": "3068" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-eu_values-eu.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-eu\\values-eu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2933", - "endColumns": "100", - "endOffsets": "3029" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-eu\\values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", - "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", - "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ro_values-ro.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ro\\values-ro.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2935", - "endColumns": "100", - "endOffsets": "3031" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ro\\values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", - "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", - "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ne_values-ne.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ne\\values-ne.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2947", - "endColumns": "100", - "endOffsets": "3043" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ne\\values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", - "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", - "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ml_values-ml.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ml\\values-ml.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2937", - "endColumns": "100", - "endOffsets": "3033" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ml\\values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", - "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", - "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ldltr-v21_values-ldltr-v21.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ldltr-v21\\values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v18_values-v18.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v18\\values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ur_values-ur.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ur\\values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", - "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", - "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ur\\values-ur.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2918", - "endColumns": "100", - "endOffsets": "3014" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-en-rIN_values-en-rIN.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rIN\\values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rIN\\values-en-rIN.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-gu_values-gu.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-gu\\values-gu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2869", - "endColumns": "100", - "endOffsets": "2965" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-gu\\values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", - "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", - "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-hi_values-hi.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hi\\values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", - "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", - "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hi\\values-hi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2869", - "endColumns": "100", - "endOffsets": "2965" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-lt_values-lt.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lt\\values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", - "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", - "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lt\\values-lt.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2958", - "endColumns": "100", - "endOffsets": "3054" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ca_values-ca.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ca\\values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", - "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", - "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ca\\values-ca.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2912", - "endColumns": "100", - "endOffsets": "3008" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sr_values-sr.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sr\\values-sr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2920", - "endColumns": "100", - "endOffsets": "3016" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sr\\values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", - "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", - "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-es-rUS_values-es-rUS.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-es-rUS\\values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", - "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", - "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-es-rUS\\values-es-rUS.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2904", - "endColumns": "100", - "endOffsets": "3000" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-si_values-si.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-si\\values-si.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2903", - "endColumns": "100", - "endOffsets": "2999" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-si\\values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", - "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", - "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-pt_values-pt.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt\\values-pt.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2929", - "endColumns": "100", - "endOffsets": "3025" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt\\values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", - "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", - "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-en-rXC_values-en-rXC.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rXC\\values-en-rXC.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "203", - "endOffsets": "254" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "5714", - "endColumns": "203", - "endOffsets": "5913" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rXC\\values-en-rXC.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", - "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", - "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sw_values-sw.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sw\\values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", - "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", - "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sw\\values-sw.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2884", - "endColumns": "100", - "endOffsets": "2980" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-pa_values-pa.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pa\\values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", - "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", - "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pa\\values-pa.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2847", - "endColumns": "100", - "endOffsets": "2943" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-as_values-as.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-as\\values-as.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", - "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", - "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-as\\values-as.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2924", - "endColumns": "100", - "endOffsets": "3020" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-et_values-et.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-et\\values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", - "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", - "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-et\\values-et.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2910", - "endColumns": "100", - "endOffsets": "3006" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-hy_values-hy.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hy\\values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", - "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", - "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hy\\values-hy.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2897", - "endColumns": "100", - "endOffsets": "2993" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-or_values-or.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-or\\values-or.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2933", - "endColumns": "100", - "endOffsets": "3029" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-or\\values-or.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", - "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", - "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sw600dp-v13_values-sw600dp-v13.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-af_values-af.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-af\\values-af.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2858", - "endColumns": "100", - "endOffsets": "2954" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-af\\values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", - "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", - "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ta_values-ta.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ta\\values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", - "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", - "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ta\\values-ta.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2953", - "endColumns": "100", - "endOffsets": "3049" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-gl_values-gl.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-gl\\values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", - "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", - "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-gl\\values-gl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2936", - "endColumns": "100", - "endOffsets": "3032" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-zh-rCN_values-zh-rCN.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rCN\\values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", - "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", - "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rCN\\values-zh-rCN.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2741", - "endColumns": "100", - "endOffsets": "2837" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v21_values-v21.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v21\\values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,110,113,156,159,162,164,166,168,171,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,224,226,227,228,238,239,240,252", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "368,459,562,665,770,877,986,1095,1204,1313,1422,1529,1632,1751,1906,2061,2166,2287,2388,2535,2676,2779,2898,3005,3108,3263,3434,3583,3748,3905,4056,4175,4526,4675,4824,4936,5083,5236,5383,5458,5547,5634,5735,5838,8812,8997,11983,12180,12379,12502,12625,12738,12921,13176,13377,13466,13577,13810,13911,14006,14129,14258,14375,14552,14651,14786,14929,15064,15183,15384,15503,15596,15707,15763,15870,16065,16176,16309,16404,16495,16586,16679,16796,16935,17006,17089,17769,17826,17884,18578", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,109,112,155,158,161,163,165,167,170,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,223,225,226,227,237,238,239,251,263", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", - "endOffsets": "454,557,660,765,872,981,1090,1199,1308,1417,1524,1627,1746,1901,2056,2161,2282,2383,2530,2671,2774,2893,3000,3103,3258,3429,3578,3743,3900,4051,4170,4521,4670,4819,4931,5078,5231,5378,5453,5542,5629,5730,5833,8807,8992,11978,12175,12374,12497,12620,12733,12916,13171,13372,13461,13572,13805,13906,14001,14124,14253,14370,14547,14646,14781,14924,15059,15178,15379,15498,15591,15702,15758,15865,16060,16171,16304,16399,16490,16581,16674,16791,16930,17001,17084,17764,17821,17879,18573,19279" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-v21\\values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,237,304,368,484,610,736,864,1036", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "117,63,66,63,115,125,125,127,12,12", - "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" - }, - "to": { - "startLines": "2,3,4,5,264,265,266,267,268,271", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,237,304,19284,19400,19526,19652,19780,19952", - "endLines": "2,3,4,5,264,265,266,267,270,275", - "endColumns": "117,63,66,63,115,125,125,127,12,12", - "endOffsets": "168,232,299,363,19395,19521,19647,19775,19947,20299" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-km_values-km.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-km\\values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", - "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", - "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-km\\values-km.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-zu_values-zu.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zu\\values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", - "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", - "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zu\\values-zu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2873", - "endColumns": "100", - "endOffsets": "2969" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-en-rAU_values-en-rAU.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rAU\\values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rAU\\values-en-rAU.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-mr_values-mr.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mr\\values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", - "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", - "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mr\\values-mr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-cs_values-cs.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-cs\\values-cs.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2882", - "endColumns": "100", - "endOffsets": "2978" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-cs\\values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", - "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", - "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v25_values-v25.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v25\\values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-te_values-te.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-te\\values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", - "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", - "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-te\\values-te.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2930", - "endColumns": "100", - "endOffsets": "3026" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v24_values-v24.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v24\\values-v24.xml", - "from": { - "startLines": "2,3", - "startColumns": "4,4", - "startOffsets": "55,212", - "endColumns": "156,134", - "endOffsets": "207,342" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-bs_values-bs.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bs\\values-bs.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2917", - "endColumns": "100", - "endOffsets": "3013" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bs\\values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", - "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", - "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-h720dp-v13_values-h720dp-v13.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-h720dp-v13\\values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-it_values-it.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-it\\values-it.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-it\\values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", - "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", - "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values_values.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", - "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", - "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" - }, - "to": { - "startLines": "2,3,4,14,15,16,17,18,19,20,21,22,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,170,171,172,173,174,175,176,177,178,194,195,196,197,198,199,200,201,237,238,239,240,243,246,247,249,266,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,318,319,323,327,331,336,342,349,353,357,362,366,370,374,378,382,386,392,396,402,406,412,416,421,425,428,432,438,442,448,452,458,461,465,469,473,477,481,482,483,484,487,490,493,496,500,501,502,503,504,507,509,511,513,518,519,523,529,533,534,536,548,549,553,559,563,564,565,569,596,600,601,605,633,805,831,1003,1029,1060,1068,1074,1090,1112,1117,1122,1132,1141,1150,1154,1161,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1224,1229,1239,1244,1251,1257,1258,1261,1265,1270,1272,1274,1277,1280,1282,1286,1289,1296,1299,1302,1306,1308,1312,1314,1316,1318,1322,1330,1338,1350,1356,1365,1368,1379,1382,1383,1388,1389,1402,1471,1541,1542,1552,1561,1562,1564,1568,1571,1574,1577,1580,1583,1586,1589,1593,1596,1599,1602,1606,1609,1613,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1639,1641,1642,1643,1644,1645,1646,1647,1648,1650,1651,1653,1654,1656,1658,1659,1661,1662,1663,1664,1665,1666,1668,1669,1670,1671,1672,1684,1686,1688,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1704,1705,1706,1707,1708,1709,1710,1712,1716,1720,1721,1722,1723,1724,1725,1729,1730,1731,1732,1734,1736,1738,1740,1742,1743,1744,1745,1747,1749,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1765,1766,1767,1768,1770,1772,1773,1775,1776,1778,1780,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1795,1796,1797,1798,1800,1801,1802,1803,1804,1806,1808,1810,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1829,1912,1915,1918,1921,1935,1958,2013,2043,2070,2079,2154,2557,2576,2604,2755,2791,2797,2803,2826,2967,2987,2993,2997,3003,3040,3120,3186,3210,3279,3298,3324", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,160,205,650,691,746,808,872,942,1003,1078,1154,1231,1469,1554,1636,1712,1788,1865,1943,2049,2155,2234,2314,2371,2429,2503,2578,2643,2709,2769,2830,2902,2975,3042,3110,3169,3228,3287,3346,3405,3459,3513,3566,3620,3674,3728,3914,3988,4067,4140,4214,4285,4357,4429,4502,4559,4617,4690,4764,4838,4913,4985,5058,5128,5199,5259,5320,5389,5458,5528,5602,5678,5742,5819,5895,5972,6037,6106,6183,6258,6327,6395,6472,6538,6599,6696,6761,6830,6929,7000,7059,7117,7174,7233,7297,7368,7440,7512,7584,7656,7723,7791,7859,7918,7981,8045,8135,8226,8286,8352,8419,8485,8555,8619,8672,8739,8800,8867,8980,9038,9101,9166,9231,9306,9379,9451,9495,9542,9588,9637,9698,9759,9820,9882,9946,10010,10074,10139,10202,10262,10323,10389,10448,10508,10570,10641,10701,11257,11343,11430,11520,11607,11695,11777,11860,11950,13019,13071,13129,13174,13240,13304,13361,13418,15595,15652,15700,15749,15917,16021,16068,16182,17087,17330,17394,17456,17516,17643,17717,17787,17865,17919,17989,18074,18122,18168,18229,18292,18358,18422,18493,18556,18621,18685,18746,18807,18859,18932,19006,19075,19150,19224,19298,19439,19509,19633,19711,19801,19889,19985,20075,20657,20746,20993,21274,21526,21811,22204,22681,22903,23125,23401,23628,23858,24088,24318,24548,24775,25194,25420,25845,26075,26503,26722,27005,27213,27344,27571,27997,28222,28649,28870,29295,29415,29691,29992,30316,30607,30921,31058,31189,31294,31536,31703,31907,32115,32386,32498,32610,32715,32832,33046,33192,33332,33418,33766,33854,34100,34518,34767,34849,34947,35629,35729,35981,36405,36660,36754,36843,37080,39132,39374,39476,39729,41913,53102,54618,65905,67433,69190,69816,70236,71497,72762,73018,73254,73801,74295,74900,75098,75678,77046,77421,77539,78077,78234,78430,78703,78959,79129,79270,79334,79699,80066,80742,81006,81344,81697,81791,81977,82283,82545,82670,82797,83036,83247,83366,83559,83736,84191,84372,84494,84753,84866,85053,85155,85262,85391,85666,86174,86670,87547,87841,88411,88560,89292,89464,89548,89884,89976,90720,96114,101648,101710,102340,102954,103045,103158,103387,103547,103699,103870,104036,104205,104372,104535,104778,104948,105121,105292,105566,105765,105970,106300,106384,106480,106576,106674,106774,106876,106978,107080,107182,107284,107384,107480,107592,107721,107844,107975,108106,108204,108318,108412,108552,108686,108782,108894,108994,109110,109206,109318,109418,109558,109694,109858,109988,110146,110296,110437,110581,110716,110828,110978,111106,111234,111370,111502,111632,111762,111874,112772,112918,113062,113200,113266,113356,113432,113536,113626,113728,113836,113944,114044,114124,114216,114314,114424,114476,114554,114660,114752,114856,114966,115088,115251,115408,115488,115588,115678,115788,115878,116119,116213,116319,116411,116511,116623,116737,116853,116969,117063,117177,117289,117391,117511,117633,117715,117819,117939,118065,118163,118257,118345,118457,118573,118695,118807,118982,119098,119184,119276,119388,119512,119579,119705,119773,119901,120045,120173,120242,120337,120452,120565,120664,120773,120884,120995,121096,121201,121301,121431,121522,121645,121739,121851,121937,122041,122137,122225,122343,122447,122551,122677,122765,122873,122973,123063,123173,123257,123359,123443,123497,123561,123667,123753,123863,123947,124206,129350,129468,129583,129715,130430,131737,134883,136482,138015,138403,143138,163801,164796,166306,175160,177173,177435,177791,178621,185403,186537,186831,187054,187381,189431,194213,198064,199266,203345,204560,205969", - "endLines": "2,3,4,14,15,16,17,18,19,20,21,22,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,170,171,172,173,174,175,176,177,178,194,195,196,197,198,199,200,201,237,238,239,240,243,246,247,249,266,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,317,318,322,326,330,335,341,348,352,356,361,365,369,373,377,381,385,391,395,401,405,411,415,420,424,427,431,437,441,447,451,457,460,464,468,472,476,480,481,482,483,486,489,492,495,499,500,501,502,503,506,508,510,512,517,518,522,528,532,533,535,547,548,552,558,562,563,564,568,595,599,600,604,632,804,830,1002,1028,1059,1067,1073,1089,1111,1116,1121,1131,1140,1149,1153,1160,1179,1186,1187,1196,1199,1202,1206,1210,1214,1217,1218,1223,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1382,1387,1388,1393,1470,1540,1541,1551,1560,1561,1563,1567,1570,1573,1576,1579,1582,1585,1588,1592,1595,1598,1601,1605,1608,1612,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1638,1640,1641,1642,1643,1644,1645,1646,1647,1649,1650,1652,1653,1655,1657,1658,1660,1661,1662,1663,1664,1665,1667,1668,1669,1670,1671,1672,1685,1687,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1703,1704,1705,1706,1707,1708,1709,1711,1715,1719,1720,1721,1722,1723,1724,1728,1729,1730,1731,1733,1735,1737,1739,1741,1742,1743,1744,1746,1748,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1764,1765,1766,1767,1769,1771,1772,1774,1775,1777,1779,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1794,1795,1796,1797,1799,1800,1801,1802,1803,1805,1807,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1911,1914,1917,1920,1934,1945,1967,2042,2069,2078,2153,2556,2561,2603,2621,2790,2796,2802,2825,2966,2986,2992,2996,3002,3039,3051,3185,3209,3278,3297,3323,3332", - "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", - "endOffsets": "155,200,249,686,741,803,867,937,998,1073,1149,1226,1304,1549,1631,1707,1783,1860,1938,2044,2150,2229,2309,2366,2424,2498,2573,2638,2704,2764,2825,2897,2970,3037,3105,3164,3223,3282,3341,3400,3454,3508,3561,3615,3669,3723,3777,3983,4062,4135,4209,4280,4352,4424,4497,4554,4612,4685,4759,4833,4908,4980,5053,5123,5194,5254,5315,5384,5453,5523,5597,5673,5737,5814,5890,5967,6032,6101,6178,6253,6322,6390,6467,6533,6594,6691,6756,6825,6924,6995,7054,7112,7169,7228,7292,7363,7435,7507,7579,7651,7718,7786,7854,7913,7976,8040,8130,8221,8281,8347,8414,8480,8550,8614,8667,8734,8795,8862,8975,9033,9096,9161,9226,9301,9374,9446,9490,9537,9583,9632,9693,9754,9815,9877,9941,10005,10069,10134,10197,10257,10318,10384,10443,10503,10565,10636,10696,10764,11338,11425,11515,11602,11690,11772,11855,11945,12036,13066,13124,13169,13235,13299,13356,13413,13467,15647,15695,15744,15795,15946,16063,16112,16223,17114,17389,17451,17511,17568,17712,17782,17860,17914,17984,18069,18117,18163,18224,18287,18353,18417,18488,18551,18616,18680,18741,18802,18854,18927,19001,19070,19145,19219,19293,19434,19504,19557,19706,19796,19884,19980,20070,20652,20741,20988,21269,21521,21806,22199,22676,22898,23120,23396,23623,23853,24083,24313,24543,24770,25189,25415,25840,26070,26498,26717,27000,27208,27339,27566,27992,28217,28644,28865,29290,29410,29686,29987,30311,30602,30916,31053,31184,31289,31531,31698,31902,32110,32381,32493,32605,32710,32827,33041,33187,33327,33413,33761,33849,34095,34513,34762,34844,34942,35624,35724,35976,36400,36655,36749,36838,37075,39127,39369,39471,39724,41908,53097,54613,65900,67428,69185,69811,70231,71492,72757,73013,73249,73796,74290,74895,75093,75673,77041,77416,77534,78072,78229,78425,78698,78954,79124,79265,79329,79694,80061,80737,81001,81339,81692,81786,81972,82278,82540,82665,82792,83031,83242,83361,83554,83731,84186,84367,84489,84748,84861,85048,85150,85257,85386,85661,86169,86665,87542,87836,88406,88555,89287,89459,89543,89879,89971,90249,96109,101643,101705,102335,102949,103040,103153,103382,103542,103694,103865,104031,104200,104367,104530,104773,104943,105116,105287,105561,105760,105965,106295,106379,106475,106571,106669,106769,106871,106973,107075,107177,107279,107379,107475,107587,107716,107839,107970,108101,108199,108313,108407,108547,108681,108777,108889,108989,109105,109201,109313,109413,109553,109689,109853,109983,110141,110291,110432,110576,110711,110823,110973,111101,111229,111365,111497,111627,111757,111869,112009,112913,113057,113195,113261,113351,113427,113531,113621,113723,113831,113939,114039,114119,114211,114309,114419,114471,114549,114655,114747,114851,114961,115083,115246,115403,115483,115583,115673,115783,115873,116114,116208,116314,116406,116506,116618,116732,116848,116964,117058,117172,117284,117386,117506,117628,117710,117814,117934,118060,118158,118252,118340,118452,118568,118690,118802,118977,119093,119179,119271,119383,119507,119574,119700,119768,119896,120040,120168,120237,120332,120447,120560,120659,120768,120879,120990,121091,121196,121296,121426,121517,121640,121734,121846,121932,122036,122132,122220,122338,122442,122546,122672,122760,122868,122968,123058,123168,123252,123354,123438,123492,123556,123662,123748,123858,123942,124062,129345,129463,129578,129710,130425,131117,132249,136477,138010,138398,143133,163796,164056,166301,167334,177168,177430,177786,178616,185398,186532,186826,187049,187376,189426,190074,198059,199261,203340,204555,205964,206438" - } - }, - { - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\values\\styles.xml", - "from": { - "startLines": "3,14", - "startColumns": "4,4", - "startOffsets": "176,821", - "endLines": "7,16", - "endColumns": "12,12", - "endOffsets": "472,987" - }, - "to": { - "startLines": "1394,1399", - "startColumns": "4,4", - "startOffsets": "90254,90551", - "endLines": "1398,1401", - "endColumns": "12,12", - "endOffsets": "90546,90715" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\03c633e46d75bfb21f082f0417f55161\\jetified-window-1.0.0-beta04\\res\\values\\values.xml", - "from": { - "startLines": "2,7,8,9,10,11,19,23,34,51", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,234,294,346,391,451,869,1066,1790,2904", - "endLines": "6,7,8,9,10,18,22,33,50,58", - "endColumns": "11,59,51,44,59,24,24,24,24,24", - "endOffsets": "229,289,341,386,446,864,1061,1785,2899,3292" - }, - "to": { - "startLines": "6,11,12,13,241,1946,1954,3052,3063,3080", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "314,493,553,605,15800,131122,131540,190079,190803,191917", - "endLines": "10,11,12,13,241,1953,1957,3062,3079,3087", - "endColumns": "11,59,51,44,59,24,24,24,24,24", - "endOffsets": "488,548,600,645,15855,131535,131732,190798,191912,192305" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,89,90,94,95,96,97,104,111,159,191,228", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6400,6698,9998,12063,13823", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,88,89,93,94,95,96,103,110,158,190,227,234", - "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", - "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6395,6693,9993,12058,13818,14195" - }, - "to": { - "startLines": "5,24,25,60,61,163,164,165,166,167,168,169,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,244,245,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,275,304,1673,1674,1678,1679,1683,1827,1828,2562,2569,2622,2670,2711,2748", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "254,1309,1381,3782,3851,10769,10839,10907,10979,11049,11110,11184,12041,12102,12163,12225,12289,12351,12412,12480,12580,12640,12706,12779,12848,12905,12957,13472,13544,13620,13685,13744,13803,13863,13923,13983,14043,14103,14163,14223,14283,14343,14403,14462,14522,14582,14642,14702,14762,14822,14882,14942,15002,15062,15121,15181,15241,15300,15359,15418,15477,15536,15951,15986,16228,16283,16346,16401,16459,16517,16578,16641,16698,16749,16799,16860,16917,16983,17017,17052,17573,19562,112014,112131,112332,112442,112643,124067,124139,164061,164498,167339,170639,173023,174783", - "endLines": "5,24,25,60,61,163,164,165,166,167,168,169,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,244,245,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,275,304,1673,1677,1678,1682,1683,1827,1828,2568,2575,2669,2701,2747,2754", - "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", - "endOffsets": "309,1376,1464,3846,3909,10834,10902,10974,11044,11105,11179,11252,12097,12158,12220,12284,12346,12407,12475,12575,12635,12701,12774,12843,12900,12952,13014,13539,13615,13680,13739,13798,13858,13918,13978,14038,14098,14158,14218,14278,14338,14398,14457,14517,14577,14637,14697,14757,14817,14877,14937,14997,15057,15116,15176,15236,15295,15354,15413,15472,15531,15590,15981,16016,16278,16341,16396,16454,16512,16573,16636,16693,16744,16794,16855,16912,16978,17012,17047,17082,17638,19628,112126,112327,112437,112638,112767,124134,124201,164493,164791,170634,172699,174778,175155" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\42acb13871cd74f812098a2f4b7b2625\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "49", - "endOffsets": "100" - }, - "to": { - "startLines": "269", - "startColumns": "4", - "startOffsets": "17216", - "endColumns": "49", - "endOffsets": "17261" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\1f318d44f7cc290e64a3a0110f6d1b61\\jetified-savedstate-1.1.0\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "53", - "endOffsets": "104" - }, - "to": { - "startLines": "268", - "startColumns": "4", - "startOffsets": "17162", - "endColumns": "53", - "endOffsets": "17211" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\2efc05e976be65ba7f6f40769896581c\\jetified-appcompat-resources-1.3.0\\res\\values\\values.xml", - "from": { - "startLines": "2,29,36,47,74", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,1702,2087,2684,4317", - "endLines": "28,35,46,73,78", - "endColumns": "24,24,24,24,24", - "endOffsets": "1697,2082,2679,4312,4582" - }, - "to": { - "startLines": "1968,1995,2002,3088,3115", - "startColumns": "4,4,4,4,4", - "startOffsets": "132254,133901,134286,192310,193943", - "endLines": "1994,2001,2012,3114,3119", - "endColumns": "24,24,24,24,24", - "endOffsets": "133896,134281,134878,193938,194208" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\8d9ac4f576feffd2558f0cc20fbb942d\\fragment-1.3.4\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,10", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,112,177,241,411", - "endLines": "2,3,4,9,13", - "endColumns": "56,64,63,24,24", - "endOffsets": "107,172,236,406,555" - }, - "to": { - "startLines": "242,248,270,2702,2707", - "startColumns": "4,4,4,4,4", - "startOffsets": "15860,16117,17266,172704,172874", - "endLines": "242,248,270,2706,2710", - "endColumns": "56,64,63,24,24", - "endOffsets": "15912,16177,17325,172869,173018" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\8578375fbf5df5bbe65cca21a6cd6acf\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "42", - "endOffsets": "93" - }, - "to": { - "startLines": "267", - "startColumns": "4", - "startOffsets": "17119", - "endColumns": "42", - "endOffsets": "17157" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-bn_values-bn.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bn\\values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", - "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", - "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bn\\values-bn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2922", - "endColumns": "100", - "endOffsets": "3018" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-v28_values-v28.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v28\\values-v28.xml", - "from": { - "startLines": "2,3,4,8", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,447", - "endLines": "2,3,7,11", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,442,684" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-nl_values-nl.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-nl\\values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", - "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", - "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-nl\\values-nl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2914", - "endColumns": "100", - "endOffsets": "3010" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ar_values-ar.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ar\\values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", - "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", - "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ar\\values-ar.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2840", - "endColumns": "100", - "endOffsets": "2936" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-sk_values-sk.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sk\\values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", - "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", - "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sk\\values-sk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2900", - "endColumns": "100", - "endOffsets": "2996" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-hdpi-v4_values-hdpi-v4.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hdpi-v4\\values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-da_values-da.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-da\\values-da.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2837", - "endColumns": "100", - "endOffsets": "2933" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-da\\values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", - "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", - "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-mn_values-mn.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mn\\values-mn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2878", - "endColumns": "100", - "endOffsets": "2974" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mn\\values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", - "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", - "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-ky_values-ky.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ky\\values-ky.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2899", - "endColumns": "100", - "endOffsets": "2995" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ky\\values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", - "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", - "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-fa_values-fa.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fa\\values-fa.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fa\\values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", - "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", - "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-zh-rTW_values-zh-rTW.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rTW\\values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", - "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", - "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rTW\\values-zh-rTW.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2750", - "endColumns": "100", - "endOffsets": "2846" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-land_values-land.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-land\\values-land.xml", - "from": { - "startLines": "2,3,4", - "startColumns": "4,4,4", - "startOffsets": "55,125,196", - "endColumns": "69,70,67", - "endOffsets": "120,191,259" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-be_values-be.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-be\\values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", - "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", - "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-be\\values-be.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2917", - "endColumns": "100", - "endOffsets": "3013" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-es_values-es.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-es\\values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", - "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", - "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-es\\values-es.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2919", - "endColumns": "100", - "endOffsets": "3015" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-uk_values-uk.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-uk\\values-uk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2911", - "endColumns": "100", - "endOffsets": "3007" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-uk\\values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", - "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", - "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-tr_values-tr.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-tr\\values-tr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-tr\\values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", - "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", - "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-kn_values-kn.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-kn\\values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", - "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", - "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-kn\\values-kn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2942", - "endColumns": "100", - "endOffsets": "3038" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-my_values-my.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-my\\values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", - "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", - "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-my\\values-my.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2958", - "endColumns": "100", - "endOffsets": "3054" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-vi_values-vi.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-vi\\values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", - "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", - "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-vi\\values-vi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2883", - "endColumns": "100", - "endOffsets": "2979" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-am_values-am.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-am\\values-am.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2803", - "endColumns": "100", - "endOffsets": "2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-am\\values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", - "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", - "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-hu_values-hu.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hu\\values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", - "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", - "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hu\\values-hu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2943", - "endColumns": "100", - "endOffsets": "3039" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-en-rGB_values-en-rGB.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rGB\\values-en-rGB.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rGB\\values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-in_values-in.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-in\\values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", - "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", - "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-in\\values-in.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2894", - "endColumns": "100", - "endOffsets": "2990" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-pt-rPT_values-pt-rPT.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt-rPT\\values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", - "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", - "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt-rPT\\values-pt-rPT.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2922", - "endColumns": "100", - "endOffsets": "3018" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-lv_values-lv.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lv\\values-lv.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "3072", - "endColumns": "100", - "endOffsets": "3168" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lv\\values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", - "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", - "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" - } - } - ] - }, - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\values-is_values-is.arsc.flat", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-is\\values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", - "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", - "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-is\\values-is.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2860", - "endColumns": "100", - "endOffsets": "2956" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json deleted file mode 100644 index 1e831051..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-af\\values-af.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-af\\values-af.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2858", - "endColumns": "100", - "endOffsets": "2954" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-af\\values-af.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,309,415,500,603,721,798,874,965,1058,1153,1247,1346,1439,1534,1633,1728,1822,1903,2010,2115,2212,2320,2423,2525,2679,2777", - "endColumns": "107,95,105,84,102,117,76,75,90,92,94,93,98,92,94,98,94,93,80,106,104,96,107,102,101,153,97,80", - "endOffsets": "208,304,410,495,598,716,793,869,960,1053,1148,1242,1341,1434,1529,1628,1723,1817,1898,2005,2110,2207,2315,2418,2520,2674,2772,2853" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json deleted file mode 100644 index d9a4014c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-am\\values-am.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-am\\values-am.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2803", - "endColumns": "100", - "endOffsets": "2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-am\\values-am.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,203,301,407,493,596,713,791,867,958,1051,1143,1237,1337,1430,1525,1618,1709,1800,1880,1980,2080,2176,2278,2378,2477,2627,2723", - "endColumns": "97,97,105,85,102,116,77,75,90,92,91,93,99,92,94,92,90,90,79,99,99,95,101,99,98,149,95,79", - "endOffsets": "198,296,402,488,591,708,786,862,953,1046,1138,1232,1332,1425,1520,1613,1704,1795,1875,1975,2075,2171,2273,2373,2472,2622,2718,2798" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json deleted file mode 100644 index 31ca6f44..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ar\\values-ar.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ar\\values-ar.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,317,424,506,607,721,801,879,970,1063,1155,1249,1349,1442,1537,1630,1721,1815,1894,1999,2097,2195,2303,2403,2506,2661,2758", - "endColumns": "107,103,106,81,100,113,79,77,90,92,91,93,99,92,94,92,90,93,78,104,97,97,107,99,102,154,96,81", - "endOffsets": "208,312,419,501,602,716,796,874,965,1058,1150,1244,1344,1437,1532,1625,1716,1810,1889,1994,2092,2190,2298,2398,2501,2656,2753,2835" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ar\\values-ar.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2840", - "endColumns": "100", - "endOffsets": "2936" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json deleted file mode 100644 index cad777d7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-as\\values-as.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-as\\values-as.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,312,419,510,612,732,809,884,975,1068,1163,1257,1357,1450,1545,1639,1730,1821,1907,2020,2128,2227,2336,2452,2572,2739,2841", - "endColumns": "107,98,106,90,101,119,76,74,90,92,94,93,99,92,94,93,90,90,85,112,107,98,108,115,119,166,101,82", - "endOffsets": "208,307,414,505,607,727,804,879,970,1063,1158,1252,1352,1445,1540,1634,1725,1816,1902,2015,2123,2222,2331,2447,2567,2734,2836,2919" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-as\\values-as.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2924", - "endColumns": "100", - "endOffsets": "3020" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json deleted file mode 100644 index 40eb3715..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-az\\values-az.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-az\\values-az.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2897", - "endColumns": "100", - "endOffsets": "2993" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-az\\values-az.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,215,316,426,514,621,735,817,895,986,1079,1173,1272,1372,1465,1560,1654,1745,1837,1922,2027,2133,2233,2342,2447,2549,2707,2813", - "endColumns": "109,100,109,87,106,113,81,77,90,92,93,98,99,92,94,93,90,91,84,104,105,99,108,104,101,157,105,83", - "endOffsets": "210,311,421,509,616,730,812,890,981,1074,1168,1267,1367,1460,1555,1649,1740,1832,1917,2022,2128,2228,2337,2442,2544,2702,2808,2892" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json deleted file mode 100644 index 15f7dd3c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-b+sr+Latn\\values-b+sr+Latn.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2923", - "endColumns": "100", - "endOffsets": "3019" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,419,505,609,731,816,898,989,1082,1177,1271,1371,1464,1559,1664,1755,1846,1932,2037,2143,2246,2353,2462,2569,2739,2836", - "endColumns": "106,100,105,85,103,121,84,81,90,92,94,93,99,92,94,104,90,90,85,104,105,102,106,108,106,169,96,86", - "endOffsets": "207,308,414,500,604,726,811,893,984,1077,1172,1266,1366,1459,1554,1659,1750,1841,1927,2032,2138,2241,2348,2457,2564,2734,2831,2918" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json deleted file mode 100644 index 13547b94..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-be\\values-be.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-be\\values-be.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,328,444,530,635,754,834,911,1003,1097,1192,1286,1381,1475,1571,1666,1758,1850,1931,2037,2142,2240,2348,2454,2562,2735,2835", - "endColumns": "119,102,115,85,104,118,79,76,91,93,94,93,94,93,95,94,91,91,80,105,104,97,107,105,107,172,99,81", - "endOffsets": "220,323,439,525,630,749,829,906,998,1092,1187,1281,1376,1470,1566,1661,1753,1845,1926,2032,2137,2235,2343,2449,2557,2730,2830,2912" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-be\\values-be.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2917", - "endColumns": "100", - "endOffsets": "3013" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json deleted file mode 100644 index e4cb6509..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bg\\values-bg.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bg\\values-bg.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,436,522,632,753,833,910,1001,1094,1189,1283,1383,1476,1571,1679,1770,1861,1944,2058,2166,2266,2380,2487,2595,2755,2854", - "endColumns": "119,105,104,85,109,120,79,76,90,92,94,93,99,92,94,107,90,90,82,113,107,99,113,106,107,159,98,83", - "endOffsets": "220,326,431,517,627,748,828,905,996,1089,1184,1278,1378,1471,1566,1674,1765,1856,1939,2053,2161,2261,2375,2482,2590,2750,2849,2933" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bg\\values-bg.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2938", - "endColumns": "100", - "endOffsets": "3034" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json deleted file mode 100644 index bcc470dd..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bn\\values-bn.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bn\\values-bn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,319,425,514,619,740,823,905,996,1089,1183,1277,1377,1470,1565,1659,1750,1841,1927,2037,2141,2244,2352,2460,2565,2730,2835", - "endColumns": "107,105,105,88,104,120,82,81,90,92,93,93,99,92,94,93,90,90,85,109,103,102,107,107,104,164,104,86", - "endOffsets": "208,314,420,509,614,735,818,900,991,1084,1178,1272,1372,1465,1560,1654,1745,1836,1922,2032,2136,2239,2347,2455,2560,2725,2830,2917" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bn\\values-bn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2922", - "endColumns": "100", - "endOffsets": "3018" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json deleted file mode 100644 index 62b897a1..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bs\\values-bs.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-bs\\values-bs.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2917", - "endColumns": "100", - "endOffsets": "3013" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-bs\\values-bs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,226,323,430,516,620,742,827,909,1000,1093,1188,1282,1382,1475,1570,1665,1756,1847,1935,2038,2142,2243,2348,2462,2565,2734,2830", - "endColumns": "120,96,106,85,103,121,84,81,90,92,94,93,99,92,94,94,90,90,87,102,103,100,104,113,102,168,95,86", - "endOffsets": "221,318,425,511,615,737,822,904,995,1088,1183,1277,1377,1470,1565,1660,1751,1842,1930,2033,2137,2238,2343,2457,2560,2729,2825,2912" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json deleted file mode 100644 index 74ff55ef..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ca\\values-ca.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ca\\values-ca.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,228,333,440,523,629,755,839,918,1009,1102,1195,1290,1388,1481,1574,1668,1759,1850,1931,2042,2150,2248,2358,2463,2571,2731,2830", - "endColumns": "122,104,106,82,105,125,83,78,90,92,92,94,97,92,92,93,90,90,80,110,107,97,109,104,107,159,98,81", - "endOffsets": "223,328,435,518,624,750,834,913,1004,1097,1190,1285,1383,1476,1569,1663,1754,1845,1926,2037,2145,2243,2353,2458,2566,2726,2825,2907" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ca\\values-ca.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2912", - "endColumns": "100", - "endOffsets": "3008" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json deleted file mode 100644 index db530522..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-cs\\values-cs.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-cs\\values-cs.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2882", - "endColumns": "100", - "endOffsets": "2978" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-cs\\values-cs.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,314,424,510,615,732,810,886,977,1070,1165,1259,1353,1446,1541,1638,1729,1820,1904,2008,2120,2219,2325,2436,2538,2701,2799", - "endColumns": "106,101,109,85,104,116,77,75,90,92,94,93,93,92,94,96,90,90,83,103,111,98,105,110,101,162,97,82", - "endOffsets": "207,309,419,505,610,727,805,881,972,1065,1160,1254,1348,1441,1536,1633,1724,1815,1899,2003,2115,2214,2320,2431,2533,2696,2794,2877" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json deleted file mode 100644 index 542e3705..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-da\\values-da.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-da\\values-da.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2837", - "endColumns": "100", - "endOffsets": "2933" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-da\\values-da.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,205,299,415,500,600,713,791,867,958,1051,1144,1238,1332,1425,1520,1618,1709,1800,1879,1987,2094,2190,2303,2406,2507,2660,2757", - "endColumns": "99,93,115,84,99,112,77,75,90,92,92,93,93,92,94,97,90,90,78,107,106,95,112,102,100,152,96,79", - "endOffsets": "200,294,410,495,595,708,786,862,953,1046,1139,1233,1327,1420,1515,1613,1704,1795,1874,1982,2089,2185,2298,2401,2502,2655,2752,2832" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json deleted file mode 100644 index 166a7c4f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-de\\values-de.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-de\\values-de.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,308,420,506,612,727,805,880,972,1066,1162,1263,1370,1470,1574,1672,1770,1867,1949,2060,2162,2260,2367,2470,2574,2730,2832", - "endColumns": "104,97,111,85,105,114,77,74,91,93,95,100,106,99,103,97,97,96,81,110,101,97,106,102,103,155,101,81", - "endOffsets": "205,303,415,501,607,722,800,875,967,1061,1157,1258,1365,1465,1569,1667,1765,1862,1944,2055,2157,2255,2362,2465,2569,2725,2827,2909" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-de\\values-de.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2914", - "endColumns": "100", - "endOffsets": "3010" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json deleted file mode 100644 index 90409861..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-el\\values-el.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-el\\values-el.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,223,334,451,536,642,765,854,939,1030,1123,1218,1312,1412,1505,1600,1697,1788,1879,1964,2075,2184,2286,2397,2507,2615,2786,2886", - "endColumns": "117,110,116,84,105,122,88,84,90,92,94,93,99,92,94,96,90,90,84,110,108,101,110,109,107,170,99,85", - "endOffsets": "218,329,446,531,637,760,849,934,1025,1118,1213,1307,1407,1500,1595,1692,1783,1874,1959,2070,2179,2281,2392,2502,2610,2781,2881,2967" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-el\\values-el.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2972", - "endColumns": "100", - "endOffsets": "3068" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json deleted file mode 100644 index e0f39d73..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rAU\\values-en-rAU.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rAU\\values-en-rAU.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rAU\\values-en-rAU.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json deleted file mode 100644 index 695bb037..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rCA\\values-en-rCA.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rCA\\values-en-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rCA\\values-en-rCA.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json deleted file mode 100644 index bfa84687..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rGB\\values-en-rGB.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rGB\\values-en-rGB.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rGB\\values-en-rGB.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json deleted file mode 100644 index a74ac0c7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rIN\\values-en-rIN.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rIN\\values-en-rIN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,309,417,501,601,716,794,869,960,1053,1148,1242,1342,1435,1530,1624,1715,1806,1888,1991,2094,2193,2298,2402,2506,2662,2762", - "endColumns": "103,99,107,83,99,114,77,74,90,92,94,93,99,92,94,93,90,90,81,102,102,98,104,103,103,155,99,82", - "endOffsets": "204,304,412,496,596,711,789,864,955,1048,1143,1237,1337,1430,1525,1619,1710,1801,1883,1986,2089,2188,2293,2397,2501,2657,2757,2840" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rIN\\values-en-rIN.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2845", - "endColumns": "100", - "endOffsets": "2941" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json deleted file mode 100644 index cf1e5cd2..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rXC\\values-en-rXC.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-en-rXC\\values-en-rXC.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "203", - "endOffsets": "254" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "5714", - "endColumns": "203", - "endOffsets": "5913" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-en-rXC\\values-en-rXC.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,312,515,725,912,1113,1329,1509,1684,1878,2072,2267,2464,2663,2858,3056,3253,3447,3641,3826,4031,4234,4435,4641,4846,5053,5327,5528", - "endColumns": "206,202,209,186,200,215,179,174,193,193,194,196,198,194,197,196,193,193,184,204,202,200,205,204,206,273,200,185", - "endOffsets": "307,510,720,907,1108,1324,1504,1679,1873,2067,2262,2459,2658,2853,3051,3248,3442,3636,3821,4026,4229,4430,4636,4841,5048,5322,5523,5709" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json deleted file mode 100644 index db6ac1f6..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es-rUS\\values-es-rUS.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-es-rUS\\values-es-rUS.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,334,442,527,629,745,830,910,1001,1094,1189,1283,1382,1475,1574,1670,1761,1852,1934,2041,2140,2239,2347,2455,2562,2721,2821", - "endColumns": "119,108,107,84,101,115,84,79,90,92,94,93,98,92,98,95,90,90,81,106,98,98,107,107,106,158,99,82", - "endOffsets": "220,329,437,522,624,740,825,905,996,1089,1184,1278,1377,1470,1569,1665,1756,1847,1929,2036,2135,2234,2342,2450,2557,2716,2816,2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-es-rUS\\values-es-rUS.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2904", - "endColumns": "100", - "endOffsets": "3000" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json deleted file mode 100644 index 734c9c37..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es\\values-es.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-es\\values-es.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,207,320,428,513,614,742,828,909,1001,1095,1192,1286,1386,1480,1576,1672,1764,1856,1938,2045,2156,2255,2363,2471,2578,2737,2836", - "endColumns": "101,112,107,84,100,127,85,80,91,93,96,93,99,93,95,95,91,91,81,106,110,98,107,107,106,158,98,82", - "endOffsets": "202,315,423,508,609,737,823,904,996,1090,1187,1281,1381,1475,1571,1667,1759,1851,1933,2040,2151,2250,2358,2466,2573,2732,2831,2914" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-es\\values-es.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2919", - "endColumns": "100", - "endOffsets": "3015" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json deleted file mode 100644 index 5ec796e8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-et\\values-et.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-et\\values-et.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,211,310,421,507,609,726,807,884,976,1070,1166,1268,1377,1471,1572,1666,1758,1851,1934,2045,2149,2248,2358,2460,2559,2725,2827", - "endColumns": "105,98,110,85,101,116,80,76,91,93,95,101,108,93,100,93,91,92,82,110,103,98,109,101,98,165,101,82", - "endOffsets": "206,305,416,502,604,721,802,879,971,1065,1161,1263,1372,1466,1567,1661,1753,1846,1929,2040,2144,2243,2353,2455,2554,2720,2822,2905" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-et\\values-et.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2910", - "endColumns": "100", - "endOffsets": "3006" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json deleted file mode 100644 index ce4db06c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-eu\\values-eu.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-eu\\values-eu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2933", - "endColumns": "100", - "endOffsets": "3029" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-eu\\values-eu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,214,312,422,508,614,738,824,905,997,1091,1187,1281,1382,1476,1572,1669,1761,1854,1936,2045,2154,2253,2362,2469,2580,2751,2850", - "endColumns": "108,97,109,85,105,123,85,80,91,93,95,93,100,93,95,96,91,92,81,108,108,98,108,106,110,170,98,82", - "endOffsets": "209,307,417,503,609,733,819,900,992,1086,1182,1276,1377,1471,1567,1664,1756,1849,1931,2040,2149,2248,2357,2464,2575,2746,2845,2928" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json deleted file mode 100644 index 1dcca91b..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fa\\values-fa.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fa\\values-fa.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fa\\values-fa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,215,316,427,511,612,727,807,884,977,1072,1164,1258,1360,1455,1552,1646,1739,1829,1911,2019,2123,2221,2327,2432,2537,2694,2795", - "endColumns": "109,100,110,83,100,114,79,76,92,94,91,93,101,94,96,93,92,89,81,107,103,97,105,104,104,156,100,81", - "endOffsets": "210,311,422,506,607,722,802,879,972,1067,1159,1253,1355,1450,1547,1641,1734,1824,1906,2014,2118,2216,2322,2427,2532,2689,2790,2872" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json deleted file mode 100644 index d9f8c9cf..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fi\\values-fi.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fi\\values-fi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,313,422,508,613,731,817,896,987,1080,1175,1269,1363,1456,1552,1651,1742,1836,1916,2023,2124,2221,2327,2427,2525,2675,2775", - "endColumns": "107,99,108,85,104,117,85,78,90,92,94,93,93,92,95,98,90,93,79,106,100,96,105,99,97,149,99,80", - "endOffsets": "208,308,417,503,608,726,812,891,982,1075,1170,1264,1358,1451,1547,1646,1737,1831,1911,2018,2119,2216,2322,2422,2520,2670,2770,2851" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fi\\values-fi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2856", - "endColumns": "100", - "endOffsets": "2952" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json deleted file mode 100644 index 2cc84964..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr-rCA\\values-fr-rCA.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fr-rCA\\values-fr-rCA.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,323,433,520,626,756,841,921,1012,1105,1203,1298,1398,1491,1584,1679,1770,1861,1947,2057,2168,2271,2382,2490,2597,2756,2855", - "endColumns": "110,106,109,86,105,129,84,79,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", - "endOffsets": "211,318,428,515,621,751,836,916,1007,1100,1198,1293,1393,1486,1579,1674,1765,1856,1942,2052,2163,2266,2377,2485,2592,2751,2850,2937" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fr-rCA\\values-fr-rCA.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2942", - "endColumns": "100", - "endOffsets": "3038" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json deleted file mode 100644 index 2dfef24c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr\\values-fr.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-fr\\values-fr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,331,441,523,629,759,837,913,1004,1097,1195,1290,1390,1483,1576,1671,1762,1853,1939,2049,2160,2263,2374,2482,2589,2748,2847", - "endColumns": "110,114,109,81,105,129,77,75,90,92,97,94,99,92,92,94,90,90,85,109,110,102,110,107,106,158,98,86", - "endOffsets": "211,326,436,518,624,754,832,908,999,1092,1190,1285,1385,1478,1571,1666,1757,1848,1934,2044,2155,2258,2369,2477,2584,2743,2842,2929" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-fr\\values-fr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2934", - "endColumns": "100", - "endOffsets": "3030" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json deleted file mode 100644 index 82be1c39..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gl\\values-gl.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-gl\\values-gl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,209,313,421,506,607,735,820,900,992,1086,1183,1277,1377,1471,1567,1662,1754,1846,1927,2035,2142,2249,2358,2463,2577,2754,2853", - "endColumns": "103,103,107,84,100,127,84,79,91,93,96,93,99,93,95,94,91,91,80,107,106,106,108,104,113,176,98,82", - "endOffsets": "204,308,416,501,602,730,815,895,987,1081,1178,1272,1372,1466,1562,1657,1749,1841,1922,2030,2137,2244,2353,2458,2572,2749,2848,2931" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-gl\\values-gl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2936", - "endColumns": "100", - "endOffsets": "3032" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json deleted file mode 100644 index d792fb5e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gu\\values-gu.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-gu\\values-gu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2869", - "endColumns": "100", - "endOffsets": "2965" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-gu\\values-gu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,316,423,510,610,730,808,885,976,1069,1164,1258,1358,1451,1546,1640,1731,1822,1902,2008,2109,2206,2315,2415,2525,2685,2788", - "endColumns": "106,103,106,86,99,119,77,76,90,92,94,93,99,92,94,93,90,90,79,105,100,96,108,99,109,159,102,80", - "endOffsets": "207,311,418,505,605,725,803,880,971,1064,1159,1253,1353,1446,1541,1635,1726,1817,1897,2003,2104,2201,2310,2410,2520,2680,2783,2864" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json deleted file mode 100644 index 5e6400db..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-h720dp-v13\\values-h720dp-v13.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-h720dp-v13\\values-h720dp-v13.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "66", - "endOffsets": "117" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json deleted file mode 100644 index c1bdccda..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hdpi-v4\\values-hdpi-v4.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hdpi-v4\\values-hdpi-v4.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "6", - "endColumns": "13", - "endOffsets": "327" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json deleted file mode 100644 index e100ab12..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hi\\values-hi.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hi\\values-hi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,211,309,419,505,607,728,806,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1901,2006,2108,2206,2316,2419,2528,2686,2787", - "endColumns": "105,97,109,85,101,120,77,76,90,92,94,93,99,92,94,93,90,90,80,104,101,97,109,102,108,157,100,81", - "endOffsets": "206,304,414,500,602,723,801,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1896,2001,2103,2201,2311,2414,2523,2681,2782,2864" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hi\\values-hi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2869", - "endColumns": "100", - "endOffsets": "2965" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json deleted file mode 100644 index f631f347..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hr\\values-hr.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hr\\values-hr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,305,412,498,602,721,806,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1912,2016,2128,2229,2334,2448,2550,2719,2816", - "endColumns": "104,94,106,85,103,118,84,81,90,92,94,93,99,92,94,94,90,90,85,103,111,100,104,113,101,168,96,84", - "endOffsets": "205,300,407,493,597,716,801,883,974,1067,1162,1256,1356,1449,1544,1639,1730,1821,1907,2011,2123,2224,2329,2443,2545,2714,2811,2896" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hr\\values-hr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2901", - "endColumns": "100", - "endOffsets": "2997" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json deleted file mode 100644 index c63bb237..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hu\\values-hu.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hu\\values-hu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,305,420,504,619,742,819,894,985,1078,1173,1267,1367,1460,1555,1650,1741,1832,1915,2025,2135,2235,2346,2455,2574,2756,2859", - "endColumns": "107,91,114,83,114,122,76,74,90,92,94,93,99,92,94,94,90,90,82,109,109,99,110,108,118,181,102,83", - "endOffsets": "208,300,415,499,614,737,814,889,980,1073,1168,1262,1362,1455,1550,1645,1736,1827,1910,2020,2130,2230,2341,2450,2569,2751,2854,2938" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hu\\values-hu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2943", - "endColumns": "100", - "endOffsets": "3039" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json deleted file mode 100644 index cba2d705..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hy\\values-hy.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-hy\\values-hy.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,313,423,512,618,735,817,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1917,2023,2129,2228,2338,2446,2547,2717,2814", - "endColumns": "107,99,109,88,105,116,81,79,90,92,94,93,99,92,94,93,90,90,82,105,105,98,109,107,100,169,96,82", - "endOffsets": "208,308,418,507,613,730,812,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1912,2018,2124,2223,2333,2441,2542,2712,2809,2892" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-hy\\values-hy.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2897", - "endColumns": "100", - "endOffsets": "2993" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json deleted file mode 100644 index 0d981a51..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-in\\values-in.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-in\\values-in.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,324,429,516,620,736,819,897,988,1081,1176,1270,1370,1463,1558,1652,1743,1834,1920,2023,2128,2229,2333,2442,2550,2710,2809", - "endColumns": "114,103,104,86,103,115,82,77,90,92,94,93,99,92,94,93,90,90,85,102,104,100,103,108,107,159,98,84", - "endOffsets": "215,319,424,511,615,731,814,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1915,2018,2123,2224,2328,2437,2545,2705,2804,2889" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-in\\values-in.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2894", - "endColumns": "100", - "endOffsets": "2990" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json deleted file mode 100644 index 05463ea5..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-is\\values-is.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-is\\values-is.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,205,302,414,499,600,714,795,874,965,1058,1151,1245,1351,1444,1539,1634,1725,1819,1900,2010,2117,2214,2323,2423,2526,2681,2779", - "endColumns": "99,96,111,84,100,113,80,78,90,92,92,93,105,92,94,94,90,93,80,109,106,96,108,99,102,154,97,80", - "endOffsets": "200,297,409,494,595,709,790,869,960,1053,1146,1240,1346,1439,1534,1629,1720,1814,1895,2005,2112,2209,2318,2418,2521,2676,2774,2855" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-is\\values-is.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2860", - "endColumns": "100", - "endOffsets": "2956" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json deleted file mode 100644 index 20097ed5..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-it\\values-it.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-it\\values-it.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-it\\values-it.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,313,422,506,611,730,808,883,975,1069,1162,1256,1357,1451,1548,1643,1735,1827,1908,2014,2121,2219,2323,2429,2536,2699,2799", - "endColumns": "104,102,108,83,104,118,77,74,91,93,92,93,100,93,96,94,91,91,80,105,106,97,103,105,106,162,99,81", - "endOffsets": "205,308,417,501,606,725,803,878,970,1064,1157,1251,1352,1446,1543,1638,1730,1822,1903,2009,2116,2214,2318,2424,2531,2694,2794,2876" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json deleted file mode 100644 index 28b8606a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-iw\\values-iw.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-iw\\values-iw.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2843", - "endColumns": "100", - "endOffsets": "2939" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-iw\\values-iw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,310,418,502,604,720,799,877,968,1062,1156,1250,1350,1443,1538,1631,1722,1814,1895,2000,2103,2201,2306,2408,2510,2664,2761", - "endColumns": "104,99,107,83,101,115,78,77,90,93,93,93,99,92,94,92,90,91,80,104,102,97,104,101,101,153,96,81", - "endOffsets": "205,305,413,497,599,715,794,872,963,1057,1151,1245,1345,1438,1533,1626,1717,1809,1890,1995,2098,2196,2301,2403,2505,2659,2756,2838" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json deleted file mode 100644 index e741f9f9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ja\\values-ja.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ja\\values-ja.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,202,295,400,482,580,688,766,841,932,1025,1120,1214,1314,1407,1502,1596,1687,1778,1856,1958,2056,2151,2254,2350,2446,2594,2691", - "endColumns": "96,92,104,81,97,107,77,74,90,92,94,93,99,92,94,93,90,90,77,101,97,94,102,95,95,147,96,78", - "endOffsets": "197,290,395,477,575,683,761,836,927,1020,1115,1209,1309,1402,1497,1591,1682,1773,1851,1953,2051,2146,2249,2345,2441,2589,2686,2765" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ja\\values-ja.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2770", - "endColumns": "100", - "endOffsets": "2866" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json deleted file mode 100644 index 276d16e3..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ka\\values-ka.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ka\\values-ka.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,316,427,513,618,731,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1912,2025,2131,2229,2342,2447,2551,2709,2808", - "endColumns": "107,102,110,85,104,112,82,78,90,92,94,93,99,92,94,94,90,90,80,112,105,97,112,104,103,157,98,81", - "endOffsets": "208,311,422,508,613,726,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1907,2020,2126,2224,2337,2442,2546,2704,2803,2885" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ka\\values-ka.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2890", - "endColumns": "100", - "endOffsets": "2986" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json deleted file mode 100644 index 4186421a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kk\\values-kk.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-kk\\values-kk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,318,428,513,619,738,818,895,986,1079,1174,1268,1368,1461,1556,1653,1744,1835,1916,2021,2124,2222,2329,2435,2535,2701,2796", - "endColumns": "107,104,109,84,105,118,79,76,90,92,94,93,99,92,94,96,90,90,80,104,102,97,106,105,99,165,94,81", - "endOffsets": "208,313,423,508,614,733,813,890,981,1074,1169,1263,1363,1456,1551,1648,1739,1830,1911,2016,2119,2217,2324,2430,2530,2696,2791,2873" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-kk\\values-kk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2878", - "endColumns": "100", - "endOffsets": "2974" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json deleted file mode 100644 index df92ccd1..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-km\\values-km.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-km\\values-km.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,207,306,416,503,606,727,805,881,972,1065,1157,1251,1351,1444,1539,1633,1724,1815,1898,2002,2106,2206,2315,2424,2533,2695,2793", - "endColumns": "101,98,109,86,102,120,77,75,90,92,91,93,99,92,94,93,90,90,82,103,103,99,108,108,108,161,97,83", - "endOffsets": "202,301,411,498,601,722,800,876,967,1060,1152,1246,1346,1439,1534,1628,1719,1810,1893,1997,2101,2201,2310,2419,2528,2690,2788,2872" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-km\\values-km.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json deleted file mode 100644 index 6e50748e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kn\\values-kn.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-kn\\values-kn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,331,444,532,639,765,843,919,1010,1103,1198,1292,1392,1485,1580,1674,1765,1856,1938,2054,2164,2263,2376,2481,2595,2759,2859", - "endColumns": "113,111,112,87,106,125,77,75,90,92,94,93,99,92,94,93,90,90,81,115,109,98,112,104,113,163,99,82", - "endOffsets": "214,326,439,527,634,760,838,914,1005,1098,1193,1287,1387,1480,1575,1669,1760,1851,1933,2049,2159,2258,2371,2476,2590,2754,2854,2937" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-kn\\values-kn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2942", - "endColumns": "100", - "endOffsets": "3038" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json deleted file mode 100644 index e02a2e5f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ko\\values-ko.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ko\\values-ko.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2764", - "endColumns": "100", - "endOffsets": "2860" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ko\\values-ko.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,202,296,397,479,577,683,763,838,929,1022,1117,1211,1311,1404,1499,1593,1684,1775,1855,1953,2047,2142,2242,2339,2439,2591,2685", - "endColumns": "96,93,100,81,97,105,79,74,90,92,94,93,99,92,94,93,90,90,79,97,93,94,99,96,99,151,93,78", - "endOffsets": "197,291,392,474,572,678,758,833,924,1017,1112,1206,1306,1399,1494,1588,1679,1770,1850,1948,2042,2137,2237,2334,2434,2586,2680,2759" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json deleted file mode 100644 index 37022a2d..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ky\\values-ky.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ky\\values-ky.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2899", - "endColumns": "100", - "endOffsets": "2995" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ky\\values-ky.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,325,437,522,627,744,823,901,992,1085,1180,1274,1374,1467,1562,1657,1748,1839,1920,2026,2131,2229,2336,2439,2554,2715,2817", - "endColumns": "110,108,111,84,104,116,78,77,90,92,94,93,99,92,94,94,90,90,80,105,104,97,106,102,114,160,101,81", - "endOffsets": "211,320,432,517,622,739,818,896,987,1080,1175,1269,1369,1462,1557,1652,1743,1834,1915,2021,2126,2224,2331,2434,2549,2710,2812,2894" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json deleted file mode 100644 index 0eb34235..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-land\\values-land.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-land\\values-land.xml", - "from": { - "startLines": "2,3,4", - "startColumns": "4,4,4", - "startOffsets": "55,125,196", - "endColumns": "69,70,67", - "endOffsets": "120,191,259" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json deleted file mode 100644 index ca88df6f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-large-v4\\values-large-v4.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-large-v4\\values-large-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10", - "startColumns": "4,4,4,4,4,4,4,4,4", - "startOffsets": "55,114,185,256,326,396,464,532,636", - "endColumns": "58,70,70,69,69,67,67,103,115", - "endOffsets": "109,180,251,321,391,459,527,631,747" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json deleted file mode 100644 index a3e176e7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ldltr-v21\\values-ldltr-v21.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ldltr-v21\\values-ldltr-v21.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "112", - "endOffsets": "163" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json deleted file mode 100644 index a52b98dc..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lo\\values-lo.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lo\\values-lo.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2854", - "endColumns": "100", - "endOffsets": "2950" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lo\\values-lo.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,311,424,509,613,724,802,879,970,1063,1155,1249,1349,1442,1537,1633,1724,1815,1896,2003,2107,2205,2308,2412,2516,2673,2772", - "endColumns": "102,102,112,84,103,110,77,76,90,92,91,93,99,92,94,95,90,90,80,106,103,97,102,103,103,156,98,81", - "endOffsets": "203,306,419,504,608,719,797,874,965,1058,1150,1244,1344,1437,1532,1628,1719,1810,1891,1998,2102,2200,2303,2407,2511,2668,2767,2849" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json deleted file mode 100644 index d2917f10..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lt\\values-lt.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lt\\values-lt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,221,325,438,525,627,749,832,912,1006,1102,1199,1295,1398,1494,1592,1688,1782,1876,1959,2068,2176,2276,2386,2491,2597,2773,2874", - "endColumns": "115,103,112,86,101,121,82,79,93,95,96,95,102,95,97,95,93,93,82,108,107,99,109,104,105,175,100,83", - "endOffsets": "216,320,433,520,622,744,827,907,1001,1097,1194,1290,1393,1489,1587,1683,1777,1871,1954,2063,2171,2271,2381,2486,2592,2768,2869,2953" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lt\\values-lt.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2958", - "endColumns": "100", - "endOffsets": "3054" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json deleted file mode 100644 index d0cf06e4..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lv\\values-lv.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-lv\\values-lv.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "3072", - "endColumns": "100", - "endOffsets": "3168" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-lv\\values-lv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,335,444,530,634,756,838,918,1028,1136,1242,1351,1462,1565,1677,1784,1889,1989,2074,2183,2294,2393,2504,2611,2716,2890,2989", - "endColumns": "119,109,108,85,103,121,81,79,109,107,105,108,110,102,111,106,104,99,84,108,110,98,110,106,104,173,98,82", - "endOffsets": "220,330,439,525,629,751,833,913,1023,1131,1237,1346,1457,1560,1672,1779,1884,1984,2069,2178,2289,2388,2499,2606,2711,2885,2984,3067" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json deleted file mode 100644 index e7722f3c..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mk\\values-mk.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mk\\values-mk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2905", - "endColumns": "100", - "endOffsets": "3001" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mk\\values-mk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,317,425,511,619,738,822,903,994,1087,1183,1277,1377,1470,1565,1661,1752,1843,1930,2036,2142,2243,2350,2462,2566,2722,2820", - "endColumns": "107,103,107,85,107,118,83,80,90,92,95,93,99,92,94,95,90,90,86,105,105,100,106,111,103,155,97,84", - "endOffsets": "208,312,420,506,614,733,817,898,989,1082,1178,1272,1372,1465,1560,1656,1747,1838,1925,2031,2137,2238,2345,2457,2561,2717,2815,2900" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json deleted file mode 100644 index c8c7ec55..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ml\\values-ml.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ml\\values-ml.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2937", - "endColumns": "100", - "endOffsets": "3033" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ml\\values-ml.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,318,429,520,625,747,825,900,991,1084,1185,1279,1379,1473,1568,1667,1758,1849,1931,2040,2144,2243,2355,2467,2588,2753,2854", - "endColumns": "106,105,110,90,104,121,77,74,90,92,100,93,99,93,94,98,90,90,81,108,103,98,111,111,120,164,100,82", - "endOffsets": "207,313,424,515,620,742,820,895,986,1079,1180,1274,1374,1468,1563,1662,1753,1844,1926,2035,2139,2238,2350,2462,2583,2748,2849,2932" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json deleted file mode 100644 index 69c9ce8b..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mn\\values-mn.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mn\\values-mn.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2878", - "endColumns": "100", - "endOffsets": "2974" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mn\\values-mn.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,319,428,514,620,734,817,898,989,1082,1177,1273,1370,1463,1557,1649,1740,1830,1910,2017,2120,2217,2324,2426,2539,2698,2797", - "endColumns": "113,99,108,85,105,113,82,80,90,92,94,95,96,92,93,91,90,89,79,106,102,96,106,101,112,158,98,80", - "endOffsets": "214,314,423,509,615,729,812,893,984,1077,1172,1268,1365,1458,1552,1644,1735,1825,1905,2012,2115,2212,2319,2421,2534,2693,2792,2873" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json deleted file mode 100644 index b5c7ec84..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mr\\values-mr.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-mr\\values-mr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,322,429,519,621,733,811,888,979,1072,1165,1262,1362,1455,1550,1644,1735,1826,1906,2013,2114,2213,2322,2424,2538,2695,2798", - "endColumns": "110,105,106,89,101,111,77,76,90,92,92,96,99,92,94,93,90,90,79,106,100,98,108,101,113,156,102,82", - "endOffsets": "211,317,424,514,616,728,806,883,974,1067,1160,1257,1357,1450,1545,1639,1730,1821,1901,2008,2109,2208,2317,2419,2533,2690,2793,2876" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-mr\\values-mr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json deleted file mode 100644 index 7ee2c343..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ms\\values-ms.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ms\\values-ms.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,321,429,516,620,731,810,888,979,1072,1167,1261,1359,1452,1547,1641,1732,1823,1903,2015,2123,2220,2329,2433,2540,2699,2800", - "endColumns": "110,104,107,86,103,110,78,77,90,92,94,93,97,92,94,93,90,90,79,111,107,96,108,103,106,158,100,80", - "endOffsets": "211,316,424,511,615,726,805,883,974,1067,1162,1256,1354,1447,1542,1636,1727,1818,1898,2010,2118,2215,2324,2428,2535,2694,2795,2876" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ms\\values-ms.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2881", - "endColumns": "100", - "endOffsets": "2977" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json deleted file mode 100644 index f491ff8e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-my\\values-my.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-my\\values-my.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,218,325,441,528,637,760,842,923,1014,1107,1202,1296,1396,1489,1584,1678,1769,1860,1945,2060,2169,2268,2394,2501,2609,2769,2872", - "endColumns": "112,106,115,86,108,122,81,80,90,92,94,93,99,92,94,93,90,90,84,114,108,98,125,106,107,159,102,85", - "endOffsets": "213,320,436,523,632,755,837,918,1009,1102,1197,1291,1391,1484,1579,1673,1764,1855,1940,2055,2164,2263,2389,2496,2604,2764,2867,2953" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-my\\values-my.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2958", - "endColumns": "100", - "endOffsets": "3054" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json deleted file mode 100644 index d7e1e8cd..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nb\\values-nb.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-nb\\values-nb.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,303,417,503,603,716,793,868,959,1052,1146,1240,1340,1433,1528,1626,1717,1808,1886,1989,2087,2183,2287,2386,2487,2640,2737", - "endColumns": "102,94,113,85,99,112,76,74,90,92,93,93,99,92,94,97,90,90,77,102,97,95,103,98,100,152,96,79", - "endOffsets": "203,298,412,498,598,711,788,863,954,1047,1141,1235,1335,1428,1523,1621,1712,1803,1881,1984,2082,2178,2282,2381,2482,2635,2732,2812" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-nb\\values-nb.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2817", - "endColumns": "100", - "endOffsets": "2913" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json deleted file mode 100644 index bdd1bf8e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ne\\values-ne.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ne\\values-ne.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2947", - "endColumns": "100", - "endOffsets": "3043" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ne\\values-ne.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,327,435,526,633,753,837,916,1007,1100,1195,1289,1389,1482,1577,1671,1762,1853,1939,2052,2153,2249,2362,2472,2589,2756,2867", - "endColumns": "110,110,107,90,106,119,83,78,90,92,94,93,99,92,94,93,90,90,85,112,100,95,112,109,116,166,110,79", - "endOffsets": "211,322,430,521,628,748,832,911,1002,1095,1190,1284,1384,1477,1572,1666,1757,1848,1934,2047,2148,2244,2357,2467,2584,2751,2862,2942" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json deleted file mode 100644 index 24585091..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-night-v8\\values-night-v8.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-night-v8\\values-night-v8.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,125,209,293,389,491,593,687", - "endColumns": "69,83,83,95,101,101,93,88", - "endOffsets": "120,204,288,384,486,588,682,771" - }, - "to": { - "startLines": "10,11,12,13,14,15,16,17", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "521,591,675,759,855,957,1059,1153", - "endColumns": "69,83,83,95,101,101,93,88", - "endOffsets": "586,670,754,850,952,1054,1148,1237" - } - }, - { - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\values-night\\styles.xml", - "from": { - "startLines": "3,14", - "startColumns": "4,4", - "startOffsets": "175,820", - "endLines": "7,16", - "endColumns": "12,12", - "endOffsets": "471,986" - }, - "to": { - "startLines": "2,7", - "startColumns": "4,4", - "startOffsets": "55,352", - "endLines": "6,9", - "endColumns": "12,12", - "endOffsets": "347,516" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json deleted file mode 100644 index 85ff58b4..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nl\\values-nl.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-nl\\values-nl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,223,328,435,520,628,748,826,902,994,1088,1183,1277,1377,1471,1567,1662,1754,1846,1928,2039,2142,2241,2356,2470,2573,2728,2831", - "endColumns": "117,104,106,84,107,119,77,75,91,93,94,93,99,93,95,94,91,91,81,110,102,98,114,113,102,154,102,82", - "endOffsets": "218,323,430,515,623,743,821,897,989,1083,1178,1272,1372,1466,1562,1657,1749,1841,1923,2034,2137,2236,2351,2465,2568,2723,2826,2909" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-nl\\values-nl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2914", - "endColumns": "100", - "endOffsets": "3010" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json deleted file mode 100644 index 2e78120e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-or\\values-or.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-or\\values-or.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2933", - "endColumns": "100", - "endOffsets": "3029" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-or\\values-or.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,224,334,441,527,631,751,830,906,997,1090,1186,1281,1381,1474,1569,1665,1756,1846,1935,2045,2149,2248,2359,2463,2581,2744,2850", - "endColumns": "118,109,106,85,103,119,78,75,90,92,95,94,99,92,94,95,90,89,88,109,103,98,110,103,117,162,105,82", - "endOffsets": "219,329,436,522,626,746,825,901,992,1085,1181,1276,1376,1469,1564,1660,1751,1841,1930,2040,2144,2243,2354,2458,2576,2739,2845,2928" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json deleted file mode 100644 index 4eda88f8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pa\\values-pa.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pa\\values-pa.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,305,410,496,596,709,787,864,955,1048,1142,1236,1336,1429,1524,1618,1709,1800,1879,1989,2092,2188,2299,2401,2511,2670,2767", - "endColumns": "102,96,104,85,99,112,77,76,90,92,93,93,99,92,94,93,90,90,78,109,102,95,110,101,109,158,96,79", - "endOffsets": "203,300,405,491,591,704,782,859,950,1043,1137,1231,1331,1424,1519,1613,1704,1795,1874,1984,2087,2183,2294,2396,2506,2665,2762,2842" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pa\\values-pa.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2847", - "endColumns": "100", - "endOffsets": "2943" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json deleted file mode 100644 index d334dde1..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pl\\values-pl.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pl\\values-pl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2900", - "endColumns": "100", - "endOffsets": "2996" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pl\\values-pl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,322,430,516,623,742,821,897,988,1081,1176,1270,1371,1464,1559,1654,1745,1836,1918,2027,2127,2226,2335,2447,2558,2721,2817", - "endColumns": "114,101,107,85,106,118,78,75,90,92,94,93,100,92,94,94,90,90,81,108,99,98,108,111,110,162,95,82", - "endOffsets": "215,317,425,511,618,737,816,892,983,1076,1171,1265,1366,1459,1554,1649,1740,1831,1913,2022,2122,2221,2330,2442,2553,2716,2812,2895" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json deleted file mode 100644 index efeba115..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-port\\values-port.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-port\\values-port.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "55", - "endOffsets": "106" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json deleted file mode 100644 index b31d35d5..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rBR\\values-pt-rBR.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt-rBR\\values-pt-rBR.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2929", - "endColumns": "100", - "endOffsets": "3025" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt-rBR\\values-pt-rBR.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", - "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", - "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json deleted file mode 100644 index 02e6a098..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rPT\\values-pt-rPT.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt-rPT\\values-pt-rPT.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,319,426,515,616,734,819,899,991,1085,1182,1276,1375,1469,1565,1660,1752,1844,1929,2036,2147,2249,2357,2465,2572,2737,2836", - "endColumns": "107,105,106,88,100,117,84,79,91,93,96,93,98,93,95,94,91,91,84,106,110,101,107,107,106,164,98,85", - "endOffsets": "208,314,421,510,611,729,814,894,986,1080,1177,1271,1370,1464,1560,1655,1747,1839,1924,2031,2142,2244,2352,2460,2567,2732,2831,2917" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt-rPT\\values-pt-rPT.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2922", - "endColumns": "100", - "endOffsets": "3018" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json deleted file mode 100644 index c9490dab..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt\\values-pt.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-pt\\values-pt.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2929", - "endColumns": "100", - "endOffsets": "3025" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-pt\\values-pt.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,225,331,438,527,628,747,832,912,1003,1096,1191,1285,1385,1478,1573,1668,1759,1850,1935,2042,2153,2255,2363,2471,2581,2743,2843", - "endColumns": "119,105,106,88,100,118,84,79,90,92,94,93,99,92,94,94,90,90,84,106,110,101,107,107,109,161,99,85", - "endOffsets": "220,326,433,522,623,742,827,907,998,1091,1186,1280,1380,1473,1568,1663,1754,1845,1930,2037,2148,2250,2358,2466,2576,2738,2838,2924" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json deleted file mode 100644 index e2f521c2..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ro\\values-ro.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ro\\values-ro.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2935", - "endColumns": "100", - "endOffsets": "3031" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ro\\values-ro.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,226,330,443,527,631,752,837,917,1008,1101,1196,1290,1390,1483,1578,1672,1763,1855,1938,2050,2158,2258,2372,2478,2584,2748,2851", - "endColumns": "120,103,112,83,103,120,84,79,90,92,94,93,99,92,94,93,90,91,82,111,107,99,113,105,105,163,102,83", - "endOffsets": "221,325,438,522,626,747,832,912,1003,1096,1191,1285,1385,1478,1573,1667,1758,1850,1933,2045,2153,2253,2367,2473,2579,2743,2846,2930" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json deleted file mode 100644 index e6ff9f83..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ru\\values-ru.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ru\\values-ru.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,220,322,421,507,612,733,812,888,980,1074,1169,1262,1357,1451,1547,1642,1734,1826,1915,2021,2128,2226,2335,2442,2556,2722,2822", - "endColumns": "114,101,98,85,104,120,78,75,91,93,94,92,94,93,95,94,91,91,88,105,106,97,108,106,113,165,99,81", - "endOffsets": "215,317,416,502,607,728,807,883,975,1069,1164,1257,1352,1446,1542,1637,1729,1821,1910,2016,2123,2221,2330,2437,2551,2717,2817,2899" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ru\\values-ru.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2904", - "endColumns": "100", - "endOffsets": "3000" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json deleted file mode 100644 index 861d0c69..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-si\\values-si.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-si\\values-si.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2903", - "endColumns": "100", - "endOffsets": "2999" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-si\\values-si.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,221,328,435,518,623,739,829,915,1006,1099,1193,1287,1387,1480,1575,1669,1760,1851,1935,2044,2148,2246,2356,2456,2563,2722,2821", - "endColumns": "115,106,106,82,104,115,89,85,90,92,93,93,99,92,94,93,90,90,83,108,103,97,109,99,106,158,98,81", - "endOffsets": "216,323,430,513,618,734,824,910,1001,1094,1188,1282,1382,1475,1570,1664,1755,1846,1930,2039,2143,2241,2351,2451,2558,2717,2816,2898" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json deleted file mode 100644 index e06058e4..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sk\\values-sk.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sk\\values-sk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,424,510,618,736,815,892,983,1076,1174,1268,1368,1461,1556,1654,1745,1836,1920,2025,2133,2232,2338,2450,2553,2719,2817", - "endColumns": "106,100,110,85,107,117,78,76,90,92,97,93,99,92,94,97,90,90,83,104,107,98,105,111,102,165,97,82", - "endOffsets": "207,308,419,505,613,731,810,887,978,1071,1169,1263,1363,1456,1551,1649,1740,1831,1915,2020,2128,2227,2333,2445,2548,2714,2812,2895" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sk\\values-sk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2900", - "endColumns": "100", - "endOffsets": "2996" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json deleted file mode 100644 index 101ad204..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sl\\values-sl.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sl\\values-sl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,217,319,427,514,617,736,817,895,987,1081,1176,1270,1365,1459,1555,1655,1747,1839,1923,2031,2139,2239,2352,2460,2568,2751,2851", - "endColumns": "111,101,107,86,102,118,80,77,91,93,94,93,94,93,95,99,91,91,83,107,107,99,112,107,107,182,99,83", - "endOffsets": "212,314,422,509,612,731,812,890,982,1076,1171,1265,1360,1454,1550,1650,1742,1834,1918,2026,2134,2234,2347,2455,2563,2746,2846,2930" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sl\\values-sl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2935", - "endColumns": "100", - "endOffsets": "3031" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json deleted file mode 100644 index 2cad511b..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sq\\values-sq.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sq\\values-sq.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,319,431,517,623,746,828,906,997,1090,1185,1279,1380,1473,1568,1665,1756,1849,1930,2036,2140,2238,2344,2448,2550,2704,2801", - "endColumns": "113,99,111,85,105,122,81,77,90,92,94,93,100,92,94,96,90,92,80,105,103,97,105,103,101,153,96,81", - "endOffsets": "214,314,426,512,618,741,823,901,992,1085,1180,1274,1375,1468,1563,1660,1751,1844,1925,2031,2135,2233,2339,2443,2545,2699,2796,2878" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sq\\values-sq.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2883", - "endColumns": "100", - "endOffsets": "2979" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json deleted file mode 100644 index ad5e86db..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sr\\values-sr.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sr\\values-sr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2920", - "endColumns": "100", - "endOffsets": "3016" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sr\\values-sr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,313,419,505,609,731,815,896,987,1080,1175,1269,1369,1462,1557,1662,1753,1844,1930,2035,2141,2244,2350,2459,2566,2736,2833", - "endColumns": "106,100,105,85,103,121,83,80,90,92,94,93,99,92,94,104,90,90,85,104,105,102,105,108,106,169,96,86", - "endOffsets": "207,308,414,500,604,726,810,891,982,1075,1170,1264,1364,1457,1552,1657,1748,1839,1925,2030,2136,2239,2345,2454,2561,2731,2828,2915" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json deleted file mode 100644 index 704b7117..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sv\\values-sv.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sv\\values-sv.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,311,422,506,608,721,798,873,966,1061,1156,1250,1352,1447,1544,1642,1738,1831,1911,2017,2116,2212,2317,2420,2522,2676,2778", - "endColumns": "102,102,110,83,101,112,76,74,92,94,94,93,101,94,96,97,95,92,79,105,98,95,104,102,101,153,101,79", - "endOffsets": "203,306,417,501,603,716,793,868,961,1056,1151,1245,1347,1442,1539,1637,1733,1826,1906,2012,2111,2207,2312,2415,2517,2671,2773,2853" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sv\\values-sv.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2858", - "endColumns": "100", - "endOffsets": "2954" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json deleted file mode 100644 index 2eb4c659..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw\\values-sw.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sw\\values-sw.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,208,307,415,505,610,727,810,892,983,1076,1171,1265,1365,1458,1553,1647,1738,1829,1911,2012,2120,2219,2326,2438,2542,2704,2801", - "endColumns": "102,98,107,89,104,116,82,81,90,92,94,93,99,92,94,93,90,90,81,100,107,98,106,111,103,161,96,82", - "endOffsets": "203,302,410,500,605,722,805,887,978,1071,1166,1260,1360,1453,1548,1642,1733,1824,1906,2007,2115,2214,2321,2433,2537,2699,2796,2879" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-sw\\values-sw.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2884", - "endColumns": "100", - "endOffsets": "2980" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json deleted file mode 100644 index 1515bb52..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw600dp-v13\\values-sw600dp-v13.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9", - "startColumns": "4,4,4,4,4,4,4,4", - "startOffsets": "55,124,193,263,337,413,472,543", - "endColumns": "68,68,69,73,75,58,70,67", - "endOffsets": "119,188,258,332,408,467,538,606" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json deleted file mode 100644 index 294615cc..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ta\\values-ta.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ta\\values-ta.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,218,320,435,524,635,756,835,911,1009,1109,1204,1298,1405,1505,1607,1701,1799,1897,1978,2086,2189,2288,2404,2507,2612,2769,2871", - "endColumns": "112,101,114,88,110,120,78,75,97,99,94,93,106,99,101,93,97,97,80,107,102,98,115,102,104,156,101,81", - "endOffsets": "213,315,430,519,630,751,830,906,1004,1104,1199,1293,1400,1500,1602,1696,1794,1892,1973,2081,2184,2283,2399,2502,2607,2764,2866,2948" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ta\\values-ta.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2953", - "endColumns": "100", - "endOffsets": "3049" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json deleted file mode 100644 index 6ee3a9ea..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-te\\values-te.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-te\\values-te.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,222,334,445,535,640,759,837,913,1004,1097,1192,1286,1386,1479,1574,1669,1760,1851,1934,2048,2150,2249,2364,2467,2582,2744,2847", - "endColumns": "116,111,110,89,104,118,77,75,90,92,94,93,99,92,94,94,90,90,82,113,101,98,114,102,114,161,102,82", - "endOffsets": "217,329,440,530,635,754,832,908,999,1092,1187,1281,1381,1474,1569,1664,1755,1846,1929,2043,2145,2244,2359,2462,2577,2739,2842,2925" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-te\\values-te.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2930", - "endColumns": "100", - "endOffsets": "3026" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json deleted file mode 100644 index e84e33c7..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-th\\values-th.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-th\\values-th.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2816", - "endColumns": "100", - "endOffsets": "2912" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-th\\values-th.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,303,411,496,598,708,786,863,954,1047,1138,1232,1332,1425,1520,1614,1705,1796,1877,1980,2078,2176,2279,2385,2486,2639,2734", - "endColumns": "104,92,107,84,101,109,77,76,90,92,90,93,99,92,94,93,90,90,80,102,97,97,102,105,100,152,94,81", - "endOffsets": "205,298,406,491,593,703,781,858,949,1042,1133,1227,1327,1420,1515,1609,1700,1791,1872,1975,2073,2171,2274,2380,2481,2634,2729,2811" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json deleted file mode 100644 index 3244d3be..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tl\\values-tl.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-tl\\values-tl.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2930", - "endColumns": "100", - "endOffsets": "3026" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-tl\\values-tl.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,216,324,437,525,631,746,826,903,994,1087,1182,1276,1376,1469,1564,1658,1749,1840,1924,2033,2143,2244,2354,2472,2580,2743,2845", - "endColumns": "110,107,112,87,105,114,79,76,90,92,94,93,99,92,94,93,90,90,83,108,109,100,109,117,107,162,101,84", - "endOffsets": "211,319,432,520,626,741,821,898,989,1082,1177,1271,1371,1464,1559,1653,1744,1835,1919,2028,2138,2239,2349,2467,2575,2738,2840,2925" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json deleted file mode 100644 index 52e9b128..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tr\\values-tr.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-tr\\values-tr.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2877", - "endColumns": "100", - "endOffsets": "2973" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-tr\\values-tr.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,318,430,515,621,741,821,896,987,1080,1172,1266,1366,1459,1561,1656,1747,1838,1917,2024,2128,2224,2331,2434,2543,2699,2797", - "endColumns": "113,98,111,84,105,119,79,74,90,92,91,93,99,92,101,94,90,90,78,106,103,95,106,102,108,155,97,79", - "endOffsets": "214,313,425,510,616,736,816,891,982,1075,1167,1261,1361,1454,1556,1651,1742,1833,1912,2019,2123,2219,2326,2429,2538,2694,2792,2872" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json deleted file mode 100644 index 493eb711..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uk\\values-uk.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-uk\\values-uk.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2911", - "endColumns": "100", - "endOffsets": "3007" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-uk\\values-uk.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,214,316,424,510,615,733,814,893,984,1077,1172,1266,1366,1459,1554,1649,1740,1831,1930,2036,2142,2240,2347,2454,2559,2729,2829", - "endColumns": "108,101,107,85,104,117,80,78,90,92,94,93,99,92,94,94,90,90,98,105,105,97,106,106,104,169,99,81", - "endOffsets": "209,311,419,505,610,728,809,888,979,1072,1167,1261,1361,1454,1549,1644,1735,1826,1925,2031,2137,2235,2342,2449,2554,2724,2824,2906" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json deleted file mode 100644 index de36049e..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ur\\values-ur.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-ur\\values-ur.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,219,325,434,520,624,744,821,896,988,1082,1177,1271,1372,1466,1562,1656,1748,1840,1925,2033,2139,2241,2352,2453,2569,2734,2832", - "endColumns": "113,105,108,85,103,119,76,74,91,93,94,93,100,93,95,93,91,91,84,107,105,101,110,100,115,164,97,85", - "endOffsets": "214,320,429,515,619,739,816,891,983,1077,1172,1266,1367,1461,1557,1651,1743,1835,1920,2028,2134,2236,2347,2448,2564,2729,2827,2913" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-ur\\values-ur.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2918", - "endColumns": "100", - "endOffsets": "3014" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json deleted file mode 100644 index 532f6e12..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uz\\values-uz.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-uz\\values-uz.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,210,305,405,487,587,704,789,867,958,1051,1146,1240,1334,1427,1522,1617,1708,1800,1884,1994,2100,2200,2308,2414,2516,2677,2776", - "endColumns": "104,94,99,81,99,116,84,77,90,92,94,93,93,92,94,94,90,91,83,109,105,99,107,105,101,160,98,83", - "endOffsets": "205,300,400,482,582,699,784,862,953,1046,1141,1235,1329,1422,1517,1612,1703,1795,1879,1989,2095,2195,2303,2409,2511,2672,2771,2855" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-uz\\values-uz.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2860", - "endColumns": "100", - "endOffsets": "2956" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json deleted file mode 100644 index bbb3b25a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v16\\values-v16.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v16\\values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endLines": "5", - "endColumns": "12", - "endOffsets": "223" - }, - "to": { - "startLines": "3", - "startColumns": "4", - "startOffsets": "121", - "endLines": "6", - "endColumns": "12", - "endOffsets": "289" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-v16\\values-v16.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "65", - "endOffsets": "116" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json deleted file mode 100644 index 54c67589..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v17\\values-v17.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v17\\values-v17.xml", - "from": { - "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", - "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", - "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", - "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json deleted file mode 100644 index 656efbec..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v18\\values-v18.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v18\\values-v18.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "48", - "endOffsets": "99" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json deleted file mode 100644 index bd658e23..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v21\\values-v21.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v21\\values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,106,109,152,155,158,160,162,164,167,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,220,222,223,224,234,235,236,248", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4213,4362,4511,4623,4770,4923,5070,5145,5234,5321,5422,5525,8499,8684,11670,11867,12066,12189,12312,12425,12608,12863,13064,13153,13264,13497,13598,13693,13816,13945,14062,14239,14338,14473,14616,14751,14870,15071,15190,15283,15394,15450,15557,15752,15863,15996,16091,16182,16273,16366,16483,16622,16693,16776,17456,17513,17571,18265", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,105,108,151,154,157,159,161,163,166,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,219,221,222,223,233,234,235,247,259", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", - "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4208,4357,4506,4618,4765,4918,5065,5140,5229,5316,5417,5520,8494,8679,11665,11862,12061,12184,12307,12420,12603,12858,13059,13148,13259,13492,13593,13688,13811,13940,14057,14234,14333,14468,14611,14746,14865,15066,15185,15278,15389,15445,15552,15747,15858,15991,16086,16177,16268,16361,16478,16617,16688,16771,17451,17508,17566,18260,18966" - }, - "to": { - "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,110,113,156,159,162,164,166,168,171,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,224,226,227,228,238,239,240,252", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "368,459,562,665,770,877,986,1095,1204,1313,1422,1529,1632,1751,1906,2061,2166,2287,2388,2535,2676,2779,2898,3005,3108,3263,3434,3583,3748,3905,4056,4175,4526,4675,4824,4936,5083,5236,5383,5458,5547,5634,5735,5838,8812,8997,11983,12180,12379,12502,12625,12738,12921,13176,13377,13466,13577,13810,13911,14006,14129,14258,14375,14552,14651,14786,14929,15064,15183,15384,15503,15596,15707,15763,15870,16065,16176,16309,16404,16495,16586,16679,16796,16935,17006,17089,17769,17826,17884,18578", - "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,109,112,155,158,161,163,165,167,170,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,223,225,226,227,237,238,239,251,263", - "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,92,116,12,70,82,12,56,57,12,12", - "endOffsets": "454,557,660,765,872,981,1090,1199,1308,1417,1524,1627,1746,1901,2056,2161,2282,2383,2530,2671,2774,2893,3000,3103,3258,3429,3578,3743,3900,4051,4170,4521,4670,4819,4931,5078,5231,5378,5453,5542,5629,5730,5833,8807,8992,11978,12175,12374,12497,12620,12733,12916,13171,13372,13461,13572,13805,13906,14001,14124,14253,14370,14547,14646,14781,14924,15059,15178,15379,15498,15591,15702,15758,15865,16060,16171,16304,16399,16490,16581,16674,16791,16930,17001,17084,17764,17821,17879,18573,19279" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-v21\\values-v21.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,13", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,237,304,368,484,610,736,864,1036", - "endLines": "2,3,4,5,6,7,8,9,12,17", - "endColumns": "117,63,66,63,115,125,125,127,12,12", - "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" - }, - "to": { - "startLines": "2,3,4,5,264,265,266,267,268,271", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,173,237,304,19284,19400,19526,19652,19780,19952", - "endLines": "2,3,4,5,264,265,266,267,270,275", - "endColumns": "117,63,66,63,115,125,125,127,12,12", - "endOffsets": "168,232,299,363,19395,19521,19647,19775,19947,20299" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json deleted file mode 100644 index 0496442a..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v22\\values-v22.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v22\\values-v22.xml", - "from": { - "startLines": "2,3,4,9", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,553", - "endLines": "2,3,8,13", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,548,896" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json deleted file mode 100644 index 1992a939..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v23\\values-v23.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v23\\values-v23.xml", - "from": { - "startLines": "2,3,4,5,6,20,34,35,36,39,43,44,45,46", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,190,325,400,487,1371,2267,2386,2513,2735,2959,3074,3181,3294", - "endLines": "2,3,4,5,19,33,34,35,38,42,43,44,45,49", - "endColumns": "134,134,74,86,12,12,118,126,12,12,114,106,112,12", - "endOffsets": "185,320,395,482,1366,2262,2381,2508,2730,2954,3069,3176,3289,3519" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json deleted file mode 100644 index a0221a12..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v24\\values-v24.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v24\\values-v24.xml", - "from": { - "startLines": "2,3", - "startColumns": "4,4", - "startOffsets": "55,212", - "endColumns": "156,134", - "endOffsets": "207,342" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json deleted file mode 100644 index ae67b303..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v25\\values-v25.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v25\\values-v25.xml", - "from": { - "startLines": "2,3,4,6", - "startColumns": "4,4,4,4", - "startOffsets": "55,126,209,308", - "endLines": "2,3,5,7", - "endColumns": "70,82,12,12", - "endOffsets": "121,204,303,414" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json deleted file mode 100644 index 4d34eb4d..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v26\\values-v26.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v26\\values-v26.xml", - "from": { - "startLines": "2,3,4,8,12,16", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,130,217,431,657,896", - "endLines": "2,3,7,11,15,16", - "endColumns": "74,86,12,12,12,92", - "endOffsets": "125,212,426,652,891,984" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json deleted file mode 100644 index f6dbc7df..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v28\\values-v28.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-v28\\values-v28.xml", - "from": { - "startLines": "2,3,4,8", - "startColumns": "4,4,4,4", - "startOffsets": "55,130,217,447", - "endLines": "2,3,7,11", - "endColumns": "74,86,12,12", - "endOffsets": "125,212,442,684" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json deleted file mode 100644 index 7379e1f0..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-vi\\values-vi.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-vi\\values-vi.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,212,314,423,507,610,729,807,883,974,1067,1162,1256,1356,1449,1544,1638,1729,1820,1904,2008,2116,2217,2322,2437,2542,2699,2798", - "endColumns": "106,101,108,83,102,118,77,75,90,92,94,93,99,92,94,93,90,90,83,103,107,100,104,114,104,156,98,84", - "endOffsets": "207,309,418,502,605,724,802,878,969,1062,1157,1251,1351,1444,1539,1633,1724,1815,1899,2003,2111,2212,2317,2432,2537,2694,2793,2878" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-vi\\values-vi.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2883", - "endColumns": "100", - "endOffsets": "2979" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json deleted file mode 100644 index 6921124f..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-watch-v20\\values-watch-v20.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-watch-v20\\values-watch-v20.xml", - "from": { - "startLines": "2,5,8", - "startColumns": "4,4,4", - "startOffsets": "55,214,385", - "endLines": "4,7,10", - "endColumns": "12,12,12", - "endOffsets": "209,380,553" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json deleted file mode 100644 index 183c92af..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-watch-v21\\values-watch-v21.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-watch-v21\\values-watch-v21.xml", - "from": { - "startLines": "2,6,10", - "startColumns": "4,4,4", - "startOffsets": "55,271,499", - "endLines": "5,9,13", - "endColumns": "12,12,12", - "endOffsets": "266,494,724" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json deleted file mode 100644 index e569f503..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-xlarge-v4\\values-xlarge-v4.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-xlarge-v4\\values-xlarge-v4.xml", - "from": { - "startLines": "2,3,4,5,6,7", - "startColumns": "4,4,4,4,4,4", - "startOffsets": "55,126,197,267,337,405", - "endColumns": "70,70,69,69,67,67", - "endOffsets": "121,192,262,332,400,468" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json deleted file mode 100644 index eca22991..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rCN\\values-zh-rCN.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rCN\\values-zh-rCN.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,295,395,477,574,680,757,832,923,1016,1113,1209,1303,1396,1491,1583,1674,1765,1843,1939,2034,2129,2226,2322,2420,2568,2662", - "endColumns": "94,94,99,81,96,105,76,74,90,92,96,95,93,92,94,91,90,90,77,95,94,94,96,95,97,147,93,78", - "endOffsets": "195,290,390,472,569,675,752,827,918,1011,1108,1204,1298,1391,1486,1578,1669,1760,1838,1934,2029,2124,2221,2317,2415,2563,2657,2736" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rCN\\values-zh-rCN.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2741", - "endColumns": "100", - "endOffsets": "2837" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json deleted file mode 100644 index d7682d59..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rHK\\values-zh-rHK.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rHK\\values-zh-rHK.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2745", - "endColumns": "100", - "endOffsets": "2841" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rHK\\values-zh-rHK.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1109,1205,1300,1394,1490,1582,1674,1766,1844,1940,2035,2130,2227,2323,2421,2572,2666", - "endColumns": "94,92,99,81,96,107,76,74,91,93,90,95,94,93,95,91,91,91,77,95,94,94,96,95,97,150,93,78", - "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1104,1200,1295,1389,1485,1577,1669,1761,1839,1935,2030,2125,2222,2318,2416,2567,2661,2740" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json deleted file mode 100644 index 3b3b83d2..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rTW\\values-zh-rTW.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zh-rTW\\values-zh-rTW.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,200,293,393,475,572,680,757,832,924,1018,1115,1211,1306,1400,1496,1588,1680,1772,1850,1946,2041,2136,2233,2329,2427,2577,2671", - "endColumns": "94,92,99,81,96,107,76,74,91,93,96,95,94,93,95,91,91,91,77,95,94,94,96,95,97,149,93,78", - "endOffsets": "195,288,388,470,567,675,752,827,919,1013,1110,1206,1301,1395,1491,1583,1675,1767,1845,1941,2036,2131,2228,2324,2422,2572,2666,2745" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zh-rTW\\values-zh-rTW.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2750", - "endColumns": "100", - "endOffsets": "2846" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json deleted file mode 100644 index c5d8d117..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zu\\values-zu.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values-zu\\values-zu.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,213,320,432,520,623,738,817,894,985,1078,1173,1267,1367,1460,1555,1649,1740,1833,1914,2018,2121,2219,2326,2433,2538,2695,2791", - "endColumns": "107,106,111,87,102,114,78,76,90,92,94,93,99,92,94,93,90,92,80,103,102,97,106,106,104,156,95,81", - "endOffsets": "208,315,427,515,618,733,812,889,980,1073,1168,1262,1362,1455,1550,1644,1735,1828,1909,2013,2116,2214,2321,2428,2533,2690,2786,2868" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values-zu\\values-zu.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "100", - "endOffsets": "151" - }, - "to": { - "startLines": "30", - "startColumns": "4", - "startOffsets": "2873", - "endColumns": "100", - "endOffsets": "2969" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json deleted file mode 100644 index 935c6be0..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "logs": [ - { - "outputFile": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values\\values.xml", - "map": [ - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\536a0e6924fd14451ea0f47abf81ff76\\appcompat-1.3.0\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,221,222,226,230,234,239,245,252,256,260,265,269,273,277,281,285,289,295,299,305,309,315,319,324,328,331,335,341,345,351,355,361,364,368,372,376,380,384,385,386,387,390,393,396,399,403,404,405,406,407,410,412,414,416,421,422,426,432,436,437,439,451,452,456,462,466,467,468,472,499,503,504,508,536,708,734,906,932,963,971,977,993,1015,1020,1025,1035,1044,1053,1057,1064,1083,1090,1091,1100,1103,1106,1110,1114,1118,1121,1122,1127,1132,1142,1147,1154,1160,1161,1164,1168,1173,1175,1177,1180,1183,1185,1189,1192,1199,1202,1205,1209,1211,1215,1217,1219,1221,1225,1233,1241,1253,1259,1268,1271,1282,1285,1286,1291,1292,1297,1366,1436,1437,1447,1456,1457,1459,1463,1466,1469,1472,1475,1478,1481,1484,1488,1491,1494,1497,1501,1504,1508,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1534,1536,1537,1538,1539,1540,1541,1542,1543,1545,1546,1548,1549,1551,1553,1554,1556,1557,1558,1559,1560,1561,1563,1564,1565,1566,1567,1568,1570,1572,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1588,1589,1590,1591,1592,1593,1594,1596,1600,1604,1605,1606,1607,1608,1609,1613,1614,1615,1616,1618,1620,1622,1624,1626,1627,1628,1629,1631,1633,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1649,1650,1651,1652,1654,1656,1657,1659,1660,1662,1664,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1679,1680,1681,1682,1684,1685,1686,1687,1688,1690,1692,1694,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1794,1797,1800,1803,1817,1828,1838,1868,1895,1904,1979,2382,2387,2415,2433,2469,2475,2481,2504,2645,2665,2671,2675,2681,2718,2730,2796,2820,2889,2908,2934", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,160,205,254,295,350,412,476,546,607,682,758,835,913,998,1080,1156,1232,1309,1387,1493,1599,1678,1758,1815,1873,1947,2022,2087,2153,2213,2274,2346,2419,2486,2554,2613,2672,2731,2790,2849,2903,2957,3010,3064,3118,3172,3226,3300,3379,3452,3526,3597,3669,3741,3814,3871,3929,4002,4076,4150,4225,4297,4370,4440,4511,4571,4632,4701,4770,4840,4914,4990,5054,5131,5207,5284,5349,5418,5495,5570,5639,5707,5784,5850,5911,6008,6073,6142,6241,6312,6371,6429,6486,6545,6609,6680,6752,6824,6896,6968,7035,7103,7171,7230,7293,7357,7447,7538,7598,7664,7731,7797,7867,7931,7984,8051,8112,8179,8292,8350,8413,8478,8543,8618,8691,8763,8807,8854,8900,8949,9010,9071,9132,9194,9258,9322,9386,9451,9514,9574,9635,9701,9760,9820,9882,9953,10013,10081,10167,10254,10344,10431,10519,10601,10684,10774,10865,10917,10975,11020,11086,11150,11207,11264,11318,11375,11423,11472,11523,11557,11604,11653,11699,11731,11795,11857,11917,11974,12048,12118,12196,12250,12320,12405,12453,12499,12560,12623,12689,12753,12824,12887,12952,13016,13077,13138,13190,13263,13337,13406,13481,13555,13629,13770,13840,13893,13971,14061,14149,14245,14335,14917,15006,15253,15534,15786,16071,16464,16941,17163,17385,17661,17888,18118,18348,18578,18808,19035,19454,19680,20105,20335,20763,20982,21265,21473,21604,21831,22257,22482,22909,23130,23555,23675,23951,24252,24576,24867,25181,25318,25449,25554,25796,25963,26167,26375,26646,26758,26870,26975,27092,27306,27452,27592,27678,28026,28114,28360,28778,29027,29109,29207,29889,29989,30241,30665,30920,31014,31103,31340,33392,33634,33736,33989,36173,47362,48878,60165,61693,63450,64076,64496,65757,67022,67278,67514,68061,68555,69160,69358,69938,71306,71681,71799,72337,72494,72690,72963,73219,73389,73530,73594,73959,74326,75002,75266,75604,75957,76051,76237,76543,76805,76930,77057,77296,77507,77626,77819,77996,78451,78632,78754,79013,79126,79313,79415,79522,79651,79926,80434,80930,81807,82101,82671,82820,83552,83724,83808,84144,84236,84514,89908,95442,95504,96134,96748,96839,96952,97181,97341,97493,97664,97830,97999,98166,98329,98572,98742,98915,99086,99360,99559,99764,100094,100178,100274,100370,100468,100568,100670,100772,100874,100976,101078,101178,101274,101386,101515,101638,101769,101900,101998,102112,102206,102346,102480,102576,102688,102788,102904,103000,103112,103212,103352,103488,103652,103782,103940,104090,104231,104375,104510,104622,104772,104900,105028,105164,105296,105426,105556,105668,105808,105954,106098,106236,106302,106392,106468,106572,106662,106764,106872,106980,107080,107160,107252,107350,107460,107512,107590,107696,107788,107892,108002,108124,108287,108444,108524,108624,108714,108824,108914,109155,109249,109355,109447,109547,109659,109773,109889,110005,110099,110213,110325,110427,110547,110669,110751,110855,110975,111101,111199,111293,111381,111493,111609,111731,111843,112018,112134,112220,112312,112424,112548,112615,112741,112809,112937,113081,113209,113278,113373,113488,113601,113700,113809,113920,114031,114132,114237,114337,114467,114558,114681,114775,114887,114973,115077,115173,115261,115379,115483,115587,115713,115801,115909,116009,116099,116209,116293,116395,116479,116533,116597,116703,116789,116899,116983,117103,122247,122365,122480,122612,123327,124019,124536,126135,127668,128056,132791,153454,153714,155224,156257,158270,158532,158888,159718,166500,167634,167928,168151,168478,170528,171176,175027,176229,180308,181523,182932", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,220,221,225,229,233,238,244,251,255,259,264,268,272,276,280,284,288,294,298,304,308,314,318,323,327,330,334,340,344,350,354,360,363,367,371,375,379,383,384,385,386,389,392,395,398,402,403,404,405,406,409,411,413,415,420,421,425,431,435,436,438,450,451,455,461,465,466,467,471,498,502,503,507,535,707,733,905,931,962,970,976,992,1014,1019,1024,1034,1043,1052,1056,1063,1082,1089,1090,1099,1102,1105,1109,1113,1117,1120,1121,1126,1131,1141,1146,1153,1159,1160,1163,1167,1172,1174,1176,1179,1182,1184,1188,1191,1198,1201,1204,1208,1210,1214,1216,1218,1220,1224,1232,1240,1252,1258,1267,1270,1281,1284,1285,1290,1291,1296,1365,1435,1436,1446,1455,1456,1458,1462,1465,1468,1471,1474,1477,1480,1483,1487,1490,1493,1496,1500,1503,1507,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1533,1535,1536,1537,1538,1539,1540,1541,1542,1544,1545,1547,1548,1550,1552,1553,1555,1556,1557,1558,1559,1560,1562,1563,1564,1565,1566,1567,1569,1571,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1587,1588,1589,1590,1591,1592,1593,1595,1599,1603,1604,1605,1606,1607,1608,1612,1613,1614,1615,1617,1619,1621,1623,1625,1626,1627,1628,1630,1632,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1648,1649,1650,1651,1653,1655,1656,1658,1659,1661,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1678,1679,1680,1681,1683,1684,1685,1686,1687,1689,1691,1693,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1793,1796,1799,1802,1816,1827,1837,1867,1894,1903,1978,2381,2386,2414,2432,2468,2474,2480,2503,2644,2664,2670,2674,2680,2717,2729,2795,2819,2888,2907,2933,2942", - "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", - "endOffsets": "155,200,249,290,345,407,471,541,602,677,753,830,908,993,1075,1151,1227,1304,1382,1488,1594,1673,1753,1810,1868,1942,2017,2082,2148,2208,2269,2341,2414,2481,2549,2608,2667,2726,2785,2844,2898,2952,3005,3059,3113,3167,3221,3295,3374,3447,3521,3592,3664,3736,3809,3866,3924,3997,4071,4145,4220,4292,4365,4435,4506,4566,4627,4696,4765,4835,4909,4985,5049,5126,5202,5279,5344,5413,5490,5565,5634,5702,5779,5845,5906,6003,6068,6137,6236,6307,6366,6424,6481,6540,6604,6675,6747,6819,6891,6963,7030,7098,7166,7225,7288,7352,7442,7533,7593,7659,7726,7792,7862,7926,7979,8046,8107,8174,8287,8345,8408,8473,8538,8613,8686,8758,8802,8849,8895,8944,9005,9066,9127,9189,9253,9317,9381,9446,9509,9569,9630,9696,9755,9815,9877,9948,10008,10076,10162,10249,10339,10426,10514,10596,10679,10769,10860,10912,10970,11015,11081,11145,11202,11259,11313,11370,11418,11467,11518,11552,11599,11648,11694,11726,11790,11852,11912,11969,12043,12113,12191,12245,12315,12400,12448,12494,12555,12618,12684,12748,12819,12882,12947,13011,13072,13133,13185,13258,13332,13401,13476,13550,13624,13765,13835,13888,13966,14056,14144,14240,14330,14912,15001,15248,15529,15781,16066,16459,16936,17158,17380,17656,17883,18113,18343,18573,18803,19030,19449,19675,20100,20330,20758,20977,21260,21468,21599,21826,22252,22477,22904,23125,23550,23670,23946,24247,24571,24862,25176,25313,25444,25549,25791,25958,26162,26370,26641,26753,26865,26970,27087,27301,27447,27587,27673,28021,28109,28355,28773,29022,29104,29202,29884,29984,30236,30660,30915,31009,31098,31335,33387,33629,33731,33984,36168,47357,48873,60160,61688,63445,64071,64491,65752,67017,67273,67509,68056,68550,69155,69353,69933,71301,71676,71794,72332,72489,72685,72958,73214,73384,73525,73589,73954,74321,74997,75261,75599,75952,76046,76232,76538,76800,76925,77052,77291,77502,77621,77814,77991,78446,78627,78749,79008,79121,79308,79410,79517,79646,79921,80429,80925,81802,82096,82666,82815,83547,83719,83803,84139,84231,84509,89903,95437,95499,96129,96743,96834,96947,97176,97336,97488,97659,97825,97994,98161,98324,98567,98737,98910,99081,99355,99554,99759,100089,100173,100269,100365,100463,100563,100665,100767,100869,100971,101073,101173,101269,101381,101510,101633,101764,101895,101993,102107,102201,102341,102475,102571,102683,102783,102899,102995,103107,103207,103347,103483,103647,103777,103935,104085,104226,104370,104505,104617,104767,104895,105023,105159,105291,105421,105551,105663,105803,105949,106093,106231,106297,106387,106463,106567,106657,106759,106867,106975,107075,107155,107247,107345,107455,107507,107585,107691,107783,107887,107997,108119,108282,108439,108519,108619,108709,108819,108909,109150,109244,109350,109442,109542,109654,109768,109884,110000,110094,110208,110320,110422,110542,110664,110746,110850,110970,111096,111194,111288,111376,111488,111604,111726,111838,112013,112129,112215,112307,112419,112543,112610,112736,112804,112932,113076,113204,113273,113368,113483,113596,113695,113804,113915,114026,114127,114232,114332,114462,114553,114676,114770,114882,114968,115072,115168,115256,115374,115478,115582,115708,115796,115904,116004,116094,116204,116288,116390,116474,116528,116592,116698,116784,116894,116978,117098,122242,122360,122475,122607,123322,124014,124531,126130,127663,128051,132786,153449,153709,155219,156252,158265,158527,158883,159713,166495,167629,167923,168146,168473,170523,171171,175022,176224,180303,181518,182927,183401" - }, - "to": { - "startLines": "2,3,4,14,15,16,17,18,19,20,21,22,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,170,171,172,173,174,175,176,177,178,194,195,196,197,198,199,200,201,237,238,239,240,243,246,247,249,266,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,310,318,319,323,327,331,336,342,349,353,357,362,366,370,374,378,382,386,392,396,402,406,412,416,421,425,428,432,438,442,448,452,458,461,465,469,473,477,481,482,483,484,487,490,493,496,500,501,502,503,504,507,509,511,513,518,519,523,529,533,534,536,548,549,553,559,563,564,565,569,596,600,601,605,633,805,831,1003,1029,1060,1068,1074,1090,1112,1117,1122,1132,1141,1150,1154,1161,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1224,1229,1239,1244,1251,1257,1258,1261,1265,1270,1272,1274,1277,1280,1282,1286,1289,1296,1299,1302,1306,1308,1312,1314,1316,1318,1322,1330,1338,1350,1356,1365,1368,1379,1382,1383,1388,1389,1402,1471,1541,1542,1552,1561,1562,1564,1568,1571,1574,1577,1580,1583,1586,1589,1593,1596,1599,1602,1606,1609,1613,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1639,1641,1642,1643,1644,1645,1646,1647,1648,1650,1651,1653,1654,1656,1658,1659,1661,1662,1663,1664,1665,1666,1668,1669,1670,1671,1672,1684,1686,1688,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1704,1705,1706,1707,1708,1709,1710,1712,1716,1720,1721,1722,1723,1724,1725,1729,1730,1731,1732,1734,1736,1738,1740,1742,1743,1744,1745,1747,1749,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1765,1766,1767,1768,1770,1772,1773,1775,1776,1778,1780,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1795,1796,1797,1798,1800,1801,1802,1803,1804,1806,1808,1810,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1829,1912,1915,1918,1921,1935,1958,2013,2043,2070,2079,2154,2557,2576,2604,2755,2791,2797,2803,2826,2967,2987,2993,2997,3003,3040,3120,3186,3210,3279,3298,3324", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "105,160,205,650,691,746,808,872,942,1003,1078,1154,1231,1469,1554,1636,1712,1788,1865,1943,2049,2155,2234,2314,2371,2429,2503,2578,2643,2709,2769,2830,2902,2975,3042,3110,3169,3228,3287,3346,3405,3459,3513,3566,3620,3674,3728,3914,3988,4067,4140,4214,4285,4357,4429,4502,4559,4617,4690,4764,4838,4913,4985,5058,5128,5199,5259,5320,5389,5458,5528,5602,5678,5742,5819,5895,5972,6037,6106,6183,6258,6327,6395,6472,6538,6599,6696,6761,6830,6929,7000,7059,7117,7174,7233,7297,7368,7440,7512,7584,7656,7723,7791,7859,7918,7981,8045,8135,8226,8286,8352,8419,8485,8555,8619,8672,8739,8800,8867,8980,9038,9101,9166,9231,9306,9379,9451,9495,9542,9588,9637,9698,9759,9820,9882,9946,10010,10074,10139,10202,10262,10323,10389,10448,10508,10570,10641,10701,11257,11343,11430,11520,11607,11695,11777,11860,11950,13019,13071,13129,13174,13240,13304,13361,13418,15595,15652,15700,15749,15917,16021,16068,16182,17087,17330,17394,17456,17516,17643,17717,17787,17865,17919,17989,18074,18122,18168,18229,18292,18358,18422,18493,18556,18621,18685,18746,18807,18859,18932,19006,19075,19150,19224,19298,19439,19509,19633,19711,19801,19889,19985,20075,20657,20746,20993,21274,21526,21811,22204,22681,22903,23125,23401,23628,23858,24088,24318,24548,24775,25194,25420,25845,26075,26503,26722,27005,27213,27344,27571,27997,28222,28649,28870,29295,29415,29691,29992,30316,30607,30921,31058,31189,31294,31536,31703,31907,32115,32386,32498,32610,32715,32832,33046,33192,33332,33418,33766,33854,34100,34518,34767,34849,34947,35629,35729,35981,36405,36660,36754,36843,37080,39132,39374,39476,39729,41913,53102,54618,65905,67433,69190,69816,70236,71497,72762,73018,73254,73801,74295,74900,75098,75678,77046,77421,77539,78077,78234,78430,78703,78959,79129,79270,79334,79699,80066,80742,81006,81344,81697,81791,81977,82283,82545,82670,82797,83036,83247,83366,83559,83736,84191,84372,84494,84753,84866,85053,85155,85262,85391,85666,86174,86670,87547,87841,88411,88560,89292,89464,89548,89884,89976,90720,96114,101648,101710,102340,102954,103045,103158,103387,103547,103699,103870,104036,104205,104372,104535,104778,104948,105121,105292,105566,105765,105970,106300,106384,106480,106576,106674,106774,106876,106978,107080,107182,107284,107384,107480,107592,107721,107844,107975,108106,108204,108318,108412,108552,108686,108782,108894,108994,109110,109206,109318,109418,109558,109694,109858,109988,110146,110296,110437,110581,110716,110828,110978,111106,111234,111370,111502,111632,111762,111874,112772,112918,113062,113200,113266,113356,113432,113536,113626,113728,113836,113944,114044,114124,114216,114314,114424,114476,114554,114660,114752,114856,114966,115088,115251,115408,115488,115588,115678,115788,115878,116119,116213,116319,116411,116511,116623,116737,116853,116969,117063,117177,117289,117391,117511,117633,117715,117819,117939,118065,118163,118257,118345,118457,118573,118695,118807,118982,119098,119184,119276,119388,119512,119579,119705,119773,119901,120045,120173,120242,120337,120452,120565,120664,120773,120884,120995,121096,121201,121301,121431,121522,121645,121739,121851,121937,122041,122137,122225,122343,122447,122551,122677,122765,122873,122973,123063,123173,123257,123359,123443,123497,123561,123667,123753,123863,123947,124206,129350,129468,129583,129715,130430,131737,134883,136482,138015,138403,143138,163801,164796,166306,175160,177173,177435,177791,178621,185403,186537,186831,187054,187381,189431,194213,198064,199266,203345,204560,205969", - "endLines": "2,3,4,14,15,16,17,18,19,20,21,22,23,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,170,171,172,173,174,175,176,177,178,194,195,196,197,198,199,200,201,237,238,239,240,243,246,247,249,266,271,272,273,274,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305,306,307,308,309,317,318,322,326,330,335,341,348,352,356,361,365,369,373,377,381,385,391,395,401,405,411,415,420,424,427,431,437,441,447,451,457,460,464,468,472,476,480,481,482,483,486,489,492,495,499,500,501,502,503,506,508,510,512,517,518,522,528,532,533,535,547,548,552,558,562,563,564,568,595,599,600,604,632,804,830,1002,1028,1059,1067,1073,1089,1111,1116,1121,1131,1140,1149,1153,1160,1179,1186,1187,1196,1199,1202,1206,1210,1214,1217,1218,1223,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1382,1387,1388,1393,1470,1540,1541,1551,1560,1561,1563,1567,1570,1573,1576,1579,1582,1585,1588,1592,1595,1598,1601,1605,1608,1612,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1638,1640,1641,1642,1643,1644,1645,1646,1647,1649,1650,1652,1653,1655,1657,1658,1660,1661,1662,1663,1664,1665,1667,1668,1669,1670,1671,1672,1685,1687,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1703,1704,1705,1706,1707,1708,1709,1711,1715,1719,1720,1721,1722,1723,1724,1728,1729,1730,1731,1733,1735,1737,1739,1741,1742,1743,1744,1746,1748,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1764,1765,1766,1767,1769,1771,1772,1774,1775,1777,1779,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1794,1795,1796,1797,1799,1800,1801,1802,1803,1805,1807,1809,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1911,1914,1917,1920,1934,1945,1967,2042,2069,2078,2153,2556,2561,2603,2621,2790,2796,2802,2825,2966,2986,2992,2996,3002,3039,3051,3185,3209,3278,3297,3323,3332", - "endColumns": "54,44,48,40,54,61,63,69,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,66,60,66,112,57,62,64,64,74,72,71,43,46,45,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,51,77,105,91,103,109,12,12,12,79,99,89,109,89,12,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,85,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", - "endOffsets": "155,200,249,686,741,803,867,937,998,1073,1149,1226,1304,1549,1631,1707,1783,1860,1938,2044,2150,2229,2309,2366,2424,2498,2573,2638,2704,2764,2825,2897,2970,3037,3105,3164,3223,3282,3341,3400,3454,3508,3561,3615,3669,3723,3777,3983,4062,4135,4209,4280,4352,4424,4497,4554,4612,4685,4759,4833,4908,4980,5053,5123,5194,5254,5315,5384,5453,5523,5597,5673,5737,5814,5890,5967,6032,6101,6178,6253,6322,6390,6467,6533,6594,6691,6756,6825,6924,6995,7054,7112,7169,7228,7292,7363,7435,7507,7579,7651,7718,7786,7854,7913,7976,8040,8130,8221,8281,8347,8414,8480,8550,8614,8667,8734,8795,8862,8975,9033,9096,9161,9226,9301,9374,9446,9490,9537,9583,9632,9693,9754,9815,9877,9941,10005,10069,10134,10197,10257,10318,10384,10443,10503,10565,10636,10696,10764,11338,11425,11515,11602,11690,11772,11855,11945,12036,13066,13124,13169,13235,13299,13356,13413,13467,15647,15695,15744,15795,15946,16063,16112,16223,17114,17389,17451,17511,17568,17712,17782,17860,17914,17984,18069,18117,18163,18224,18287,18353,18417,18488,18551,18616,18680,18741,18802,18854,18927,19001,19070,19145,19219,19293,19434,19504,19557,19706,19796,19884,19980,20070,20652,20741,20988,21269,21521,21806,22199,22676,22898,23120,23396,23623,23853,24083,24313,24543,24770,25189,25415,25840,26070,26498,26717,27000,27208,27339,27566,27992,28217,28644,28865,29290,29410,29686,29987,30311,30602,30916,31053,31184,31289,31531,31698,31902,32110,32381,32493,32605,32710,32827,33041,33187,33327,33413,33761,33849,34095,34513,34762,34844,34942,35624,35724,35976,36400,36655,36749,36838,37075,39127,39369,39471,39724,41908,53097,54613,65900,67428,69185,69811,70231,71492,72757,73013,73249,73796,74290,74895,75093,75673,77041,77416,77534,78072,78229,78425,78698,78954,79124,79265,79329,79694,80061,80737,81001,81339,81692,81786,81972,82278,82540,82665,82792,83031,83242,83361,83554,83731,84186,84367,84489,84748,84861,85048,85150,85257,85386,85661,86169,86665,87542,87836,88406,88555,89287,89459,89543,89879,89971,90249,96109,101643,101705,102335,102949,103040,103153,103382,103542,103694,103865,104031,104200,104367,104530,104773,104943,105116,105287,105561,105760,105965,106295,106379,106475,106571,106669,106769,106871,106973,107075,107177,107279,107379,107475,107587,107716,107839,107970,108101,108199,108313,108407,108547,108681,108777,108889,108989,109105,109201,109313,109413,109553,109689,109853,109983,110141,110291,110432,110576,110711,110823,110973,111101,111229,111365,111497,111627,111757,111869,112009,112913,113057,113195,113261,113351,113427,113531,113621,113723,113831,113939,114039,114119,114211,114309,114419,114471,114549,114655,114747,114851,114961,115083,115246,115403,115483,115583,115673,115783,115873,116114,116208,116314,116406,116506,116618,116732,116848,116964,117058,117172,117284,117386,117506,117628,117710,117814,117934,118060,118158,118252,118340,118452,118568,118690,118802,118977,119093,119179,119271,119383,119507,119574,119700,119768,119896,120040,120168,120237,120332,120447,120560,120659,120768,120879,120990,121091,121196,121296,121426,121517,121640,121734,121846,121932,122036,122132,122220,122338,122442,122546,122672,122760,122868,122968,123058,123168,123252,123354,123438,123492,123556,123662,123748,123858,123942,124062,129345,129463,129578,129710,130425,131117,132249,136477,138010,138398,143133,163796,164056,166301,167334,177168,177430,177786,178616,185398,186532,186826,187049,187376,189426,190074,198059,199261,203340,204555,205964,206438" - } - }, - { - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\values\\styles.xml", - "from": { - "startLines": "3,14", - "startColumns": "4,4", - "startOffsets": "176,821", - "endLines": "7,16", - "endColumns": "12,12", - "endOffsets": "472,987" - }, - "to": { - "startLines": "1394,1399", - "startColumns": "4,4", - "startOffsets": "90254,90551", - "endLines": "1398,1401", - "endColumns": "12,12", - "endOffsets": "90546,90715" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\03c633e46d75bfb21f082f0417f55161\\jetified-window-1.0.0-beta04\\res\\values\\values.xml", - "from": { - "startLines": "2,7,8,9,10,11,19,23,34,51", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,234,294,346,391,451,869,1066,1790,2904", - "endLines": "6,7,8,9,10,18,22,33,50,58", - "endColumns": "11,59,51,44,59,24,24,24,24,24", - "endOffsets": "229,289,341,386,446,864,1061,1785,2899,3292" - }, - "to": { - "startLines": "6,11,12,13,241,1946,1954,3052,3063,3080", - "startColumns": "4,4,4,4,4,4,4,4,4,4", - "startOffsets": "314,493,553,605,15800,131122,131540,190079,190803,191917", - "endLines": "10,11,12,13,241,1953,1957,3062,3079,3087", - "endColumns": "11,59,51,44,59,24,24,24,24,24", - "endOffsets": "488,548,600,645,15855,131535,131732,190798,191912,192305" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\122df2e57d294d1a53db26bbc3b813c1\\core-1.6.0\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,89,90,94,95,96,97,104,111,159,191,228", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "55,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,2086,2145,2204,2264,2324,2384,2444,2504,2564,2624,2684,2744,2804,2863,2923,2983,3043,3103,3163,3223,3283,3343,3403,3463,3522,3582,3642,3701,3760,3819,3878,3937,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6400,6698,9998,12063,13823", - "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,88,89,93,94,95,96,103,110,158,190,227,234", - "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", - "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,2140,2199,2259,2319,2379,2439,2499,2559,2619,2679,2739,2799,2858,2918,2978,3038,3098,3158,3218,3278,3338,3398,3458,3517,3577,3637,3696,3755,3814,3873,3932,3991,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6395,6693,9993,12058,13818,14195" - }, - "to": { - "startLines": "5,24,25,60,61,163,164,165,166,167,168,169,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,244,245,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,275,304,1673,1674,1678,1679,1683,1827,1828,2562,2569,2622,2670,2711,2748", - "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", - "startOffsets": "254,1309,1381,3782,3851,10769,10839,10907,10979,11049,11110,11184,12041,12102,12163,12225,12289,12351,12412,12480,12580,12640,12706,12779,12848,12905,12957,13472,13544,13620,13685,13744,13803,13863,13923,13983,14043,14103,14163,14223,14283,14343,14403,14462,14522,14582,14642,14702,14762,14822,14882,14942,15002,15062,15121,15181,15241,15300,15359,15418,15477,15536,15951,15986,16228,16283,16346,16401,16459,16517,16578,16641,16698,16749,16799,16860,16917,16983,17017,17052,17573,19562,112014,112131,112332,112442,112643,124067,124139,164061,164498,167339,170639,173023,174783", - "endLines": "5,24,25,60,61,163,164,165,166,167,168,169,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,244,245,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,275,304,1673,1677,1678,1682,1683,1827,1828,2568,2575,2669,2701,2747,2754", - "endColumns": "59,71,87,68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,64,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", - "endOffsets": "309,1376,1464,3846,3909,10834,10902,10974,11044,11105,11179,11252,12097,12158,12220,12284,12346,12407,12475,12575,12635,12701,12774,12843,12900,12952,13014,13539,13615,13680,13739,13798,13858,13918,13978,14038,14098,14158,14218,14278,14338,14398,14457,14517,14577,14637,14697,14757,14817,14877,14937,14997,15057,15116,15176,15236,15295,15354,15413,15472,15531,15590,15981,16016,16278,16341,16396,16454,16512,16573,16636,16693,16744,16794,16855,16912,16978,17012,17047,17082,17638,19628,112126,112327,112437,112638,112767,124134,124201,164493,164791,170634,172699,174778,175155" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\42acb13871cd74f812098a2f4b7b2625\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "49", - "endOffsets": "100" - }, - "to": { - "startLines": "269", - "startColumns": "4", - "startOffsets": "17216", - "endColumns": "49", - "endOffsets": "17261" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\1f318d44f7cc290e64a3a0110f6d1b61\\jetified-savedstate-1.1.0\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "53", - "endOffsets": "104" - }, - "to": { - "startLines": "268", - "startColumns": "4", - "startOffsets": "17162", - "endColumns": "53", - "endOffsets": "17211" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\2efc05e976be65ba7f6f40769896581c\\jetified-appcompat-resources-1.3.0\\res\\values\\values.xml", - "from": { - "startLines": "2,29,36,47,74", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,1702,2087,2684,4317", - "endLines": "28,35,46,73,78", - "endColumns": "24,24,24,24,24", - "endOffsets": "1697,2082,2679,4312,4582" - }, - "to": { - "startLines": "1968,1995,2002,3088,3115", - "startColumns": "4,4,4,4,4", - "startOffsets": "132254,133901,134286,192310,193943", - "endLines": "1994,2001,2012,3114,3119", - "endColumns": "24,24,24,24,24", - "endOffsets": "133896,134281,134878,193938,194208" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\8d9ac4f576feffd2558f0cc20fbb942d\\fragment-1.3.4\\res\\values\\values.xml", - "from": { - "startLines": "2,3,4,5,10", - "startColumns": "4,4,4,4,4", - "startOffsets": "55,112,177,241,411", - "endLines": "2,3,4,9,13", - "endColumns": "56,64,63,24,24", - "endOffsets": "107,172,236,406,555" - }, - "to": { - "startLines": "242,248,270,2702,2707", - "startColumns": "4,4,4,4,4", - "startOffsets": "15860,16117,17266,172704,172874", - "endLines": "242,248,270,2706,2710", - "endColumns": "56,64,63,24,24", - "endOffsets": "15912,16177,17325,172869,173018" - } - }, - { - "source": "C:\\Users\\sukri\\.gradle\\caches\\transforms-2\\files-2.1\\8578375fbf5df5bbe65cca21a6cd6acf\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", - "from": { - "startLines": "2", - "startColumns": "4", - "startOffsets": "55", - "endColumns": "42", - "endOffsets": "93" - }, - "to": { - "startLines": "267", - "startColumns": "4", - "startOffsets": "17119", - "endColumns": "42", - "endOffsets": "17157" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/single/debug.json b/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/single/debug.json deleted file mode 100644 index 715282d8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/merged_res_blame_folder/debug/out/single/debug.json +++ /dev/null @@ -1,30 +0,0 @@ -[ - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-hdpi_ic_launcher.png.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-hdpi\\ic_launcher.png" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi_ic_launcher.png.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xxhdpi\\ic_launcher.png" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\drawable-v21_launch_background.xml.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\drawable-v21\\launch_background.xml" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xhdpi_ic_launcher.png.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\drawable_launch_background.xml.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\drawable\\launch_background.xml" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-mdpi_ic_launcher.png.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-mdpi\\ic_launcher.png" - }, - { - "merged": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\build\\app\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi_ic_launcher.png.flat", - "source": "C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\android\\app\\src\\main\\res\\mipmap-xxxhdpi\\ic_launcher.png" - } -] \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/navigation_json/debug/navigation.json b/Tracking/rudra_app/build/app/intermediates/navigation_json/debug/navigation.json deleted file mode 100644 index 0637a088..00000000 --- a/Tracking/rudra_app/build/app/intermediates/navigation_json/debug/navigation.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/AndroidManifest.xml b/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/AndroidManifest.xml deleted file mode 100644 index 10ea4c90..00000000 --- a/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/AndroidManifest.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/output-metadata.json b/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/output-metadata.json deleted file mode 100644 index 1af6ed88..00000000 --- a/Tracking/rudra_app/build/app/intermediates/packaged_manifests/debug/output-metadata.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "PACKAGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "com.example.rudra_app", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "versionCode": 1, - "versionName": "1.0.0", - "outputFile": "AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/output-metadata.json b/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/output-metadata.json deleted file mode 100644 index c3b6bc14..00000000 --- a/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/output-metadata.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "PROCESSED_RES", - "kind": "Directory" - }, - "applicationId": "com.example.rudra_app", - "variantName": "processDebugResources", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "versionCode": 1, - "versionName": "1.0.0", - "outputFile": "resources-debug.ap_" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/resources-debug.ap_ b/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/resources-debug.ap_ deleted file mode 100644 index 2d6a6480..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/processed_res/debug/out/resources-debug.ap_ and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_0.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_0.jar deleted file mode 100644 index 3d8bd473..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_0.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_1.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_1.jar deleted file mode 100644 index eb1892ce..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_1.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_2.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_2.jar deleted file mode 100644 index 59dcb7d7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_2.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_3.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_3.jar deleted file mode 100644 index 02c25011..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_3.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_4.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_4.jar deleted file mode 100644 index fe772687..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_4.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_5.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_5.jar deleted file mode 100644 index 9e4eed72..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_5.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_6.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_6.jar deleted file mode 100644 index 9ea38875..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_6.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_7.jar b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_7.jar deleted file mode 100644 index 86407790..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/36efe2b36826909b4768e458774b093f43fdce5fee0918e9be4b54e3fd4d3afe_7.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/BuildConfig.dex b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/BuildConfig.dex deleted file mode 100644 index bdc5fb70..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/BuildConfig.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/MainActivity.dex b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/MainActivity.dex deleted file mode 100644 index 4006b5c5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/com/example/rudra_app/MainActivity.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/io/flutter/plugins/GeneratedPluginRegistrant.dex b/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/io/flutter/plugins/GeneratedPluginRegistrant.dex deleted file mode 100644 index ab0314d8..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/project_dex_archive/debug/out/io/flutter/plugins/GeneratedPluginRegistrant.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable-v21_launch_background.xml.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable-v21_launch_background.xml.flat deleted file mode 100644 index 68453e8d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable-v21_launch_background.xml.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable_launch_background.xml.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable_launch_background.xml.flat deleted file mode 100644 index 8475b391..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/drawable_launch_background.xml.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat deleted file mode 100644 index 7a9a7326..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat deleted file mode 100644 index 5548ed1c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat deleted file mode 100644 index 667945e0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat deleted file mode 100644 index abf1a702..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat deleted file mode 100644 index cfe7f879..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-af_values-af.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-af_values-af.arsc.flat deleted file mode 100644 index 9ad7f599..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-af_values-af.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-am_values-am.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-am_values-am.arsc.flat deleted file mode 100644 index dc21bd7d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-am_values-am.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat deleted file mode 100644 index 34bd7085..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-as_values-as.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-as_values-as.arsc.flat deleted file mode 100644 index a87f8172..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-as_values-as.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-az_values-az.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-az_values-az.arsc.flat deleted file mode 100644 index 1adf67e8..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-az_values-az.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat deleted file mode 100644 index f6c25f65..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-be_values-be.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-be_values-be.arsc.flat deleted file mode 100644 index baa5aaa9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-be_values-be.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat deleted file mode 100644 index 68b363da..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat deleted file mode 100644 index 40eb50c4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat deleted file mode 100644 index c23f7d4f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat deleted file mode 100644 index 09019862..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat deleted file mode 100644 index ddabacb4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-da_values-da.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-da_values-da.arsc.flat deleted file mode 100644 index 69df1a8b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-da_values-da.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-de_values-de.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-de_values-de.arsc.flat deleted file mode 100644 index 841eb57e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-de_values-de.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-el_values-el.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-el_values-el.arsc.flat deleted file mode 100644 index d83dbea8..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-el_values-el.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat deleted file mode 100644 index be5d2dc0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat deleted file mode 100644 index c329fdcd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat deleted file mode 100644 index a4f7535d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat deleted file mode 100644 index 9afa099d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat deleted file mode 100644 index a0c0866a..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat deleted file mode 100644 index ae8bc5a3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es_values-es.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es_values-es.arsc.flat deleted file mode 100644 index 298a59f0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-es_values-es.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-et_values-et.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-et_values-et.arsc.flat deleted file mode 100644 index ca704abd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-et_values-et.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat deleted file mode 100644 index 68bb2347..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat deleted file mode 100644 index 6a18f856..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat deleted file mode 100644 index e094ba60..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat deleted file mode 100644 index 39ae3469..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat deleted file mode 100644 index 6c38f5da..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat deleted file mode 100644 index d762844c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat deleted file mode 100644 index 6d3c48e5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat deleted file mode 100644 index 4773b9a2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat deleted file mode 100644 index 3fa1e349..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat deleted file mode 100644 index 297ac283..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat deleted file mode 100644 index d2a5c94f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat deleted file mode 100644 index dfacf648..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat deleted file mode 100644 index 5cd0a2f8..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-in_values-in.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-in_values-in.arsc.flat deleted file mode 100644 index d62f98f2..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-in_values-in.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-is_values-is.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-is_values-is.arsc.flat deleted file mode 100644 index 2a95770b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-is_values-is.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-it_values-it.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-it_values-it.arsc.flat deleted file mode 100644 index f14fa025..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-it_values-it.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat deleted file mode 100644 index 0a52d435..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat deleted file mode 100644 index 945950d7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat deleted file mode 100644 index 722da009..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat deleted file mode 100644 index 43770f46..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-km_values-km.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-km_values-km.arsc.flat deleted file mode 100644 index e5f67642..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-km_values-km.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat deleted file mode 100644 index 28ab80e6..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat deleted file mode 100644 index 8b29b20c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat deleted file mode 100644 index 16d1749f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-land_values-land.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-land_values-land.arsc.flat deleted file mode 100644 index ba5a2d92..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-land_values-land.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat deleted file mode 100644 index ae23ab89..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat deleted file mode 100644 index cbf3c095..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat deleted file mode 100644 index 7dabc75f..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat deleted file mode 100644 index 692afaa9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat deleted file mode 100644 index a2e98d85..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat deleted file mode 100644 index 1def8af4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat deleted file mode 100644 index f4c52c0d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat deleted file mode 100644 index 22107a99..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat deleted file mode 100644 index e34fdd69..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat deleted file mode 100644 index e2ed3eb7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-my_values-my.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-my_values-my.arsc.flat deleted file mode 100644 index 988efbcc..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-my_values-my.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat deleted file mode 100644 index e8481870..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat deleted file mode 100644 index 6a77f832..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat deleted file mode 100644 index 3de87b61..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat deleted file mode 100644 index 218329b7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-or_values-or.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-or_values-or.arsc.flat deleted file mode 100644 index 2840507c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-or_values-or.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat deleted file mode 100644 index ab8fdf4c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat deleted file mode 100644 index 91001743..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-port_values-port.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-port_values-port.arsc.flat deleted file mode 100644 index 7ab60f4e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-port_values-port.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat deleted file mode 100644 index fbb0e6f9..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat deleted file mode 100644 index 13855c74..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat deleted file mode 100644 index 06aca1b3..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat deleted file mode 100644 index abe46609..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat deleted file mode 100644 index 87a23ba5..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-si_values-si.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-si_values-si.arsc.flat deleted file mode 100644 index 5d244597..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-si_values-si.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat deleted file mode 100644 index 154a4eee..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat deleted file mode 100644 index 40fc666e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat deleted file mode 100644 index 4aecf226..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat deleted file mode 100644 index abbc9417..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat deleted file mode 100644 index a207908b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat deleted file mode 100644 index 9674d52d..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat deleted file mode 100644 index 95c8fe10..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat deleted file mode 100644 index c684c09b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-te_values-te.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-te_values-te.arsc.flat deleted file mode 100644 index cf3fe77e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-te_values-te.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-th_values-th.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-th_values-th.arsc.flat deleted file mode 100644 index 0f23d449..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-th_values-th.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat deleted file mode 100644 index 6c7c4d9a..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat deleted file mode 100644 index 88ce03b0..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat deleted file mode 100644 index 2375158e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat deleted file mode 100644 index a7991e05..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat deleted file mode 100644 index f4ba4544..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat deleted file mode 100644 index 2ff474b4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat deleted file mode 100644 index 6a252c1c..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat deleted file mode 100644 index 2b9998aa..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat deleted file mode 100644 index 07e1393b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat deleted file mode 100644 index b6a1bd12..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat deleted file mode 100644 index 1a470a5e..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat deleted file mode 100644 index ac6c39c4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat deleted file mode 100644 index bacef1cd..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat deleted file mode 100644 index 4fb2acb4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat deleted file mode 100644 index a001c7c7..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat deleted file mode 100644 index 47594799..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat deleted file mode 100644 index 8cbf2585..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat deleted file mode 100644 index fbe1a130..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat deleted file mode 100644 index 0c362768..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat deleted file mode 100644 index 6700472b..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat deleted file mode 100644 index af2905f4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat deleted file mode 100644 index 062cbde6..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat deleted file mode 100644 index 7ee62b82..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values_values.arsc.flat b/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values_values.arsc.flat deleted file mode 100644 index 89269926..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/res/merged/debug/values_values.arsc.flat and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/runtime_symbol_list/debug/R.txt b/Tracking/rudra_app/build/app/intermediates/runtime_symbol_list/debug/R.txt deleted file mode 100644 index 5ecd99d9..00000000 --- a/Tracking/rudra_app/build/app/intermediates/runtime_symbol_list/debug/R.txt +++ /dev/null @@ -1,1756 +0,0 @@ -int anim abc_fade_in 0x7f010000 -int anim abc_fade_out 0x7f010001 -int anim abc_grow_fade_in_from_bottom 0x7f010002 -int anim abc_popup_enter 0x7f010003 -int anim abc_popup_exit 0x7f010004 -int anim abc_shrink_fade_out_from_bottom 0x7f010005 -int anim abc_slide_in_bottom 0x7f010006 -int anim abc_slide_in_top 0x7f010007 -int anim abc_slide_out_bottom 0x7f010008 -int anim abc_slide_out_top 0x7f010009 -int anim abc_tooltip_enter 0x7f01000a -int anim abc_tooltip_exit 0x7f01000b -int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c -int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d -int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e -int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f -int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 -int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 -int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 -int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 -int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 -int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 -int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 -int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 -int anim fragment_fast_out_extra_slow_in 0x7f010018 -int animator fragment_close_enter 0x7f020000 -int animator fragment_close_exit 0x7f020001 -int animator fragment_fade_enter 0x7f020002 -int animator fragment_fade_exit 0x7f020003 -int animator fragment_open_enter 0x7f020004 -int animator fragment_open_exit 0x7f020005 -int attr actionBarDivider 0x7f030000 -int attr actionBarItemBackground 0x7f030001 -int attr actionBarPopupTheme 0x7f030002 -int attr actionBarSize 0x7f030003 -int attr actionBarSplitStyle 0x7f030004 -int attr actionBarStyle 0x7f030005 -int attr actionBarTabBarStyle 0x7f030006 -int attr actionBarTabStyle 0x7f030007 -int attr actionBarTabTextStyle 0x7f030008 -int attr actionBarTheme 0x7f030009 -int attr actionBarWidgetTheme 0x7f03000a -int attr actionButtonStyle 0x7f03000b -int attr actionDropDownStyle 0x7f03000c -int attr actionLayout 0x7f03000d -int attr actionMenuTextAppearance 0x7f03000e -int attr actionMenuTextColor 0x7f03000f -int attr actionModeBackground 0x7f030010 -int attr actionModeCloseButtonStyle 0x7f030011 -int attr actionModeCloseContentDescription 0x7f030012 -int attr actionModeCloseDrawable 0x7f030013 -int attr actionModeCopyDrawable 0x7f030014 -int attr actionModeCutDrawable 0x7f030015 -int attr actionModeFindDrawable 0x7f030016 -int attr actionModePasteDrawable 0x7f030017 -int attr actionModePopupWindowStyle 0x7f030018 -int attr actionModeSelectAllDrawable 0x7f030019 -int attr actionModeShareDrawable 0x7f03001a -int attr actionModeSplitBackground 0x7f03001b -int attr actionModeStyle 0x7f03001c -int attr actionModeTheme 0x7f03001d -int attr actionModeWebSearchDrawable 0x7f03001e -int attr actionOverflowButtonStyle 0x7f03001f -int attr actionOverflowMenuStyle 0x7f030020 -int attr actionProviderClass 0x7f030021 -int attr actionViewClass 0x7f030022 -int attr activityAction 0x7f030023 -int attr activityChooserViewStyle 0x7f030024 -int attr activityName 0x7f030025 -int attr alertDialogButtonGroupStyle 0x7f030026 -int attr alertDialogCenterButtons 0x7f030027 -int attr alertDialogStyle 0x7f030028 -int attr alertDialogTheme 0x7f030029 -int attr allowStacking 0x7f03002a -int attr alpha 0x7f03002b -int attr alphabeticModifiers 0x7f03002c -int attr alwaysExpand 0x7f03002d -int attr arrowHeadLength 0x7f03002e -int attr arrowShaftLength 0x7f03002f -int attr autoCompleteTextViewStyle 0x7f030030 -int attr autoSizeMaxTextSize 0x7f030031 -int attr autoSizeMinTextSize 0x7f030032 -int attr autoSizePresetSizes 0x7f030033 -int attr autoSizeStepGranularity 0x7f030034 -int attr autoSizeTextType 0x7f030035 -int attr background 0x7f030036 -int attr backgroundSplit 0x7f030037 -int attr backgroundStacked 0x7f030038 -int attr backgroundTint 0x7f030039 -int attr backgroundTintMode 0x7f03003a -int attr barLength 0x7f03003b -int attr borderlessButtonStyle 0x7f03003c -int attr buttonBarButtonStyle 0x7f03003d -int attr buttonBarNegativeButtonStyle 0x7f03003e -int attr buttonBarNeutralButtonStyle 0x7f03003f -int attr buttonBarPositiveButtonStyle 0x7f030040 -int attr buttonBarStyle 0x7f030041 -int attr buttonCompat 0x7f030042 -int attr buttonGravity 0x7f030043 -int attr buttonIconDimen 0x7f030044 -int attr buttonPanelSideLayout 0x7f030045 -int attr buttonStyle 0x7f030046 -int attr buttonStyleSmall 0x7f030047 -int attr buttonTint 0x7f030048 -int attr buttonTintMode 0x7f030049 -int attr checkboxStyle 0x7f03004a -int attr checkedTextViewStyle 0x7f03004b -int attr clearTop 0x7f03004c -int attr closeIcon 0x7f03004d -int attr closeItemLayout 0x7f03004e -int attr collapseContentDescription 0x7f03004f -int attr collapseIcon 0x7f030050 -int attr color 0x7f030051 -int attr colorAccent 0x7f030052 -int attr colorBackgroundFloating 0x7f030053 -int attr colorButtonNormal 0x7f030054 -int attr colorControlActivated 0x7f030055 -int attr colorControlHighlight 0x7f030056 -int attr colorControlNormal 0x7f030057 -int attr colorError 0x7f030058 -int attr colorPrimary 0x7f030059 -int attr colorPrimaryDark 0x7f03005a -int attr colorSwitchThumbNormal 0x7f03005b -int attr commitIcon 0x7f03005c -int attr contentDescription 0x7f03005d -int attr contentInsetEnd 0x7f03005e -int attr contentInsetEndWithActions 0x7f03005f -int attr contentInsetLeft 0x7f030060 -int attr contentInsetRight 0x7f030061 -int attr contentInsetStart 0x7f030062 -int attr contentInsetStartWithNavigation 0x7f030063 -int attr controlBackground 0x7f030064 -int attr customNavigationLayout 0x7f030065 -int attr defaultQueryHint 0x7f030066 -int attr dialogCornerRadius 0x7f030067 -int attr dialogPreferredPadding 0x7f030068 -int attr dialogTheme 0x7f030069 -int attr displayOptions 0x7f03006a -int attr divider 0x7f03006b -int attr dividerHorizontal 0x7f03006c -int attr dividerPadding 0x7f03006d -int attr dividerVertical 0x7f03006e -int attr drawableBottomCompat 0x7f03006f -int attr drawableEndCompat 0x7f030070 -int attr drawableLeftCompat 0x7f030071 -int attr drawableRightCompat 0x7f030072 -int attr drawableSize 0x7f030073 -int attr drawableStartCompat 0x7f030074 -int attr drawableTint 0x7f030075 -int attr drawableTintMode 0x7f030076 -int attr drawableTopCompat 0x7f030077 -int attr drawerArrowStyle 0x7f030078 -int attr dropDownListViewStyle 0x7f030079 -int attr dropdownListPreferredItemHeight 0x7f03007a -int attr editTextBackground 0x7f03007b -int attr editTextColor 0x7f03007c -int attr editTextStyle 0x7f03007d -int attr elevation 0x7f03007e -int attr expandActivityOverflowButtonDrawable 0x7f03007f -int attr finishPrimaryWithSecondary 0x7f030080 -int attr finishSecondaryWithPrimary 0x7f030081 -int attr firstBaselineToTopHeight 0x7f030082 -int attr font 0x7f030083 -int attr fontFamily 0x7f030084 -int attr fontProviderAuthority 0x7f030085 -int attr fontProviderCerts 0x7f030086 -int attr fontProviderFetchStrategy 0x7f030087 -int attr fontProviderFetchTimeout 0x7f030088 -int attr fontProviderPackage 0x7f030089 -int attr fontProviderQuery 0x7f03008a -int attr fontProviderSystemFontFamily 0x7f03008b -int attr fontStyle 0x7f03008c -int attr fontVariationSettings 0x7f03008d -int attr fontWeight 0x7f03008e -int attr gapBetweenBars 0x7f03008f -int attr goIcon 0x7f030090 -int attr height 0x7f030091 -int attr hideOnContentScroll 0x7f030092 -int attr homeAsUpIndicator 0x7f030093 -int attr homeLayout 0x7f030094 -int attr icon 0x7f030095 -int attr iconTint 0x7f030096 -int attr iconTintMode 0x7f030097 -int attr iconifiedByDefault 0x7f030098 -int attr imageButtonStyle 0x7f030099 -int attr indeterminateProgressStyle 0x7f03009a -int attr initialActivityCount 0x7f03009b -int attr isLightTheme 0x7f03009c -int attr itemPadding 0x7f03009d -int attr lastBaselineToBottomHeight 0x7f03009e -int attr layout 0x7f03009f -int attr lineHeight 0x7f0300a0 -int attr listChoiceBackgroundIndicator 0x7f0300a1 -int attr listChoiceIndicatorMultipleAnimated 0x7f0300a2 -int attr listChoiceIndicatorSingleAnimated 0x7f0300a3 -int attr listDividerAlertDialog 0x7f0300a4 -int attr listItemLayout 0x7f0300a5 -int attr listLayout 0x7f0300a6 -int attr listMenuViewStyle 0x7f0300a7 -int attr listPopupWindowStyle 0x7f0300a8 -int attr listPreferredItemHeight 0x7f0300a9 -int attr listPreferredItemHeightLarge 0x7f0300aa -int attr listPreferredItemHeightSmall 0x7f0300ab -int attr listPreferredItemPaddingEnd 0x7f0300ac -int attr listPreferredItemPaddingLeft 0x7f0300ad -int attr listPreferredItemPaddingRight 0x7f0300ae -int attr listPreferredItemPaddingStart 0x7f0300af -int attr logo 0x7f0300b0 -int attr logoDescription 0x7f0300b1 -int attr maxButtonHeight 0x7f0300b2 -int attr measureWithLargestChild 0x7f0300b3 -int attr menu 0x7f0300b4 -int attr multiChoiceItemLayout 0x7f0300b5 -int attr navigationContentDescription 0x7f0300b6 -int attr navigationIcon 0x7f0300b7 -int attr navigationMode 0x7f0300b8 -int attr nestedScrollViewStyle 0x7f0300b9 -int attr numericModifiers 0x7f0300ba -int attr overlapAnchor 0x7f0300bb -int attr paddingBottomNoButtons 0x7f0300bc -int attr paddingEnd 0x7f0300bd -int attr paddingStart 0x7f0300be -int attr paddingTopNoTitle 0x7f0300bf -int attr panelBackground 0x7f0300c0 -int attr panelMenuListTheme 0x7f0300c1 -int attr panelMenuListWidth 0x7f0300c2 -int attr placeholderActivityName 0x7f0300c3 -int attr popupMenuStyle 0x7f0300c4 -int attr popupTheme 0x7f0300c5 -int attr popupWindowStyle 0x7f0300c6 -int attr preserveIconSpacing 0x7f0300c7 -int attr primaryActivityName 0x7f0300c8 -int attr progressBarPadding 0x7f0300c9 -int attr progressBarStyle 0x7f0300ca -int attr queryBackground 0x7f0300cb -int attr queryHint 0x7f0300cc -int attr queryPatterns 0x7f0300cd -int attr radioButtonStyle 0x7f0300ce -int attr ratingBarStyle 0x7f0300cf -int attr ratingBarStyleIndicator 0x7f0300d0 -int attr ratingBarStyleSmall 0x7f0300d1 -int attr searchHintIcon 0x7f0300d2 -int attr searchIcon 0x7f0300d3 -int attr searchViewStyle 0x7f0300d4 -int attr secondaryActivityAction 0x7f0300d5 -int attr secondaryActivityName 0x7f0300d6 -int attr seekBarStyle 0x7f0300d7 -int attr selectableItemBackground 0x7f0300d8 -int attr selectableItemBackgroundBorderless 0x7f0300d9 -int attr shortcutMatchRequired 0x7f0300da -int attr showAsAction 0x7f0300db -int attr showDividers 0x7f0300dc -int attr showText 0x7f0300dd -int attr showTitle 0x7f0300de -int attr singleChoiceItemLayout 0x7f0300df -int attr spinBars 0x7f0300e0 -int attr spinnerDropDownItemStyle 0x7f0300e1 -int attr spinnerStyle 0x7f0300e2 -int attr splitLayoutDirection 0x7f0300e3 -int attr splitMinSmallestWidth 0x7f0300e4 -int attr splitMinWidth 0x7f0300e5 -int attr splitRatio 0x7f0300e6 -int attr splitTrack 0x7f0300e7 -int attr srcCompat 0x7f0300e8 -int attr state_above_anchor 0x7f0300e9 -int attr subMenuArrow 0x7f0300ea -int attr submitBackground 0x7f0300eb -int attr subtitle 0x7f0300ec -int attr subtitleTextAppearance 0x7f0300ed -int attr subtitleTextColor 0x7f0300ee -int attr subtitleTextStyle 0x7f0300ef -int attr suggestionRowLayout 0x7f0300f0 -int attr switchMinWidth 0x7f0300f1 -int attr switchPadding 0x7f0300f2 -int attr switchStyle 0x7f0300f3 -int attr switchTextAppearance 0x7f0300f4 -int attr textAllCaps 0x7f0300f5 -int attr textAppearanceLargePopupMenu 0x7f0300f6 -int attr textAppearanceListItem 0x7f0300f7 -int attr textAppearanceListItemSecondary 0x7f0300f8 -int attr textAppearanceListItemSmall 0x7f0300f9 -int attr textAppearancePopupMenuHeader 0x7f0300fa -int attr textAppearanceSearchResultSubtitle 0x7f0300fb -int attr textAppearanceSearchResultTitle 0x7f0300fc -int attr textAppearanceSmallPopupMenu 0x7f0300fd -int attr textColorAlertDialogListItem 0x7f0300fe -int attr textColorSearchUrl 0x7f0300ff -int attr textLocale 0x7f030100 -int attr theme 0x7f030101 -int attr thickness 0x7f030102 -int attr thumbTextPadding 0x7f030103 -int attr thumbTint 0x7f030104 -int attr thumbTintMode 0x7f030105 -int attr tickMark 0x7f030106 -int attr tickMarkTint 0x7f030107 -int attr tickMarkTintMode 0x7f030108 -int attr tint 0x7f030109 -int attr tintMode 0x7f03010a -int attr title 0x7f03010b -int attr titleMargin 0x7f03010c -int attr titleMarginBottom 0x7f03010d -int attr titleMarginEnd 0x7f03010e -int attr titleMarginStart 0x7f03010f -int attr titleMarginTop 0x7f030110 -int attr titleMargins 0x7f030111 -int attr titleTextAppearance 0x7f030112 -int attr titleTextColor 0x7f030113 -int attr titleTextStyle 0x7f030114 -int attr toolbarNavigationButtonStyle 0x7f030115 -int attr toolbarStyle 0x7f030116 -int attr tooltipForegroundColor 0x7f030117 -int attr tooltipFrameBackground 0x7f030118 -int attr tooltipText 0x7f030119 -int attr track 0x7f03011a -int attr trackTint 0x7f03011b -int attr trackTintMode 0x7f03011c -int attr ttcIndex 0x7f03011d -int attr viewInflaterClass 0x7f03011e -int attr voiceIcon 0x7f03011f -int attr windowActionBar 0x7f030120 -int attr windowActionBarOverlay 0x7f030121 -int attr windowActionModeOverlay 0x7f030122 -int attr windowFixedHeightMajor 0x7f030123 -int attr windowFixedHeightMinor 0x7f030124 -int attr windowFixedWidthMajor 0x7f030125 -int attr windowFixedWidthMinor 0x7f030126 -int attr windowMinWidthMajor 0x7f030127 -int attr windowMinWidthMinor 0x7f030128 -int attr windowNoTitle 0x7f030129 -int bool abc_action_bar_embed_tabs 0x7f040000 -int bool abc_config_actionMenuItemAllCaps 0x7f040001 -int color abc_background_cache_hint_selector_material_dark 0x7f050000 -int color abc_background_cache_hint_selector_material_light 0x7f050001 -int color abc_btn_colored_borderless_text_material 0x7f050002 -int color abc_btn_colored_text_material 0x7f050003 -int color abc_color_highlight_material 0x7f050004 -int color abc_decor_view_status_guard 0x7f050005 -int color abc_decor_view_status_guard_light 0x7f050006 -int color abc_hint_foreground_material_dark 0x7f050007 -int color abc_hint_foreground_material_light 0x7f050008 -int color abc_primary_text_disable_only_material_dark 0x7f050009 -int color abc_primary_text_disable_only_material_light 0x7f05000a -int color abc_primary_text_material_dark 0x7f05000b -int color abc_primary_text_material_light 0x7f05000c -int color abc_search_url_text 0x7f05000d -int color abc_search_url_text_normal 0x7f05000e -int color abc_search_url_text_pressed 0x7f05000f -int color abc_search_url_text_selected 0x7f050010 -int color abc_secondary_text_material_dark 0x7f050011 -int color abc_secondary_text_material_light 0x7f050012 -int color abc_tint_btn_checkable 0x7f050013 -int color abc_tint_default 0x7f050014 -int color abc_tint_edittext 0x7f050015 -int color abc_tint_seek_thumb 0x7f050016 -int color abc_tint_spinner 0x7f050017 -int color abc_tint_switch_track 0x7f050018 -int color accent_material_dark 0x7f050019 -int color accent_material_light 0x7f05001a -int color androidx_core_ripple_material_light 0x7f05001b -int color androidx_core_secondary_text_default_material_light 0x7f05001c -int color background_floating_material_dark 0x7f05001d -int color background_floating_material_light 0x7f05001e -int color background_material_dark 0x7f05001f -int color background_material_light 0x7f050020 -int color bright_foreground_disabled_material_dark 0x7f050021 -int color bright_foreground_disabled_material_light 0x7f050022 -int color bright_foreground_inverse_material_dark 0x7f050023 -int color bright_foreground_inverse_material_light 0x7f050024 -int color bright_foreground_material_dark 0x7f050025 -int color bright_foreground_material_light 0x7f050026 -int color button_material_dark 0x7f050027 -int color button_material_light 0x7f050028 -int color dim_foreground_disabled_material_dark 0x7f050029 -int color dim_foreground_disabled_material_light 0x7f05002a -int color dim_foreground_material_dark 0x7f05002b -int color dim_foreground_material_light 0x7f05002c -int color error_color_material_dark 0x7f05002d -int color error_color_material_light 0x7f05002e -int color foreground_material_dark 0x7f05002f -int color foreground_material_light 0x7f050030 -int color highlighted_text_material_dark 0x7f050031 -int color highlighted_text_material_light 0x7f050032 -int color material_blue_grey_800 0x7f050033 -int color material_blue_grey_900 0x7f050034 -int color material_blue_grey_950 0x7f050035 -int color material_deep_teal_200 0x7f050036 -int color material_deep_teal_500 0x7f050037 -int color material_grey_100 0x7f050038 -int color material_grey_300 0x7f050039 -int color material_grey_50 0x7f05003a -int color material_grey_600 0x7f05003b -int color material_grey_800 0x7f05003c -int color material_grey_850 0x7f05003d -int color material_grey_900 0x7f05003e -int color notification_action_color_filter 0x7f05003f -int color notification_icon_bg_color 0x7f050040 -int color primary_dark_material_dark 0x7f050041 -int color primary_dark_material_light 0x7f050042 -int color primary_material_dark 0x7f050043 -int color primary_material_light 0x7f050044 -int color primary_text_default_material_dark 0x7f050045 -int color primary_text_default_material_light 0x7f050046 -int color primary_text_disabled_material_dark 0x7f050047 -int color primary_text_disabled_material_light 0x7f050048 -int color ripple_material_dark 0x7f050049 -int color ripple_material_light 0x7f05004a -int color secondary_text_default_material_dark 0x7f05004b -int color secondary_text_default_material_light 0x7f05004c -int color secondary_text_disabled_material_dark 0x7f05004d -int color secondary_text_disabled_material_light 0x7f05004e -int color switch_thumb_disabled_material_dark 0x7f05004f -int color switch_thumb_disabled_material_light 0x7f050050 -int color switch_thumb_material_dark 0x7f050051 -int color switch_thumb_material_light 0x7f050052 -int color switch_thumb_normal_material_dark 0x7f050053 -int color switch_thumb_normal_material_light 0x7f050054 -int color tooltip_background_dark 0x7f050055 -int color tooltip_background_light 0x7f050056 -int dimen abc_action_bar_content_inset_material 0x7f060000 -int dimen abc_action_bar_content_inset_with_nav 0x7f060001 -int dimen abc_action_bar_default_height_material 0x7f060002 -int dimen abc_action_bar_default_padding_end_material 0x7f060003 -int dimen abc_action_bar_default_padding_start_material 0x7f060004 -int dimen abc_action_bar_elevation_material 0x7f060005 -int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 -int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 -int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 -int dimen abc_action_bar_stacked_max_height 0x7f060009 -int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a -int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b -int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c -int dimen abc_action_button_min_height_material 0x7f06000d -int dimen abc_action_button_min_width_material 0x7f06000e -int dimen abc_action_button_min_width_overflow_material 0x7f06000f -int dimen abc_alert_dialog_button_bar_height 0x7f060010 -int dimen abc_alert_dialog_button_dimen 0x7f060011 -int dimen abc_button_inset_horizontal_material 0x7f060012 -int dimen abc_button_inset_vertical_material 0x7f060013 -int dimen abc_button_padding_horizontal_material 0x7f060014 -int dimen abc_button_padding_vertical_material 0x7f060015 -int dimen abc_cascading_menus_min_smallest_width 0x7f060016 -int dimen abc_config_prefDialogWidth 0x7f060017 -int dimen abc_control_corner_material 0x7f060018 -int dimen abc_control_inset_material 0x7f060019 -int dimen abc_control_padding_material 0x7f06001a -int dimen abc_dialog_corner_radius_material 0x7f06001b -int dimen abc_dialog_fixed_height_major 0x7f06001c -int dimen abc_dialog_fixed_height_minor 0x7f06001d -int dimen abc_dialog_fixed_width_major 0x7f06001e -int dimen abc_dialog_fixed_width_minor 0x7f06001f -int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 -int dimen abc_dialog_list_padding_top_no_title 0x7f060021 -int dimen abc_dialog_min_width_major 0x7f060022 -int dimen abc_dialog_min_width_minor 0x7f060023 -int dimen abc_dialog_padding_material 0x7f060024 -int dimen abc_dialog_padding_top_material 0x7f060025 -int dimen abc_dialog_title_divider_material 0x7f060026 -int dimen abc_disabled_alpha_material_dark 0x7f060027 -int dimen abc_disabled_alpha_material_light 0x7f060028 -int dimen abc_dropdownitem_icon_width 0x7f060029 -int dimen abc_dropdownitem_text_padding_left 0x7f06002a -int dimen abc_dropdownitem_text_padding_right 0x7f06002b -int dimen abc_edit_text_inset_bottom_material 0x7f06002c -int dimen abc_edit_text_inset_horizontal_material 0x7f06002d -int dimen abc_edit_text_inset_top_material 0x7f06002e -int dimen abc_floating_window_z 0x7f06002f -int dimen abc_list_item_height_large_material 0x7f060030 -int dimen abc_list_item_height_material 0x7f060031 -int dimen abc_list_item_height_small_material 0x7f060032 -int dimen abc_list_item_padding_horizontal_material 0x7f060033 -int dimen abc_panel_menu_list_width 0x7f060034 -int dimen abc_progress_bar_height_material 0x7f060035 -int dimen abc_search_view_preferred_height 0x7f060036 -int dimen abc_search_view_preferred_width 0x7f060037 -int dimen abc_seekbar_track_background_height_material 0x7f060038 -int dimen abc_seekbar_track_progress_height_material 0x7f060039 -int dimen abc_select_dialog_padding_start_material 0x7f06003a -int dimen abc_star_big 0x7f06003b -int dimen abc_star_medium 0x7f06003c -int dimen abc_star_small 0x7f06003d -int dimen abc_switch_padding 0x7f06003e -int dimen abc_text_size_body_1_material 0x7f06003f -int dimen abc_text_size_body_2_material 0x7f060040 -int dimen abc_text_size_button_material 0x7f060041 -int dimen abc_text_size_caption_material 0x7f060042 -int dimen abc_text_size_display_1_material 0x7f060043 -int dimen abc_text_size_display_2_material 0x7f060044 -int dimen abc_text_size_display_3_material 0x7f060045 -int dimen abc_text_size_display_4_material 0x7f060046 -int dimen abc_text_size_headline_material 0x7f060047 -int dimen abc_text_size_large_material 0x7f060048 -int dimen abc_text_size_medium_material 0x7f060049 -int dimen abc_text_size_menu_header_material 0x7f06004a -int dimen abc_text_size_menu_material 0x7f06004b -int dimen abc_text_size_small_material 0x7f06004c -int dimen abc_text_size_subhead_material 0x7f06004d -int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e -int dimen abc_text_size_title_material 0x7f06004f -int dimen abc_text_size_title_material_toolbar 0x7f060050 -int dimen compat_button_inset_horizontal_material 0x7f060051 -int dimen compat_button_inset_vertical_material 0x7f060052 -int dimen compat_button_padding_horizontal_material 0x7f060053 -int dimen compat_button_padding_vertical_material 0x7f060054 -int dimen compat_control_corner_material 0x7f060055 -int dimen compat_notification_large_icon_max_height 0x7f060056 -int dimen compat_notification_large_icon_max_width 0x7f060057 -int dimen disabled_alpha_material_dark 0x7f060058 -int dimen disabled_alpha_material_light 0x7f060059 -int dimen highlight_alpha_material_colored 0x7f06005a -int dimen highlight_alpha_material_dark 0x7f06005b -int dimen highlight_alpha_material_light 0x7f06005c -int dimen hint_alpha_material_dark 0x7f06005d -int dimen hint_alpha_material_light 0x7f06005e -int dimen hint_pressed_alpha_material_dark 0x7f06005f -int dimen hint_pressed_alpha_material_light 0x7f060060 -int dimen notification_action_icon_size 0x7f060061 -int dimen notification_action_text_size 0x7f060062 -int dimen notification_big_circle_margin 0x7f060063 -int dimen notification_content_margin_start 0x7f060064 -int dimen notification_large_icon_height 0x7f060065 -int dimen notification_large_icon_width 0x7f060066 -int dimen notification_main_column_padding_top 0x7f060067 -int dimen notification_media_narrow_margin 0x7f060068 -int dimen notification_right_icon_size 0x7f060069 -int dimen notification_right_side_padding_top 0x7f06006a -int dimen notification_small_icon_background_padding 0x7f06006b -int dimen notification_small_icon_size_as_large 0x7f06006c -int dimen notification_subtext_size 0x7f06006d -int dimen notification_top_pad 0x7f06006e -int dimen notification_top_pad_large_text 0x7f06006f -int dimen tooltip_corner_radius 0x7f060070 -int dimen tooltip_horizontal_padding 0x7f060071 -int dimen tooltip_margin 0x7f060072 -int dimen tooltip_precise_anchor_extra_offset 0x7f060073 -int dimen tooltip_precise_anchor_threshold 0x7f060074 -int dimen tooltip_vertical_padding 0x7f060075 -int dimen tooltip_y_offset_non_touch 0x7f060076 -int dimen tooltip_y_offset_touch 0x7f060077 -int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000 -int drawable abc_action_bar_item_background_material 0x7f070001 -int drawable abc_btn_borderless_material 0x7f070002 -int drawable abc_btn_check_material 0x7f070003 -int drawable abc_btn_check_material_anim 0x7f070004 -int drawable abc_btn_check_to_on_mtrl_000 0x7f070005 -int drawable abc_btn_check_to_on_mtrl_015 0x7f070006 -int drawable abc_btn_colored_material 0x7f070007 -int drawable abc_btn_default_mtrl_shape 0x7f070008 -int drawable abc_btn_radio_material 0x7f070009 -int drawable abc_btn_radio_material_anim 0x7f07000a -int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000b -int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000c -int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d -int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e -int drawable abc_cab_background_internal_bg 0x7f07000f -int drawable abc_cab_background_top_material 0x7f070010 -int drawable abc_cab_background_top_mtrl_alpha 0x7f070011 -int drawable abc_control_background_material 0x7f070012 -int drawable abc_dialog_material_background 0x7f070013 -int drawable abc_edit_text_material 0x7f070014 -int drawable abc_ic_ab_back_material 0x7f070015 -int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070016 -int drawable abc_ic_clear_material 0x7f070017 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070018 -int drawable abc_ic_go_search_api_material 0x7f070019 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001a -int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001b -int drawable abc_ic_menu_overflow_material 0x7f07001c -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001d -int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001e -int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001f -int drawable abc_ic_search_api_material 0x7f070020 -int drawable abc_ic_voice_search_api_material 0x7f070021 -int drawable abc_item_background_holo_dark 0x7f070022 -int drawable abc_item_background_holo_light 0x7f070023 -int drawable abc_list_divider_material 0x7f070024 -int drawable abc_list_divider_mtrl_alpha 0x7f070025 -int drawable abc_list_focused_holo 0x7f070026 -int drawable abc_list_longpressed_holo 0x7f070027 -int drawable abc_list_pressed_holo_dark 0x7f070028 -int drawable abc_list_pressed_holo_light 0x7f070029 -int drawable abc_list_selector_background_transition_holo_dark 0x7f07002a -int drawable abc_list_selector_background_transition_holo_light 0x7f07002b -int drawable abc_list_selector_disabled_holo_dark 0x7f07002c -int drawable abc_list_selector_disabled_holo_light 0x7f07002d -int drawable abc_list_selector_holo_dark 0x7f07002e -int drawable abc_list_selector_holo_light 0x7f07002f -int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070030 -int drawable abc_popup_background_mtrl_mult 0x7f070031 -int drawable abc_ratingbar_indicator_material 0x7f070032 -int drawable abc_ratingbar_material 0x7f070033 -int drawable abc_ratingbar_small_material 0x7f070034 -int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070035 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070036 -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070037 -int drawable abc_scrubber_primary_mtrl_alpha 0x7f070038 -int drawable abc_scrubber_track_mtrl_alpha 0x7f070039 -int drawable abc_seekbar_thumb_material 0x7f07003a -int drawable abc_seekbar_tick_mark_material 0x7f07003b -int drawable abc_seekbar_track_material 0x7f07003c -int drawable abc_spinner_mtrl_am_alpha 0x7f07003d -int drawable abc_spinner_textfield_background_material 0x7f07003e -int drawable abc_star_black_48dp 0x7f07003f -int drawable abc_star_half_black_48dp 0x7f070040 -int drawable abc_switch_thumb_material 0x7f070041 -int drawable abc_switch_track_mtrl_alpha 0x7f070042 -int drawable abc_tab_indicator_material 0x7f070043 -int drawable abc_tab_indicator_mtrl_alpha 0x7f070044 -int drawable abc_text_cursor_material 0x7f070045 -int drawable abc_text_select_handle_left_mtrl 0x7f070046 -int drawable abc_text_select_handle_middle_mtrl 0x7f070047 -int drawable abc_text_select_handle_right_mtrl 0x7f070048 -int drawable abc_textfield_activated_mtrl_alpha 0x7f070049 -int drawable abc_textfield_default_mtrl_alpha 0x7f07004a -int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07004b -int drawable abc_textfield_search_default_mtrl_alpha 0x7f07004c -int drawable abc_textfield_search_material 0x7f07004d -int drawable abc_vector_test 0x7f07004e -int drawable btn_checkbox_checked_mtrl 0x7f07004f -int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070050 -int drawable btn_checkbox_unchecked_mtrl 0x7f070051 -int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070052 -int drawable btn_radio_off_mtrl 0x7f070053 -int drawable btn_radio_off_to_on_mtrl_animation 0x7f070054 -int drawable btn_radio_on_mtrl 0x7f070055 -int drawable btn_radio_on_to_off_mtrl_animation 0x7f070056 -int drawable launch_background 0x7f070057 -int drawable notification_action_background 0x7f070058 -int drawable notification_bg 0x7f070059 -int drawable notification_bg_low 0x7f07005a -int drawable notification_bg_low_normal 0x7f07005b -int drawable notification_bg_low_pressed 0x7f07005c -int drawable notification_bg_normal 0x7f07005d -int drawable notification_bg_normal_pressed 0x7f07005e -int drawable notification_icon_background 0x7f07005f -int drawable notification_template_icon_bg 0x7f070060 -int drawable notification_template_icon_low_bg 0x7f070061 -int drawable notification_tile_bg 0x7f070062 -int drawable notify_panel_notification_icon_bg 0x7f070063 -int drawable tooltip_frame_dark 0x7f070064 -int drawable tooltip_frame_light 0x7f070065 -int id ALT 0x7f080000 -int id CTRL 0x7f080001 -int id FUNCTION 0x7f080002 -int id META 0x7f080003 -int id SHIFT 0x7f080004 -int id SYM 0x7f080005 -int id accessibility_action_clickable_span 0x7f080006 -int id accessibility_custom_action_0 0x7f080007 -int id accessibility_custom_action_1 0x7f080008 -int id accessibility_custom_action_10 0x7f080009 -int id accessibility_custom_action_11 0x7f08000a -int id accessibility_custom_action_12 0x7f08000b -int id accessibility_custom_action_13 0x7f08000c -int id accessibility_custom_action_14 0x7f08000d -int id accessibility_custom_action_15 0x7f08000e -int id accessibility_custom_action_16 0x7f08000f -int id accessibility_custom_action_17 0x7f080010 -int id accessibility_custom_action_18 0x7f080011 -int id accessibility_custom_action_19 0x7f080012 -int id accessibility_custom_action_2 0x7f080013 -int id accessibility_custom_action_20 0x7f080014 -int id accessibility_custom_action_21 0x7f080015 -int id accessibility_custom_action_22 0x7f080016 -int id accessibility_custom_action_23 0x7f080017 -int id accessibility_custom_action_24 0x7f080018 -int id accessibility_custom_action_25 0x7f080019 -int id accessibility_custom_action_26 0x7f08001a -int id accessibility_custom_action_27 0x7f08001b -int id accessibility_custom_action_28 0x7f08001c -int id accessibility_custom_action_29 0x7f08001d -int id accessibility_custom_action_3 0x7f08001e -int id accessibility_custom_action_30 0x7f08001f -int id accessibility_custom_action_31 0x7f080020 -int id accessibility_custom_action_4 0x7f080021 -int id accessibility_custom_action_5 0x7f080022 -int id accessibility_custom_action_6 0x7f080023 -int id accessibility_custom_action_7 0x7f080024 -int id accessibility_custom_action_8 0x7f080025 -int id accessibility_custom_action_9 0x7f080026 -int id action_bar 0x7f080027 -int id action_bar_activity_content 0x7f080028 -int id action_bar_container 0x7f080029 -int id action_bar_root 0x7f08002a -int id action_bar_spinner 0x7f08002b -int id action_bar_subtitle 0x7f08002c -int id action_bar_title 0x7f08002d -int id action_container 0x7f08002e -int id action_context_bar 0x7f08002f -int id action_divider 0x7f080030 -int id action_image 0x7f080031 -int id action_menu_divider 0x7f080032 -int id action_menu_presenter 0x7f080033 -int id action_mode_bar 0x7f080034 -int id action_mode_bar_stub 0x7f080035 -int id action_mode_close_button 0x7f080036 -int id action_text 0x7f080037 -int id actions 0x7f080038 -int id activity_chooser_view_content 0x7f080039 -int id add 0x7f08003a -int id alertTitle 0x7f08003b -int id always 0x7f08003c -int id androidx_window_activity_scope 0x7f08003d -int id async 0x7f08003e -int id beginning 0x7f08003f -int id blocking 0x7f080040 -int id bottom 0x7f080041 -int id buttonPanel 0x7f080042 -int id center_vertical 0x7f080043 -int id checkbox 0x7f080044 -int id checked 0x7f080045 -int id chronometer 0x7f080046 -int id collapseActionView 0x7f080047 -int id content 0x7f080048 -int id contentPanel 0x7f080049 -int id custom 0x7f08004a -int id customPanel 0x7f08004b -int id decor_content_parent 0x7f08004c -int id default_activity_button 0x7f08004d -int id dialog_button 0x7f08004e -int id disableHome 0x7f08004f -int id edit_query 0x7f080050 -int id end 0x7f080051 -int id expand_activities_button 0x7f080052 -int id expanded_menu 0x7f080053 -int id forever 0x7f080054 -int id fragment_container_view_tag 0x7f080055 -int id group_divider 0x7f080056 -int id home 0x7f080057 -int id homeAsUp 0x7f080058 -int id icon 0x7f080059 -int id icon_group 0x7f08005a -int id ifRoom 0x7f08005b -int id image 0x7f08005c -int id info 0x7f08005d -int id italic 0x7f08005e -int id line1 0x7f08005f -int id line3 0x7f080060 -int id listMode 0x7f080061 -int id list_item 0x7f080062 -int id locale 0x7f080063 -int id ltr 0x7f080064 -int id message 0x7f080065 -int id middle 0x7f080066 -int id multiply 0x7f080067 -int id never 0x7f080068 -int id none 0x7f080069 -int id normal 0x7f08006a -int id notification_background 0x7f08006b -int id notification_main_column 0x7f08006c -int id notification_main_column_container 0x7f08006d -int id off 0x7f08006e -int id on 0x7f08006f -int id parentPanel 0x7f080070 -int id progress_circular 0x7f080071 -int id progress_horizontal 0x7f080072 -int id radio 0x7f080073 -int id right_icon 0x7f080074 -int id right_side 0x7f080075 -int id rtl 0x7f080076 -int id screen 0x7f080077 -int id scrollIndicatorDown 0x7f080078 -int id scrollIndicatorUp 0x7f080079 -int id scrollView 0x7f08007a -int id search_badge 0x7f08007b -int id search_bar 0x7f08007c -int id search_button 0x7f08007d -int id search_close_btn 0x7f08007e -int id search_edit_frame 0x7f08007f -int id search_go_btn 0x7f080080 -int id search_mag_icon 0x7f080081 -int id search_plate 0x7f080082 -int id search_src_text 0x7f080083 -int id search_voice_btn 0x7f080084 -int id select_dialog_listview 0x7f080085 -int id shortcut 0x7f080086 -int id showCustom 0x7f080087 -int id showHome 0x7f080088 -int id showTitle 0x7f080089 -int id spacer 0x7f08008a -int id special_effects_controller_view_tag 0x7f08008b -int id split_action_bar 0x7f08008c -int id src_atop 0x7f08008d -int id src_in 0x7f08008e -int id src_over 0x7f08008f -int id submenuarrow 0x7f080090 -int id submit_area 0x7f080091 -int id tabMode 0x7f080092 -int id tag_accessibility_actions 0x7f080093 -int id tag_accessibility_clickable_spans 0x7f080094 -int id tag_accessibility_heading 0x7f080095 -int id tag_accessibility_pane_title 0x7f080096 -int id tag_on_apply_window_listener 0x7f080097 -int id tag_on_receive_content_listener 0x7f080098 -int id tag_on_receive_content_mime_types 0x7f080099 -int id tag_screen_reader_focusable 0x7f08009a -int id tag_state_description 0x7f08009b -int id tag_transition_group 0x7f08009c -int id tag_unhandled_key_event_manager 0x7f08009d -int id tag_unhandled_key_listeners 0x7f08009e -int id tag_window_insets_animation_callback 0x7f08009f -int id text 0x7f0800a0 -int id text2 0x7f0800a1 -int id textSpacerNoButtons 0x7f0800a2 -int id textSpacerNoTitle 0x7f0800a3 -int id time 0x7f0800a4 -int id title 0x7f0800a5 -int id titleDividerNoCustom 0x7f0800a6 -int id title_template 0x7f0800a7 -int id top 0x7f0800a8 -int id topPanel 0x7f0800a9 -int id unchecked 0x7f0800aa -int id uniform 0x7f0800ab -int id up 0x7f0800ac -int id useLogo 0x7f0800ad -int id view_tree_lifecycle_owner 0x7f0800ae -int id view_tree_saved_state_registry_owner 0x7f0800af -int id view_tree_view_model_store_owner 0x7f0800b0 -int id visible_removing_fragment_view_tag 0x7f0800b1 -int id withText 0x7f0800b2 -int id wrap_content 0x7f0800b3 -int integer abc_config_activityDefaultDur 0x7f090000 -int integer abc_config_activityShortDur 0x7f090001 -int integer cancel_button_image_alpha 0x7f090002 -int integer config_tooltipAnimTime 0x7f090003 -int integer status_bar_notification_info_maxnum 0x7f090004 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 -int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 -int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 -int interpolator fast_out_slow_in 0x7f0a0006 -int layout abc_action_bar_title_item 0x7f0b0000 -int layout abc_action_bar_up_container 0x7f0b0001 -int layout abc_action_menu_item_layout 0x7f0b0002 -int layout abc_action_menu_layout 0x7f0b0003 -int layout abc_action_mode_bar 0x7f0b0004 -int layout abc_action_mode_close_item_material 0x7f0b0005 -int layout abc_activity_chooser_view 0x7f0b0006 -int layout abc_activity_chooser_view_list_item 0x7f0b0007 -int layout abc_alert_dialog_button_bar_material 0x7f0b0008 -int layout abc_alert_dialog_material 0x7f0b0009 -int layout abc_alert_dialog_title_material 0x7f0b000a -int layout abc_cascading_menu_item_layout 0x7f0b000b -int layout abc_dialog_title_material 0x7f0b000c -int layout abc_expanded_menu_layout 0x7f0b000d -int layout abc_list_menu_item_checkbox 0x7f0b000e -int layout abc_list_menu_item_icon 0x7f0b000f -int layout abc_list_menu_item_layout 0x7f0b0010 -int layout abc_list_menu_item_radio 0x7f0b0011 -int layout abc_popup_menu_header_item_layout 0x7f0b0012 -int layout abc_popup_menu_item_layout 0x7f0b0013 -int layout abc_screen_content_include 0x7f0b0014 -int layout abc_screen_simple 0x7f0b0015 -int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 -int layout abc_screen_toolbar 0x7f0b0017 -int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 -int layout abc_search_view 0x7f0b0019 -int layout abc_select_dialog_material 0x7f0b001a -int layout abc_tooltip 0x7f0b001b -int layout custom_dialog 0x7f0b001c -int layout notification_action 0x7f0b001d -int layout notification_action_tombstone 0x7f0b001e -int layout notification_template_custom_big 0x7f0b001f -int layout notification_template_icon_group 0x7f0b0020 -int layout notification_template_part_chronometer 0x7f0b0021 -int layout notification_template_part_time 0x7f0b0022 -int layout select_dialog_item_material 0x7f0b0023 -int layout select_dialog_multichoice_material 0x7f0b0024 -int layout select_dialog_singlechoice_material 0x7f0b0025 -int layout support_simple_spinner_dropdown_item 0x7f0b0026 -int mipmap ic_launcher 0x7f0c0000 -int string abc_action_bar_home_description 0x7f0d0000 -int string abc_action_bar_up_description 0x7f0d0001 -int string abc_action_menu_overflow_description 0x7f0d0002 -int string abc_action_mode_done 0x7f0d0003 -int string abc_activity_chooser_view_see_all 0x7f0d0004 -int string abc_activitychooserview_choose_application 0x7f0d0005 -int string abc_capital_off 0x7f0d0006 -int string abc_capital_on 0x7f0d0007 -int string abc_menu_alt_shortcut_label 0x7f0d0008 -int string abc_menu_ctrl_shortcut_label 0x7f0d0009 -int string abc_menu_delete_shortcut_label 0x7f0d000a -int string abc_menu_enter_shortcut_label 0x7f0d000b -int string abc_menu_function_shortcut_label 0x7f0d000c -int string abc_menu_meta_shortcut_label 0x7f0d000d -int string abc_menu_shift_shortcut_label 0x7f0d000e -int string abc_menu_space_shortcut_label 0x7f0d000f -int string abc_menu_sym_shortcut_label 0x7f0d0010 -int string abc_prepend_shortcut_label 0x7f0d0011 -int string abc_search_hint 0x7f0d0012 -int string abc_searchview_description_clear 0x7f0d0013 -int string abc_searchview_description_query 0x7f0d0014 -int string abc_searchview_description_search 0x7f0d0015 -int string abc_searchview_description_submit 0x7f0d0016 -int string abc_searchview_description_voice 0x7f0d0017 -int string abc_shareactionprovider_share_with 0x7f0d0018 -int string abc_shareactionprovider_share_with_application 0x7f0d0019 -int string abc_toolbar_collapse_description 0x7f0d001a -int string search_menu_title 0x7f0d001b -int string status_bar_notification_info_overflow 0x7f0d001c -int style AlertDialog_AppCompat 0x7f0e0000 -int style AlertDialog_AppCompat_Light 0x7f0e0001 -int style Animation_AppCompat_Dialog 0x7f0e0002 -int style Animation_AppCompat_DropDownUp 0x7f0e0003 -int style Animation_AppCompat_Tooltip 0x7f0e0004 -int style Base_AlertDialog_AppCompat 0x7f0e0005 -int style Base_AlertDialog_AppCompat_Light 0x7f0e0006 -int style Base_Animation_AppCompat_Dialog 0x7f0e0007 -int style Base_Animation_AppCompat_DropDownUp 0x7f0e0008 -int style Base_Animation_AppCompat_Tooltip 0x7f0e0009 -int style Base_DialogWindowTitle_AppCompat 0x7f0e000a -int style Base_DialogWindowTitleBackground_AppCompat 0x7f0e000b -int style Base_TextAppearance_AppCompat 0x7f0e000c -int style Base_TextAppearance_AppCompat_Body1 0x7f0e000d -int style Base_TextAppearance_AppCompat_Body2 0x7f0e000e -int style Base_TextAppearance_AppCompat_Button 0x7f0e000f -int style Base_TextAppearance_AppCompat_Caption 0x7f0e0010 -int style Base_TextAppearance_AppCompat_Display1 0x7f0e0011 -int style Base_TextAppearance_AppCompat_Display2 0x7f0e0012 -int style Base_TextAppearance_AppCompat_Display3 0x7f0e0013 -int style Base_TextAppearance_AppCompat_Display4 0x7f0e0014 -int style Base_TextAppearance_AppCompat_Headline 0x7f0e0015 -int style Base_TextAppearance_AppCompat_Inverse 0x7f0e0016 -int style Base_TextAppearance_AppCompat_Large 0x7f0e0017 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0e0018 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e0019 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e001a -int style Base_TextAppearance_AppCompat_Medium 0x7f0e001b -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0e001c -int style Base_TextAppearance_AppCompat_Menu 0x7f0e001d -int style Base_TextAppearance_AppCompat_SearchResult 0x7f0e001e -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e001f -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0e0020 -int style Base_TextAppearance_AppCompat_Small 0x7f0e0021 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0e0022 -int style Base_TextAppearance_AppCompat_Subhead 0x7f0e0023 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0e0024 -int style Base_TextAppearance_AppCompat_Title 0x7f0e0025 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0e0026 -int style Base_TextAppearance_AppCompat_Tooltip 0x7f0e0027 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e0028 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e0029 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e002a -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e002b -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e002c -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e002d -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e002e -int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0e002f -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0030 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0031 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e0032 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e0033 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e0034 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e0035 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e0036 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0e0037 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e0038 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0039 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e003a -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e003b -int style Base_Theme_AppCompat 0x7f0e003c -int style Base_Theme_AppCompat_CompactMenu 0x7f0e003d -int style Base_Theme_AppCompat_Dialog 0x7f0e003e -int style Base_Theme_AppCompat_Dialog_Alert 0x7f0e003f -int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0e0040 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0e0041 -int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0e0042 -int style Base_Theme_AppCompat_Light 0x7f0e0043 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0e0044 -int style Base_Theme_AppCompat_Light_Dialog 0x7f0e0045 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0e0046 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0e0047 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0048 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0049 -int style Base_ThemeOverlay_AppCompat 0x7f0e004a -int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0e004b -int style Base_ThemeOverlay_AppCompat_Dark 0x7f0e004c -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e004d -int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0e004e -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e004f -int style Base_ThemeOverlay_AppCompat_Light 0x7f0e0050 -int style Base_V21_Theme_AppCompat 0x7f0e0051 -int style Base_V21_Theme_AppCompat_Dialog 0x7f0e0052 -int style Base_V21_Theme_AppCompat_Light 0x7f0e0053 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0e0054 -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0e0055 -int style Base_V22_Theme_AppCompat 0x7f0e0056 -int style Base_V22_Theme_AppCompat_Light 0x7f0e0057 -int style Base_V23_Theme_AppCompat 0x7f0e0058 -int style Base_V23_Theme_AppCompat_Light 0x7f0e0059 -int style Base_V26_Theme_AppCompat 0x7f0e005a -int style Base_V26_Theme_AppCompat_Light 0x7f0e005b -int style Base_V26_Widget_AppCompat_Toolbar 0x7f0e005c -int style Base_V28_Theme_AppCompat 0x7f0e005d -int style Base_V28_Theme_AppCompat_Light 0x7f0e005e -int style Base_V7_Theme_AppCompat 0x7f0e005f -int style Base_V7_Theme_AppCompat_Dialog 0x7f0e0060 -int style Base_V7_Theme_AppCompat_Light 0x7f0e0061 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0e0062 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0e0063 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0e0064 -int style Base_V7_Widget_AppCompat_EditText 0x7f0e0065 -int style Base_V7_Widget_AppCompat_Toolbar 0x7f0e0066 -int style Base_Widget_AppCompat_ActionBar 0x7f0e0067 -int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0e0068 -int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0e0069 -int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0e006a -int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0e006b -int style Base_Widget_AppCompat_ActionButton 0x7f0e006c -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0e006d -int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0e006e -int style Base_Widget_AppCompat_ActionMode 0x7f0e006f -int style Base_Widget_AppCompat_ActivityChooserView 0x7f0e0070 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0e0071 -int style Base_Widget_AppCompat_Button 0x7f0e0072 -int style Base_Widget_AppCompat_Button_Borderless 0x7f0e0073 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0e0074 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0075 -int style Base_Widget_AppCompat_Button_Colored 0x7f0e0076 -int style Base_Widget_AppCompat_Button_Small 0x7f0e0077 -int style Base_Widget_AppCompat_ButtonBar 0x7f0e0078 -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0079 -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0e007a -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0e007b -int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0e007c -int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0e007d -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0e007e -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0e007f -int style Base_Widget_AppCompat_EditText 0x7f0e0080 -int style Base_Widget_AppCompat_ImageButton 0x7f0e0081 -int style Base_Widget_AppCompat_Light_ActionBar 0x7f0e0082 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0083 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e0084 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0e0085 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e0086 -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0e0087 -int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0e0088 -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e0089 -int style Base_Widget_AppCompat_ListMenuView 0x7f0e008a -int style Base_Widget_AppCompat_ListPopupWindow 0x7f0e008b -int style Base_Widget_AppCompat_ListView 0x7f0e008c -int style Base_Widget_AppCompat_ListView_DropDown 0x7f0e008d -int style Base_Widget_AppCompat_ListView_Menu 0x7f0e008e -int style Base_Widget_AppCompat_PopupMenu 0x7f0e008f -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0e0090 -int style Base_Widget_AppCompat_PopupWindow 0x7f0e0091 -int style Base_Widget_AppCompat_ProgressBar 0x7f0e0092 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0e0093 -int style Base_Widget_AppCompat_RatingBar 0x7f0e0094 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0e0095 -int style Base_Widget_AppCompat_RatingBar_Small 0x7f0e0096 -int style Base_Widget_AppCompat_SearchView 0x7f0e0097 -int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0e0098 -int style Base_Widget_AppCompat_SeekBar 0x7f0e0099 -int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0e009a -int style Base_Widget_AppCompat_Spinner 0x7f0e009b -int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0e009c -int style Base_Widget_AppCompat_TextView 0x7f0e009d -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0e009e -int style Base_Widget_AppCompat_Toolbar 0x7f0e009f -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e00a0 -int style LaunchTheme 0x7f0e00a1 -int style NormalTheme 0x7f0e00a2 -int style Platform_AppCompat 0x7f0e00a3 -int style Platform_AppCompat_Light 0x7f0e00a4 -int style Platform_ThemeOverlay_AppCompat 0x7f0e00a5 -int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0e00a6 -int style Platform_ThemeOverlay_AppCompat_Light 0x7f0e00a7 -int style Platform_V21_AppCompat 0x7f0e00a8 -int style Platform_V21_AppCompat_Light 0x7f0e00a9 -int style Platform_V25_AppCompat 0x7f0e00aa -int style Platform_V25_AppCompat_Light 0x7f0e00ab -int style Platform_Widget_AppCompat_Spinner 0x7f0e00ac -int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0e00ad -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0e00ae -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0e00af -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0e00b0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0e00b1 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0e00b2 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0e00b3 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0e00b4 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0e00b5 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0e00b6 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0e00b7 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0e00b8 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0e00b9 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0e00ba -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0e00bb -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0e00bc -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0e00bd -int style TextAppearance_AppCompat 0x7f0e00be -int style TextAppearance_AppCompat_Body1 0x7f0e00bf -int style TextAppearance_AppCompat_Body2 0x7f0e00c0 -int style TextAppearance_AppCompat_Button 0x7f0e00c1 -int style TextAppearance_AppCompat_Caption 0x7f0e00c2 -int style TextAppearance_AppCompat_Display1 0x7f0e00c3 -int style TextAppearance_AppCompat_Display2 0x7f0e00c4 -int style TextAppearance_AppCompat_Display3 0x7f0e00c5 -int style TextAppearance_AppCompat_Display4 0x7f0e00c6 -int style TextAppearance_AppCompat_Headline 0x7f0e00c7 -int style TextAppearance_AppCompat_Inverse 0x7f0e00c8 -int style TextAppearance_AppCompat_Large 0x7f0e00c9 -int style TextAppearance_AppCompat_Large_Inverse 0x7f0e00ca -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0e00cb -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0e00cc -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e00cd -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e00ce -int style TextAppearance_AppCompat_Medium 0x7f0e00cf -int style TextAppearance_AppCompat_Medium_Inverse 0x7f0e00d0 -int style TextAppearance_AppCompat_Menu 0x7f0e00d1 -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e00d2 -int style TextAppearance_AppCompat_SearchResult_Title 0x7f0e00d3 -int style TextAppearance_AppCompat_Small 0x7f0e00d4 -int style TextAppearance_AppCompat_Small_Inverse 0x7f0e00d5 -int style TextAppearance_AppCompat_Subhead 0x7f0e00d6 -int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0e00d7 -int style TextAppearance_AppCompat_Title 0x7f0e00d8 -int style TextAppearance_AppCompat_Title_Inverse 0x7f0e00d9 -int style TextAppearance_AppCompat_Tooltip 0x7f0e00da -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e00db -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e00dc -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e00dd -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e00de -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e00df -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e00e0 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0e00e1 -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e00e2 -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0e00e3 -int style TextAppearance_AppCompat_Widget_Button 0x7f0e00e4 -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e00e5 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e00e6 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e00e7 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e00e8 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e00e9 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e00ea -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e00eb -int style TextAppearance_AppCompat_Widget_Switch 0x7f0e00ec -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e00ed -int style TextAppearance_Compat_Notification 0x7f0e00ee -int style TextAppearance_Compat_Notification_Info 0x7f0e00ef -int style TextAppearance_Compat_Notification_Line2 0x7f0e00f0 -int style TextAppearance_Compat_Notification_Time 0x7f0e00f1 -int style TextAppearance_Compat_Notification_Title 0x7f0e00f2 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e00f3 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e00f4 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e00f5 -int style Theme_AppCompat 0x7f0e00f6 -int style Theme_AppCompat_CompactMenu 0x7f0e00f7 -int style Theme_AppCompat_DayNight 0x7f0e00f8 -int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0e00f9 -int style Theme_AppCompat_DayNight_Dialog 0x7f0e00fa -int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0e00fb -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0e00fc -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0e00fd -int style Theme_AppCompat_DayNight_NoActionBar 0x7f0e00fe -int style Theme_AppCompat_Dialog 0x7f0e00ff -int style Theme_AppCompat_Dialog_Alert 0x7f0e0100 -int style Theme_AppCompat_Dialog_MinWidth 0x7f0e0101 -int style Theme_AppCompat_DialogWhenLarge 0x7f0e0102 -int style Theme_AppCompat_Empty 0x7f0e0103 -int style Theme_AppCompat_Light 0x7f0e0104 -int style Theme_AppCompat_Light_DarkActionBar 0x7f0e0105 -int style Theme_AppCompat_Light_Dialog 0x7f0e0106 -int style Theme_AppCompat_Light_Dialog_Alert 0x7f0e0107 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e0108 -int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0e0109 -int style Theme_AppCompat_Light_NoActionBar 0x7f0e010a -int style Theme_AppCompat_NoActionBar 0x7f0e010b -int style ThemeOverlay_AppCompat 0x7f0e010c -int style ThemeOverlay_AppCompat_ActionBar 0x7f0e010d -int style ThemeOverlay_AppCompat_Dark 0x7f0e010e -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e010f -int style ThemeOverlay_AppCompat_DayNight 0x7f0e0110 -int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f0e0111 -int style ThemeOverlay_AppCompat_Dialog 0x7f0e0112 -int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e0113 -int style ThemeOverlay_AppCompat_Light 0x7f0e0114 -int style Widget_AppCompat_ActionBar 0x7f0e0115 -int style Widget_AppCompat_ActionBar_Solid 0x7f0e0116 -int style Widget_AppCompat_ActionBar_TabBar 0x7f0e0117 -int style Widget_AppCompat_ActionBar_TabText 0x7f0e0118 -int style Widget_AppCompat_ActionBar_TabView 0x7f0e0119 -int style Widget_AppCompat_ActionButton 0x7f0e011a -int style Widget_AppCompat_ActionButton_CloseMode 0x7f0e011b -int style Widget_AppCompat_ActionButton_Overflow 0x7f0e011c -int style Widget_AppCompat_ActionMode 0x7f0e011d -int style Widget_AppCompat_ActivityChooserView 0x7f0e011e -int style Widget_AppCompat_AutoCompleteTextView 0x7f0e011f -int style Widget_AppCompat_Button 0x7f0e0120 -int style Widget_AppCompat_Button_Borderless 0x7f0e0121 -int style Widget_AppCompat_Button_Borderless_Colored 0x7f0e0122 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0123 -int style Widget_AppCompat_Button_Colored 0x7f0e0124 -int style Widget_AppCompat_Button_Small 0x7f0e0125 -int style Widget_AppCompat_ButtonBar 0x7f0e0126 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0127 -int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0e0128 -int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0e0129 -int style Widget_AppCompat_CompoundButton_Switch 0x7f0e012a -int style Widget_AppCompat_DrawerArrowToggle 0x7f0e012b -int style Widget_AppCompat_DropDownItem_Spinner 0x7f0e012c -int style Widget_AppCompat_EditText 0x7f0e012d -int style Widget_AppCompat_ImageButton 0x7f0e012e -int style Widget_AppCompat_Light_ActionBar 0x7f0e012f -int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0130 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0e0131 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e0132 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0e0133 -int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0e0134 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e0135 -int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0e0136 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0e0137 -int style Widget_AppCompat_Light_ActionButton 0x7f0e0138 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0e0139 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0e013a -int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0e013b -int style Widget_AppCompat_Light_ActivityChooserView 0x7f0e013c -int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0e013d -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0e013e -int style Widget_AppCompat_Light_ListPopupWindow 0x7f0e013f -int style Widget_AppCompat_Light_ListView_DropDown 0x7f0e0140 -int style Widget_AppCompat_Light_PopupMenu 0x7f0e0141 -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e0142 -int style Widget_AppCompat_Light_SearchView 0x7f0e0143 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0e0144 -int style Widget_AppCompat_ListMenuView 0x7f0e0145 -int style Widget_AppCompat_ListPopupWindow 0x7f0e0146 -int style Widget_AppCompat_ListView 0x7f0e0147 -int style Widget_AppCompat_ListView_DropDown 0x7f0e0148 -int style Widget_AppCompat_ListView_Menu 0x7f0e0149 -int style Widget_AppCompat_PopupMenu 0x7f0e014a -int style Widget_AppCompat_PopupMenu_Overflow 0x7f0e014b -int style Widget_AppCompat_PopupWindow 0x7f0e014c -int style Widget_AppCompat_ProgressBar 0x7f0e014d -int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0e014e -int style Widget_AppCompat_RatingBar 0x7f0e014f -int style Widget_AppCompat_RatingBar_Indicator 0x7f0e0150 -int style Widget_AppCompat_RatingBar_Small 0x7f0e0151 -int style Widget_AppCompat_SearchView 0x7f0e0152 -int style Widget_AppCompat_SearchView_ActionBar 0x7f0e0153 -int style Widget_AppCompat_SeekBar 0x7f0e0154 -int style Widget_AppCompat_SeekBar_Discrete 0x7f0e0155 -int style Widget_AppCompat_Spinner 0x7f0e0156 -int style Widget_AppCompat_Spinner_DropDown 0x7f0e0157 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0e0158 -int style Widget_AppCompat_Spinner_Underlined 0x7f0e0159 -int style Widget_AppCompat_TextView 0x7f0e015a -int style Widget_AppCompat_TextView_SpinnerItem 0x7f0e015b -int style Widget_AppCompat_Toolbar 0x7f0e015c -int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e015d -int style Widget_Compat_NotificationActionContainer 0x7f0e015e -int style Widget_Compat_NotificationActionText 0x7f0e015f -int[] styleable ActionBar { 0x7f030036, 0x7f030037, 0x7f030038, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f03006a, 0x7f03006b, 0x7f03007e, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f03009a, 0x7f03009d, 0x7f0300b0, 0x7f0300b8, 0x7f0300c5, 0x7f0300c9, 0x7f0300ca, 0x7f0300ec, 0x7f0300ef, 0x7f03010b, 0x7f030114 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x010100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x0101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x7f030036, 0x7f030037, 0x7f03004e, 0x7f030091, 0x7f0300ef, 0x7f030114 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x7f03007f, 0x7f03009b } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable ActivityFilter { 0x7f030023, 0x7f030025 } -int styleable ActivityFilter_activityAction 0 -int styleable ActivityFilter_activityName 1 -int[] styleable ActivityRule { 0x7f03002d } -int styleable ActivityRule_alwaysExpand 0 -int[] styleable AlertDialog { 0x010100f2, 0x7f030044, 0x7f030045, 0x7f0300a5, 0x7f0300a6, 0x7f0300b5, 0x7f0300de, 0x7f0300df } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonIconDimen 1 -int styleable AlertDialog_buttonPanelSideLayout 2 -int styleable AlertDialog_listItemLayout 3 -int styleable AlertDialog_listLayout 4 -int styleable AlertDialog_multiChoiceItemLayout 5 -int styleable AlertDialog_showTitle 6 -int styleable AlertDialog_singleChoiceItemLayout 7 -int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } -int styleable AnimatedStateListDrawableCompat_android_dither 0 -int styleable AnimatedStateListDrawableCompat_android_visible 1 -int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 -int styleable AnimatedStateListDrawableCompat_android_constantSize 3 -int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 -int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 -int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } -int styleable AnimatedStateListDrawableItem_android_id 0 -int styleable AnimatedStateListDrawableItem_android_drawable 1 -int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } -int styleable AnimatedStateListDrawableTransition_android_drawable 0 -int styleable AnimatedStateListDrawableTransition_android_toId 1 -int styleable AnimatedStateListDrawableTransition_android_fromId 2 -int styleable AnimatedStateListDrawableTransition_android_reversible 3 -int[] styleable AppCompatImageView { 0x01010119, 0x7f0300e8, 0x7f030109, 0x7f03010a } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x01010142, 0x7f030106, 0x7f030107, 0x7f030108 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } -int styleable AppCompatTextHelper_android_textAppearance 0 -int styleable AppCompatTextHelper_android_drawableTop 1 -int styleable AppCompatTextHelper_android_drawableBottom 2 -int styleable AppCompatTextHelper_android_drawableLeft 3 -int styleable AppCompatTextHelper_android_drawableRight 4 -int styleable AppCompatTextHelper_android_drawableStart 5 -int styleable AppCompatTextHelper_android_drawableEnd 6 -int[] styleable AppCompatTextView { 0x01010034, 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030034, 0x7f030035, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030074, 0x7f030075, 0x7f030076, 0x7f030077, 0x7f030082, 0x7f030084, 0x7f03008d, 0x7f03009e, 0x7f0300a0, 0x7f0300f5, 0x7f030100 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_drawableBottomCompat 6 -int styleable AppCompatTextView_drawableEndCompat 7 -int styleable AppCompatTextView_drawableLeftCompat 8 -int styleable AppCompatTextView_drawableRightCompat 9 -int styleable AppCompatTextView_drawableStartCompat 10 -int styleable AppCompatTextView_drawableTint 11 -int styleable AppCompatTextView_drawableTintMode 12 -int styleable AppCompatTextView_drawableTopCompat 13 -int styleable AppCompatTextView_firstBaselineToTopHeight 14 -int styleable AppCompatTextView_fontFamily 15 -int styleable AppCompatTextView_fontVariationSettings 16 -int styleable AppCompatTextView_lastBaselineToBottomHeight 17 -int styleable AppCompatTextView_lineHeight 18 -int styleable AppCompatTextView_textAllCaps 19 -int styleable AppCompatTextView_textLocale 20 -int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030024, 0x7f030026, 0x7f030027, 0x7f030028, 0x7f030029, 0x7f030030, 0x7f03003c, 0x7f03003d, 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f030041, 0x7f030046, 0x7f030047, 0x7f03004a, 0x7f03004b, 0x7f030052, 0x7f030053, 0x7f030054, 0x7f030055, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f030064, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f03006c, 0x7f03006e, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f030093, 0x7f030099, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300a4, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c4, 0x7f0300c6, 0x7f0300ce, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d4, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300e1, 0x7f0300e2, 0x7f0300f3, 0x7f0300f6, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fa, 0x7f0300fb, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f0300ff, 0x7f030115, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f03011e, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f030127, 0x7f030128, 0x7f030129 } -int styleable AppCompatTheme_android_windowIsFloating 0 -int styleable AppCompatTheme_android_windowAnimationStyle 1 -int styleable AppCompatTheme_actionBarDivider 2 -int styleable AppCompatTheme_actionBarItemBackground 3 -int styleable AppCompatTheme_actionBarPopupTheme 4 -int styleable AppCompatTheme_actionBarSize 5 -int styleable AppCompatTheme_actionBarSplitStyle 6 -int styleable AppCompatTheme_actionBarStyle 7 -int styleable AppCompatTheme_actionBarTabBarStyle 8 -int styleable AppCompatTheme_actionBarTabStyle 9 -int styleable AppCompatTheme_actionBarTabTextStyle 10 -int styleable AppCompatTheme_actionBarTheme 11 -int styleable AppCompatTheme_actionBarWidgetTheme 12 -int styleable AppCompatTheme_actionButtonStyle 13 -int styleable AppCompatTheme_actionDropDownStyle 14 -int styleable AppCompatTheme_actionMenuTextAppearance 15 -int styleable AppCompatTheme_actionMenuTextColor 16 -int styleable AppCompatTheme_actionModeBackground 17 -int styleable AppCompatTheme_actionModeCloseButtonStyle 18 -int styleable AppCompatTheme_actionModeCloseContentDescription 19 -int styleable AppCompatTheme_actionModeCloseDrawable 20 -int styleable AppCompatTheme_actionModeCopyDrawable 21 -int styleable AppCompatTheme_actionModeCutDrawable 22 -int styleable AppCompatTheme_actionModeFindDrawable 23 -int styleable AppCompatTheme_actionModePasteDrawable 24 -int styleable AppCompatTheme_actionModePopupWindowStyle 25 -int styleable AppCompatTheme_actionModeSelectAllDrawable 26 -int styleable AppCompatTheme_actionModeShareDrawable 27 -int styleable AppCompatTheme_actionModeSplitBackground 28 -int styleable AppCompatTheme_actionModeStyle 29 -int styleable AppCompatTheme_actionModeTheme 30 -int styleable AppCompatTheme_actionModeWebSearchDrawable 31 -int styleable AppCompatTheme_actionOverflowButtonStyle 32 -int styleable AppCompatTheme_actionOverflowMenuStyle 33 -int styleable AppCompatTheme_activityChooserViewStyle 34 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 35 -int styleable AppCompatTheme_alertDialogCenterButtons 36 -int styleable AppCompatTheme_alertDialogStyle 37 -int styleable AppCompatTheme_alertDialogTheme 38 -int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -int styleable AppCompatTheme_borderlessButtonStyle 40 -int styleable AppCompatTheme_buttonBarButtonStyle 41 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -int styleable AppCompatTheme_buttonBarStyle 45 -int styleable AppCompatTheme_buttonStyle 46 -int styleable AppCompatTheme_buttonStyleSmall 47 -int styleable AppCompatTheme_checkboxStyle 48 -int styleable AppCompatTheme_checkedTextViewStyle 49 -int styleable AppCompatTheme_colorAccent 50 -int styleable AppCompatTheme_colorBackgroundFloating 51 -int styleable AppCompatTheme_colorButtonNormal 52 -int styleable AppCompatTheme_colorControlActivated 53 -int styleable AppCompatTheme_colorControlHighlight 54 -int styleable AppCompatTheme_colorControlNormal 55 -int styleable AppCompatTheme_colorError 56 -int styleable AppCompatTheme_colorPrimary 57 -int styleable AppCompatTheme_colorPrimaryDark 58 -int styleable AppCompatTheme_colorSwitchThumbNormal 59 -int styleable AppCompatTheme_controlBackground 60 -int styleable AppCompatTheme_dialogCornerRadius 61 -int styleable AppCompatTheme_dialogPreferredPadding 62 -int styleable AppCompatTheme_dialogTheme 63 -int styleable AppCompatTheme_dividerHorizontal 64 -int styleable AppCompatTheme_dividerVertical 65 -int styleable AppCompatTheme_dropDownListViewStyle 66 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -int styleable AppCompatTheme_editTextBackground 68 -int styleable AppCompatTheme_editTextColor 69 -int styleable AppCompatTheme_editTextStyle 70 -int styleable AppCompatTheme_homeAsUpIndicator 71 -int styleable AppCompatTheme_imageButtonStyle 72 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -int styleable AppCompatTheme_listDividerAlertDialog 76 -int styleable AppCompatTheme_listMenuViewStyle 77 -int styleable AppCompatTheme_listPopupWindowStyle 78 -int styleable AppCompatTheme_listPreferredItemHeight 79 -int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -int styleable AppCompatTheme_panelBackground 86 -int styleable AppCompatTheme_panelMenuListTheme 87 -int styleable AppCompatTheme_panelMenuListWidth 88 -int styleable AppCompatTheme_popupMenuStyle 89 -int styleable AppCompatTheme_popupWindowStyle 90 -int styleable AppCompatTheme_radioButtonStyle 91 -int styleable AppCompatTheme_ratingBarStyle 92 -int styleable AppCompatTheme_ratingBarStyleIndicator 93 -int styleable AppCompatTheme_ratingBarStyleSmall 94 -int styleable AppCompatTheme_searchViewStyle 95 -int styleable AppCompatTheme_seekBarStyle 96 -int styleable AppCompatTheme_selectableItemBackground 97 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -int styleable AppCompatTheme_spinnerStyle 100 -int styleable AppCompatTheme_switchStyle 101 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -int styleable AppCompatTheme_textAppearanceListItem 103 -int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -int styleable AppCompatTheme_textAppearanceListItemSmall 105 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -int styleable AppCompatTheme_textColorAlertDialogListItem 110 -int styleable AppCompatTheme_textColorSearchUrl 111 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -int styleable AppCompatTheme_toolbarStyle 113 -int styleable AppCompatTheme_tooltipForegroundColor 114 -int styleable AppCompatTheme_tooltipFrameBackground 115 -int styleable AppCompatTheme_viewInflaterClass 116 -int styleable AppCompatTheme_windowActionBar 117 -int styleable AppCompatTheme_windowActionBarOverlay 118 -int styleable AppCompatTheme_windowActionModeOverlay 119 -int styleable AppCompatTheme_windowFixedHeightMajor 120 -int styleable AppCompatTheme_windowFixedHeightMinor 121 -int styleable AppCompatTheme_windowFixedWidthMajor 122 -int styleable AppCompatTheme_windowFixedWidthMinor 123 -int styleable AppCompatTheme_windowMinWidthMajor 124 -int styleable AppCompatTheme_windowMinWidthMinor 125 -int styleable AppCompatTheme_windowNoTitle 126 -int[] styleable ButtonBarLayout { 0x7f03002a } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable Capability { 0x7f0300cd, 0x7f0300da } -int styleable Capability_queryPatterns 0 -int styleable Capability_shortcutMatchRequired 1 -int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f03002b } -int styleable ColorStateListItem_android_color 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_alpha 2 -int[] styleable CompoundButton { 0x01010107, 0x7f030042, 0x7f030048, 0x7f030049 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonCompat 1 -int styleable CompoundButton_buttonTint 2 -int styleable CompoundButton_buttonTintMode 3 -int[] styleable DrawerArrowToggle { 0x7f03002e, 0x7f03002f, 0x7f03003b, 0x7f030051, 0x7f030073, 0x7f03008f, 0x7f0300e0, 0x7f030102 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int styleable FontFamily_fontProviderSystemFontFamily 6 -int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f030083, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f03011d } -int styleable FontFamilyFont_android_font 0 -int styleable FontFamilyFont_android_fontWeight 1 -int styleable FontFamilyFont_android_fontStyle 2 -int styleable FontFamilyFont_android_ttcIndex 3 -int styleable FontFamilyFont_android_fontVariationSettings 4 -int styleable FontFamilyFont_font 5 -int styleable FontFamilyFont_fontStyle 6 -int styleable FontFamilyFont_fontVariationSettings 7 -int styleable FontFamilyFont_fontWeight 8 -int styleable FontFamilyFont_ttcIndex 9 -int[] styleable Fragment { 0x01010003, 0x010100d0, 0x010100d1 } -int styleable Fragment_android_name 0 -int styleable Fragment_android_id 1 -int styleable Fragment_android_tag 2 -int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } -int styleable FragmentContainerView_android_name 0 -int styleable FragmentContainerView_android_tag 1 -int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } -int styleable GradientColor_android_startColor 0 -int styleable GradientColor_android_endColor 1 -int styleable GradientColor_android_type 2 -int styleable GradientColor_android_centerX 3 -int styleable GradientColor_android_centerY 4 -int styleable GradientColor_android_gradientRadius 5 -int styleable GradientColor_android_tileMode 6 -int styleable GradientColor_android_centerColor 7 -int styleable GradientColor_android_startX 8 -int styleable GradientColor_android_startY 9 -int styleable GradientColor_android_endX 10 -int styleable GradientColor_android_endY 11 -int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } -int styleable GradientColorItem_android_color 0 -int styleable GradientColorItem_android_offset 1 -int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f03006b, 0x7f03006d, 0x7f0300b3, 0x7f0300dc } -int styleable LinearLayoutCompat_android_gravity 0 -int styleable LinearLayoutCompat_android_orientation 1 -int styleable LinearLayoutCompat_android_baselineAligned 2 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_width 1 -int styleable LinearLayoutCompat_Layout_android_layout_height 2 -int styleable LinearLayoutCompat_Layout_android_layout_weight 3 -int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } -int styleable MenuGroup_android_enabled 0 -int styleable MenuGroup_android_id 1 -int styleable MenuGroup_android_visible 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_checkableBehavior 5 -int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f030021, 0x7f030022, 0x7f03002c, 0x7f03005d, 0x7f030096, 0x7f030097, 0x7f0300ba, 0x7f0300db, 0x7f030119 } -int styleable MenuItem_android_icon 0 -int styleable MenuItem_android_enabled 1 -int styleable MenuItem_android_id 2 -int styleable MenuItem_android_checked 3 -int styleable MenuItem_android_visible 4 -int styleable MenuItem_android_menuCategory 5 -int styleable MenuItem_android_orderInCategory 6 -int styleable MenuItem_android_title 7 -int styleable MenuItem_android_titleCondensed 8 -int styleable MenuItem_android_alphabeticShortcut 9 -int styleable MenuItem_android_numericShortcut 10 -int styleable MenuItem_android_checkable 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_actionLayout 13 -int styleable MenuItem_actionProviderClass 14 -int styleable MenuItem_actionViewClass 15 -int styleable MenuItem_alphabeticModifiers 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0300c7, 0x7f0300ea } -int styleable MenuView_android_windowAnimationStyle 0 -int styleable MenuView_android_itemTextAppearance 1 -int styleable MenuView_android_horizontalDivider 2 -int styleable MenuView_android_verticalDivider 3 -int styleable MenuView_android_headerBackground 4 -int styleable MenuView_android_itemBackground 5 -int styleable MenuView_android_itemIconDisabledAlpha 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0300bb } -int styleable PopupWindow_android_popupBackground 0 -int styleable PopupWindow_android_popupAnimationStyle 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x7f0300e9 } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x7f0300bc, 0x7f0300bf } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f03004d, 0x7f03005c, 0x7f030066, 0x7f030090, 0x7f030098, 0x7f03009f, 0x7f0300cb, 0x7f0300cc, 0x7f0300d2, 0x7f0300d3, 0x7f0300eb, 0x7f0300f0, 0x7f03011f } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_maxWidth 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_imeOptions 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0300c5 } -int styleable Spinner_android_entries 0 -int styleable Spinner_android_popupBackground 1 -int styleable Spinner_android_prompt 2 -int styleable Spinner_android_dropDownWidth 3 -int styleable Spinner_popupTheme 4 -int[] styleable SplitPairFilter { 0x7f0300c8, 0x7f0300d5, 0x7f0300d6 } -int styleable SplitPairFilter_primaryActivityName 0 -int styleable SplitPairFilter_secondaryActivityAction 1 -int styleable SplitPairFilter_secondaryActivityName 2 -int[] styleable SplitPairRule { 0x7f03004c, 0x7f030080, 0x7f030081, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6 } -int styleable SplitPairRule_clearTop 0 -int styleable SplitPairRule_finishPrimaryWithSecondary 1 -int styleable SplitPairRule_finishSecondaryWithPrimary 2 -int styleable SplitPairRule_splitLayoutDirection 3 -int styleable SplitPairRule_splitMinSmallestWidth 4 -int styleable SplitPairRule_splitMinWidth 5 -int styleable SplitPairRule_splitRatio 6 -int[] styleable SplitPlaceholderRule { 0x7f0300c3, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6 } -int styleable SplitPlaceholderRule_placeholderActivityName 0 -int styleable SplitPlaceholderRule_splitLayoutDirection 1 -int styleable SplitPlaceholderRule_splitMinSmallestWidth 2 -int styleable SplitPlaceholderRule_splitMinWidth 3 -int styleable SplitPlaceholderRule_splitRatio 4 -int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } -int styleable StateListDrawable_android_dither 0 -int styleable StateListDrawable_android_visible 1 -int styleable StateListDrawable_android_variablePadding 2 -int styleable StateListDrawable_android_constantSize 3 -int styleable StateListDrawable_android_enterFadeDuration 4 -int styleable StateListDrawable_android_exitFadeDuration 5 -int[] styleable StateListDrawableItem { 0x01010199 } -int styleable StateListDrawableItem_android_drawable 0 -int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0300dd, 0x7f0300e7, 0x7f0300f1, 0x7f0300f2, 0x7f0300f4, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f03011a, 0x7f03011b, 0x7f03011c } -int styleable SwitchCompat_android_textOn 0 -int styleable SwitchCompat_android_textOff 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x01010585, 0x7f030084, 0x7f03008d, 0x7f0300f5, 0x7f030100 } -int styleable TextAppearance_android_textSize 0 -int styleable TextAppearance_android_typeface 1 -int styleable TextAppearance_android_textStyle 2 -int styleable TextAppearance_android_textColor 3 -int styleable TextAppearance_android_textColorHint 4 -int styleable TextAppearance_android_textColorLink 5 -int styleable TextAppearance_android_shadowColor 6 -int styleable TextAppearance_android_shadowDx 7 -int styleable TextAppearance_android_shadowDy 8 -int styleable TextAppearance_android_shadowRadius 9 -int styleable TextAppearance_android_fontFamily 10 -int styleable TextAppearance_android_textFontWeight 11 -int styleable TextAppearance_fontFamily 12 -int styleable TextAppearance_fontVariationSettings 13 -int styleable TextAppearance_textAllCaps 14 -int styleable TextAppearance_textLocale 15 -int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030043, 0x7f03004f, 0x7f030050, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b4, 0x7f0300b6, 0x7f0300b7, 0x7f0300c5, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f03010e, 0x7f03010f, 0x7f030110, 0x7f030111, 0x7f030112, 0x7f030113 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_menu 14 -int styleable Toolbar_navigationContentDescription 15 -int styleable Toolbar_navigationIcon 16 -int styleable Toolbar_popupTheme 17 -int styleable Toolbar_subtitle 18 -int styleable Toolbar_subtitleTextAppearance 19 -int styleable Toolbar_subtitleTextColor 20 -int styleable Toolbar_title 21 -int styleable Toolbar_titleMargin 22 -int styleable Toolbar_titleMarginBottom 23 -int styleable Toolbar_titleMarginEnd 24 -int styleable Toolbar_titleMarginStart 25 -int styleable Toolbar_titleMarginTop 26 -int styleable Toolbar_titleMargins 27 -int styleable Toolbar_titleTextAppearance 28 -int styleable Toolbar_titleTextColor 29 -int[] styleable View { 0x01010000, 0x010100da, 0x7f0300bd, 0x7f0300be, 0x7f030101 } -int styleable View_android_theme 0 -int styleable View_android_focusable 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030039, 0x7f03003a } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_layout 1 -int styleable ViewStubCompat_android_inflatedId 2 diff --git a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libflutter.so b/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libflutter.so deleted file mode 100644 index 66bd3bf4..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86/libflutter.so b/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86/libflutter.so deleted file mode 100644 index d7402ccf..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86_64/libflutter.so b/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86_64/libflutter.so deleted file mode 100644 index cf74fc71..00000000 Binary files a/Tracking/rudra_app/build/app/intermediates/stripped_native_libs/debug/out/lib/x86_64/libflutter.so and /dev/null differ diff --git a/Tracking/rudra_app/build/app/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/Tracking/rudra_app/build/app/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt deleted file mode 100644 index efd707e8..00000000 --- a/Tracking/rudra_app/build/app/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +++ /dev/null @@ -1,1304 +0,0 @@ -com.example.rudra_app -anim abc_fade_in -anim abc_fade_out -anim abc_grow_fade_in_from_bottom -anim abc_popup_enter -anim abc_popup_exit -anim abc_shrink_fade_out_from_bottom -anim abc_slide_in_bottom -anim abc_slide_in_top -anim abc_slide_out_bottom -anim abc_slide_out_top -anim abc_tooltip_enter -anim abc_tooltip_exit -anim btn_checkbox_to_checked_box_inner_merged_animation -anim btn_checkbox_to_checked_box_outer_merged_animation -anim btn_checkbox_to_checked_icon_null_animation -anim btn_checkbox_to_unchecked_box_inner_merged_animation -anim btn_checkbox_to_unchecked_check_path_merged_animation -anim btn_checkbox_to_unchecked_icon_null_animation -anim btn_radio_to_off_mtrl_dot_group_animation -anim btn_radio_to_off_mtrl_ring_outer_animation -anim btn_radio_to_off_mtrl_ring_outer_path_animation -anim btn_radio_to_on_mtrl_dot_group_animation -anim btn_radio_to_on_mtrl_ring_outer_animation -anim btn_radio_to_on_mtrl_ring_outer_path_animation -anim fragment_fast_out_extra_slow_in -animator fragment_close_enter -animator fragment_close_exit -animator fragment_fade_enter -animator fragment_fade_exit -animator fragment_open_enter -animator fragment_open_exit -attr actionBarDivider -attr actionBarItemBackground -attr actionBarPopupTheme -attr actionBarSize -attr actionBarSplitStyle -attr actionBarStyle -attr actionBarTabBarStyle -attr actionBarTabStyle -attr actionBarTabTextStyle -attr actionBarTheme -attr actionBarWidgetTheme -attr actionButtonStyle -attr actionDropDownStyle -attr actionLayout -attr actionMenuTextAppearance -attr actionMenuTextColor -attr actionModeBackground -attr actionModeCloseButtonStyle -attr actionModeCloseContentDescription -attr actionModeCloseDrawable -attr actionModeCopyDrawable -attr actionModeCutDrawable -attr actionModeFindDrawable -attr actionModePasteDrawable -attr actionModePopupWindowStyle -attr actionModeSelectAllDrawable -attr actionModeShareDrawable -attr actionModeSplitBackground -attr actionModeStyle -attr actionModeTheme -attr actionModeWebSearchDrawable -attr actionOverflowButtonStyle -attr actionOverflowMenuStyle -attr actionProviderClass -attr actionViewClass -attr activityAction -attr activityChooserViewStyle -attr activityName -attr alertDialogButtonGroupStyle -attr alertDialogCenterButtons -attr alertDialogStyle -attr alertDialogTheme -attr allowStacking -attr alpha -attr alphabeticModifiers -attr alwaysExpand -attr arrowHeadLength -attr arrowShaftLength -attr autoCompleteTextViewStyle -attr autoSizeMaxTextSize -attr autoSizeMinTextSize -attr autoSizePresetSizes -attr autoSizeStepGranularity -attr autoSizeTextType -attr background -attr backgroundSplit -attr backgroundStacked -attr backgroundTint -attr backgroundTintMode -attr barLength -attr borderlessButtonStyle -attr buttonBarButtonStyle -attr buttonBarNegativeButtonStyle -attr buttonBarNeutralButtonStyle -attr buttonBarPositiveButtonStyle -attr buttonBarStyle -attr buttonCompat -attr buttonGravity -attr buttonIconDimen -attr buttonPanelSideLayout -attr buttonStyle -attr buttonStyleSmall -attr buttonTint -attr buttonTintMode -attr checkboxStyle -attr checkedTextViewStyle -attr clearTop -attr closeIcon -attr closeItemLayout -attr collapseContentDescription -attr collapseIcon -attr color -attr colorAccent -attr colorBackgroundFloating -attr colorButtonNormal -attr colorControlActivated -attr colorControlHighlight -attr colorControlNormal -attr colorError -attr colorPrimary -attr colorPrimaryDark -attr colorSwitchThumbNormal -attr commitIcon -attr contentDescription -attr contentInsetEnd -attr contentInsetEndWithActions -attr contentInsetLeft -attr contentInsetRight -attr contentInsetStart -attr contentInsetStartWithNavigation -attr controlBackground -attr customNavigationLayout -attr defaultQueryHint -attr dialogCornerRadius -attr dialogPreferredPadding -attr dialogTheme -attr displayOptions -attr divider -attr dividerHorizontal -attr dividerPadding -attr dividerVertical -attr drawableBottomCompat -attr drawableEndCompat -attr drawableLeftCompat -attr drawableRightCompat -attr drawableSize -attr drawableStartCompat -attr drawableTint -attr drawableTintMode -attr drawableTopCompat -attr drawerArrowStyle -attr dropDownListViewStyle -attr dropdownListPreferredItemHeight -attr editTextBackground -attr editTextColor -attr editTextStyle -attr elevation -attr expandActivityOverflowButtonDrawable -attr finishPrimaryWithSecondary -attr finishSecondaryWithPrimary -attr firstBaselineToTopHeight -attr font -attr fontFamily -attr fontProviderAuthority -attr fontProviderCerts -attr fontProviderFetchStrategy -attr fontProviderFetchTimeout -attr fontProviderPackage -attr fontProviderQuery -attr fontProviderSystemFontFamily -attr fontStyle -attr fontVariationSettings -attr fontWeight -attr gapBetweenBars -attr goIcon -attr height -attr hideOnContentScroll -attr homeAsUpIndicator -attr homeLayout -attr icon -attr iconTint -attr iconTintMode -attr iconifiedByDefault -attr imageButtonStyle -attr indeterminateProgressStyle -attr initialActivityCount -attr isLightTheme -attr itemPadding -attr lastBaselineToBottomHeight -attr layout -attr lineHeight -attr listChoiceBackgroundIndicator -attr listChoiceIndicatorMultipleAnimated -attr listChoiceIndicatorSingleAnimated -attr listDividerAlertDialog -attr listItemLayout -attr listLayout -attr listMenuViewStyle -attr listPopupWindowStyle -attr listPreferredItemHeight -attr listPreferredItemHeightLarge -attr listPreferredItemHeightSmall -attr listPreferredItemPaddingEnd -attr listPreferredItemPaddingLeft -attr listPreferredItemPaddingRight -attr listPreferredItemPaddingStart -attr logo -attr logoDescription -attr maxButtonHeight -attr measureWithLargestChild -attr menu -attr multiChoiceItemLayout -attr navigationContentDescription -attr navigationIcon -attr navigationMode -attr nestedScrollViewStyle -attr numericModifiers -attr overlapAnchor -attr paddingBottomNoButtons -attr paddingEnd -attr paddingStart -attr paddingTopNoTitle -attr panelBackground -attr panelMenuListTheme -attr panelMenuListWidth -attr placeholderActivityName -attr popupMenuStyle -attr popupTheme -attr popupWindowStyle -attr preserveIconSpacing -attr primaryActivityName -attr progressBarPadding -attr progressBarStyle -attr queryBackground -attr queryHint -attr queryPatterns -attr radioButtonStyle -attr ratingBarStyle -attr ratingBarStyleIndicator -attr ratingBarStyleSmall -attr searchHintIcon -attr searchIcon -attr searchViewStyle -attr secondaryActivityAction -attr secondaryActivityName -attr seekBarStyle -attr selectableItemBackground -attr selectableItemBackgroundBorderless -attr shortcutMatchRequired -attr showAsAction -attr showDividers -attr showText -attr showTitle -attr singleChoiceItemLayout -attr spinBars -attr spinnerDropDownItemStyle -attr spinnerStyle -attr splitLayoutDirection -attr splitMinSmallestWidth -attr splitMinWidth -attr splitRatio -attr splitTrack -attr srcCompat -attr state_above_anchor -attr subMenuArrow -attr submitBackground -attr subtitle -attr subtitleTextAppearance -attr subtitleTextColor -attr subtitleTextStyle -attr suggestionRowLayout -attr switchMinWidth -attr switchPadding -attr switchStyle -attr switchTextAppearance -attr textAllCaps -attr textAppearanceLargePopupMenu -attr textAppearanceListItem -attr textAppearanceListItemSecondary -attr textAppearanceListItemSmall -attr textAppearancePopupMenuHeader -attr textAppearanceSearchResultSubtitle -attr textAppearanceSearchResultTitle -attr textAppearanceSmallPopupMenu -attr textColorAlertDialogListItem -attr textColorSearchUrl -attr textLocale -attr theme -attr thickness -attr thumbTextPadding -attr thumbTint -attr thumbTintMode -attr tickMark -attr tickMarkTint -attr tickMarkTintMode -attr tint -attr tintMode -attr title -attr titleMargin -attr titleMarginBottom -attr titleMarginEnd -attr titleMarginStart -attr titleMarginTop -attr titleMargins -attr titleTextAppearance -attr titleTextColor -attr titleTextStyle -attr toolbarNavigationButtonStyle -attr toolbarStyle -attr tooltipForegroundColor -attr tooltipFrameBackground -attr tooltipText -attr track -attr trackTint -attr trackTintMode -attr ttcIndex -attr viewInflaterClass -attr voiceIcon -attr windowActionBar -attr windowActionBarOverlay -attr windowActionModeOverlay -attr windowFixedHeightMajor -attr windowFixedHeightMinor -attr windowFixedWidthMajor -attr windowFixedWidthMinor -attr windowMinWidthMajor -attr windowMinWidthMinor -attr windowNoTitle -bool abc_action_bar_embed_tabs -bool abc_config_actionMenuItemAllCaps -color abc_background_cache_hint_selector_material_dark -color abc_background_cache_hint_selector_material_light -color abc_btn_colored_borderless_text_material -color abc_btn_colored_text_material -color abc_color_highlight_material -color abc_decor_view_status_guard -color abc_decor_view_status_guard_light -color abc_hint_foreground_material_dark -color abc_hint_foreground_material_light -color abc_primary_text_disable_only_material_dark -color abc_primary_text_disable_only_material_light -color abc_primary_text_material_dark -color abc_primary_text_material_light -color abc_search_url_text -color abc_search_url_text_normal -color abc_search_url_text_pressed -color abc_search_url_text_selected -color abc_secondary_text_material_dark -color abc_secondary_text_material_light -color abc_tint_btn_checkable -color abc_tint_default -color abc_tint_edittext -color abc_tint_seek_thumb -color abc_tint_spinner -color abc_tint_switch_track -color accent_material_dark -color accent_material_light -color androidx_core_ripple_material_light -color androidx_core_secondary_text_default_material_light -color background_floating_material_dark -color background_floating_material_light -color background_material_dark -color background_material_light -color bright_foreground_disabled_material_dark -color bright_foreground_disabled_material_light -color bright_foreground_inverse_material_dark -color bright_foreground_inverse_material_light -color bright_foreground_material_dark -color bright_foreground_material_light -color button_material_dark -color button_material_light -color dim_foreground_disabled_material_dark -color dim_foreground_disabled_material_light -color dim_foreground_material_dark -color dim_foreground_material_light -color error_color_material_dark -color error_color_material_light -color foreground_material_dark -color foreground_material_light -color highlighted_text_material_dark -color highlighted_text_material_light -color material_blue_grey_800 -color material_blue_grey_900 -color material_blue_grey_950 -color material_deep_teal_200 -color material_deep_teal_500 -color material_grey_100 -color material_grey_300 -color material_grey_50 -color material_grey_600 -color material_grey_800 -color material_grey_850 -color material_grey_900 -color notification_action_color_filter -color notification_icon_bg_color -color primary_dark_material_dark -color primary_dark_material_light -color primary_material_dark -color primary_material_light -color primary_text_default_material_dark -color primary_text_default_material_light -color primary_text_disabled_material_dark -color primary_text_disabled_material_light -color ripple_material_dark -color ripple_material_light -color secondary_text_default_material_dark -color secondary_text_default_material_light -color secondary_text_disabled_material_dark -color secondary_text_disabled_material_light -color switch_thumb_disabled_material_dark -color switch_thumb_disabled_material_light -color switch_thumb_material_dark -color switch_thumb_material_light -color switch_thumb_normal_material_dark -color switch_thumb_normal_material_light -color tooltip_background_dark -color tooltip_background_light -dimen abc_action_bar_content_inset_material -dimen abc_action_bar_content_inset_with_nav -dimen abc_action_bar_default_height_material -dimen abc_action_bar_default_padding_end_material -dimen abc_action_bar_default_padding_start_material -dimen abc_action_bar_elevation_material -dimen abc_action_bar_icon_vertical_padding_material -dimen abc_action_bar_overflow_padding_end_material -dimen abc_action_bar_overflow_padding_start_material -dimen abc_action_bar_stacked_max_height -dimen abc_action_bar_stacked_tab_max_width -dimen abc_action_bar_subtitle_bottom_margin_material -dimen abc_action_bar_subtitle_top_margin_material -dimen abc_action_button_min_height_material -dimen abc_action_button_min_width_material -dimen abc_action_button_min_width_overflow_material -dimen abc_alert_dialog_button_bar_height -dimen abc_alert_dialog_button_dimen -dimen abc_button_inset_horizontal_material -dimen abc_button_inset_vertical_material -dimen abc_button_padding_horizontal_material -dimen abc_button_padding_vertical_material -dimen abc_cascading_menus_min_smallest_width -dimen abc_config_prefDialogWidth -dimen abc_control_corner_material -dimen abc_control_inset_material -dimen abc_control_padding_material -dimen abc_dialog_corner_radius_material -dimen abc_dialog_fixed_height_major -dimen abc_dialog_fixed_height_minor -dimen abc_dialog_fixed_width_major -dimen abc_dialog_fixed_width_minor -dimen abc_dialog_list_padding_bottom_no_buttons -dimen abc_dialog_list_padding_top_no_title -dimen abc_dialog_min_width_major -dimen abc_dialog_min_width_minor -dimen abc_dialog_padding_material -dimen abc_dialog_padding_top_material -dimen abc_dialog_title_divider_material -dimen abc_disabled_alpha_material_dark -dimen abc_disabled_alpha_material_light -dimen abc_dropdownitem_icon_width -dimen abc_dropdownitem_text_padding_left -dimen abc_dropdownitem_text_padding_right -dimen abc_edit_text_inset_bottom_material -dimen abc_edit_text_inset_horizontal_material -dimen abc_edit_text_inset_top_material -dimen abc_floating_window_z -dimen abc_list_item_height_large_material -dimen abc_list_item_height_material -dimen abc_list_item_height_small_material -dimen abc_list_item_padding_horizontal_material -dimen abc_panel_menu_list_width -dimen abc_progress_bar_height_material -dimen abc_search_view_preferred_height -dimen abc_search_view_preferred_width -dimen abc_seekbar_track_background_height_material -dimen abc_seekbar_track_progress_height_material -dimen abc_select_dialog_padding_start_material -dimen abc_star_big -dimen abc_star_medium -dimen abc_star_small -dimen abc_switch_padding -dimen abc_text_size_body_1_material -dimen abc_text_size_body_2_material -dimen abc_text_size_button_material -dimen abc_text_size_caption_material -dimen abc_text_size_display_1_material -dimen abc_text_size_display_2_material -dimen abc_text_size_display_3_material -dimen abc_text_size_display_4_material -dimen abc_text_size_headline_material -dimen abc_text_size_large_material -dimen abc_text_size_medium_material -dimen abc_text_size_menu_header_material -dimen abc_text_size_menu_material -dimen abc_text_size_small_material -dimen abc_text_size_subhead_material -dimen abc_text_size_subtitle_material_toolbar -dimen abc_text_size_title_material -dimen abc_text_size_title_material_toolbar -dimen compat_button_inset_horizontal_material -dimen compat_button_inset_vertical_material -dimen compat_button_padding_horizontal_material -dimen compat_button_padding_vertical_material -dimen compat_control_corner_material -dimen compat_notification_large_icon_max_height -dimen compat_notification_large_icon_max_width -dimen disabled_alpha_material_dark -dimen disabled_alpha_material_light -dimen highlight_alpha_material_colored -dimen highlight_alpha_material_dark -dimen highlight_alpha_material_light -dimen hint_alpha_material_dark -dimen hint_alpha_material_light -dimen hint_pressed_alpha_material_dark -dimen hint_pressed_alpha_material_light -dimen notification_action_icon_size -dimen notification_action_text_size -dimen notification_big_circle_margin -dimen notification_content_margin_start -dimen notification_large_icon_height -dimen notification_large_icon_width -dimen notification_main_column_padding_top -dimen notification_media_narrow_margin -dimen notification_right_icon_size -dimen notification_right_side_padding_top -dimen notification_small_icon_background_padding -dimen notification_small_icon_size_as_large -dimen notification_subtext_size -dimen notification_top_pad -dimen notification_top_pad_large_text -dimen tooltip_corner_radius -dimen tooltip_horizontal_padding -dimen tooltip_margin -dimen tooltip_precise_anchor_extra_offset -dimen tooltip_precise_anchor_threshold -dimen tooltip_vertical_padding -dimen tooltip_y_offset_non_touch -dimen tooltip_y_offset_touch -drawable abc_ab_share_pack_mtrl_alpha -drawable abc_action_bar_item_background_material -drawable abc_btn_borderless_material -drawable abc_btn_check_material -drawable abc_btn_check_material_anim -drawable abc_btn_check_to_on_mtrl_000 -drawable abc_btn_check_to_on_mtrl_015 -drawable abc_btn_colored_material -drawable abc_btn_default_mtrl_shape -drawable abc_btn_radio_material -drawable abc_btn_radio_material_anim -drawable abc_btn_radio_to_on_mtrl_000 -drawable abc_btn_radio_to_on_mtrl_015 -drawable abc_btn_switch_to_on_mtrl_00001 -drawable abc_btn_switch_to_on_mtrl_00012 -drawable abc_cab_background_internal_bg -drawable abc_cab_background_top_material -drawable abc_cab_background_top_mtrl_alpha -drawable abc_control_background_material -drawable abc_dialog_material_background -drawable abc_edit_text_material -drawable abc_ic_ab_back_material -drawable abc_ic_arrow_drop_right_black_24dp -drawable abc_ic_clear_material -drawable abc_ic_commit_search_api_mtrl_alpha -drawable abc_ic_go_search_api_material -drawable abc_ic_menu_copy_mtrl_am_alpha -drawable abc_ic_menu_cut_mtrl_alpha -drawable abc_ic_menu_overflow_material -drawable abc_ic_menu_paste_mtrl_am_alpha -drawable abc_ic_menu_selectall_mtrl_alpha -drawable abc_ic_menu_share_mtrl_alpha -drawable abc_ic_search_api_material -drawable abc_ic_voice_search_api_material -drawable abc_item_background_holo_dark -drawable abc_item_background_holo_light -drawable abc_list_divider_material -drawable abc_list_divider_mtrl_alpha -drawable abc_list_focused_holo -drawable abc_list_longpressed_holo -drawable abc_list_pressed_holo_dark -drawable abc_list_pressed_holo_light -drawable abc_list_selector_background_transition_holo_dark -drawable abc_list_selector_background_transition_holo_light -drawable abc_list_selector_disabled_holo_dark -drawable abc_list_selector_disabled_holo_light -drawable abc_list_selector_holo_dark -drawable abc_list_selector_holo_light -drawable abc_menu_hardkey_panel_mtrl_mult -drawable abc_popup_background_mtrl_mult -drawable abc_ratingbar_indicator_material -drawable abc_ratingbar_material -drawable abc_ratingbar_small_material -drawable abc_scrubber_control_off_mtrl_alpha -drawable abc_scrubber_control_to_pressed_mtrl_000 -drawable abc_scrubber_control_to_pressed_mtrl_005 -drawable abc_scrubber_primary_mtrl_alpha -drawable abc_scrubber_track_mtrl_alpha -drawable abc_seekbar_thumb_material -drawable abc_seekbar_tick_mark_material -drawable abc_seekbar_track_material -drawable abc_spinner_mtrl_am_alpha -drawable abc_spinner_textfield_background_material -drawable abc_star_black_48dp -drawable abc_star_half_black_48dp -drawable abc_switch_thumb_material -drawable abc_switch_track_mtrl_alpha -drawable abc_tab_indicator_material -drawable abc_tab_indicator_mtrl_alpha -drawable abc_text_cursor_material -drawable abc_text_select_handle_left_mtrl -drawable abc_text_select_handle_middle_mtrl -drawable abc_text_select_handle_right_mtrl -drawable abc_textfield_activated_mtrl_alpha -drawable abc_textfield_default_mtrl_alpha -drawable abc_textfield_search_activated_mtrl_alpha -drawable abc_textfield_search_default_mtrl_alpha -drawable abc_textfield_search_material -drawable abc_vector_test -drawable btn_checkbox_checked_mtrl -drawable btn_checkbox_checked_to_unchecked_mtrl_animation -drawable btn_checkbox_unchecked_mtrl -drawable btn_checkbox_unchecked_to_checked_mtrl_animation -drawable btn_radio_off_mtrl -drawable btn_radio_off_to_on_mtrl_animation -drawable btn_radio_on_mtrl -drawable btn_radio_on_to_off_mtrl_animation -drawable launch_background -drawable notification_action_background -drawable notification_bg -drawable notification_bg_low -drawable notification_bg_low_normal -drawable notification_bg_low_pressed -drawable notification_bg_normal -drawable notification_bg_normal_pressed -drawable notification_icon_background -drawable notification_template_icon_bg -drawable notification_template_icon_low_bg -drawable notification_tile_bg -drawable notify_panel_notification_icon_bg -drawable tooltip_frame_dark -drawable tooltip_frame_light -id ALT -id CTRL -id FUNCTION -id META -id SHIFT -id SYM -id accessibility_action_clickable_span -id accessibility_custom_action_0 -id accessibility_custom_action_1 -id accessibility_custom_action_10 -id accessibility_custom_action_11 -id accessibility_custom_action_12 -id accessibility_custom_action_13 -id accessibility_custom_action_14 -id accessibility_custom_action_15 -id accessibility_custom_action_16 -id accessibility_custom_action_17 -id accessibility_custom_action_18 -id accessibility_custom_action_19 -id accessibility_custom_action_2 -id accessibility_custom_action_20 -id accessibility_custom_action_21 -id accessibility_custom_action_22 -id accessibility_custom_action_23 -id accessibility_custom_action_24 -id accessibility_custom_action_25 -id accessibility_custom_action_26 -id accessibility_custom_action_27 -id accessibility_custom_action_28 -id accessibility_custom_action_29 -id accessibility_custom_action_3 -id accessibility_custom_action_30 -id accessibility_custom_action_31 -id accessibility_custom_action_4 -id accessibility_custom_action_5 -id accessibility_custom_action_6 -id accessibility_custom_action_7 -id accessibility_custom_action_8 -id accessibility_custom_action_9 -id action_bar -id action_bar_activity_content -id action_bar_container -id action_bar_root -id action_bar_spinner -id action_bar_subtitle -id action_bar_title -id action_container -id action_context_bar -id action_divider -id action_image -id action_menu_divider -id action_menu_presenter -id action_mode_bar -id action_mode_bar_stub -id action_mode_close_button -id action_text -id actions -id activity_chooser_view_content -id add -id alertTitle -id always -id androidx_window_activity_scope -id async -id beginning -id blocking -id bottom -id buttonPanel -id center_vertical -id checkbox -id checked -id chronometer -id collapseActionView -id content -id contentPanel -id custom -id customPanel -id decor_content_parent -id default_activity_button -id dialog_button -id disableHome -id edit_query -id end -id expand_activities_button -id expanded_menu -id forever -id fragment_container_view_tag -id group_divider -id home -id homeAsUp -id icon -id icon_group -id ifRoom -id image -id info -id italic -id line1 -id line3 -id listMode -id list_item -id locale -id ltr -id message -id middle -id multiply -id never -id none -id normal -id notification_background -id notification_main_column -id notification_main_column_container -id off -id on -id parentPanel -id progress_circular -id progress_horizontal -id radio -id right_icon -id right_side -id rtl -id screen -id scrollIndicatorDown -id scrollIndicatorUp -id scrollView -id search_badge -id search_bar -id search_button -id search_close_btn -id search_edit_frame -id search_go_btn -id search_mag_icon -id search_plate -id search_src_text -id search_voice_btn -id select_dialog_listview -id shortcut -id showCustom -id showHome -id showTitle -id spacer -id special_effects_controller_view_tag -id split_action_bar -id src_atop -id src_in -id src_over -id submenuarrow -id submit_area -id tabMode -id tag_accessibility_actions -id tag_accessibility_clickable_spans -id tag_accessibility_heading -id tag_accessibility_pane_title -id tag_on_apply_window_listener -id tag_on_receive_content_listener -id tag_on_receive_content_mime_types -id tag_screen_reader_focusable -id tag_state_description -id tag_transition_group -id tag_unhandled_key_event_manager -id tag_unhandled_key_listeners -id tag_window_insets_animation_callback -id text -id text2 -id textSpacerNoButtons -id textSpacerNoTitle -id time -id title -id titleDividerNoCustom -id title_template -id top -id topPanel -id unchecked -id uniform -id up -id useLogo -id view_tree_lifecycle_owner -id view_tree_saved_state_registry_owner -id view_tree_view_model_store_owner -id visible_removing_fragment_view_tag -id withText -id wrap_content -integer abc_config_activityDefaultDur -integer abc_config_activityShortDur -integer cancel_button_image_alpha -integer config_tooltipAnimTime -integer status_bar_notification_info_maxnum -interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -interpolator fast_out_slow_in -layout abc_action_bar_title_item -layout abc_action_bar_up_container -layout abc_action_menu_item_layout -layout abc_action_menu_layout -layout abc_action_mode_bar -layout abc_action_mode_close_item_material -layout abc_activity_chooser_view -layout abc_activity_chooser_view_list_item -layout abc_alert_dialog_button_bar_material -layout abc_alert_dialog_material -layout abc_alert_dialog_title_material -layout abc_cascading_menu_item_layout -layout abc_dialog_title_material -layout abc_expanded_menu_layout -layout abc_list_menu_item_checkbox -layout abc_list_menu_item_icon -layout abc_list_menu_item_layout -layout abc_list_menu_item_radio -layout abc_popup_menu_header_item_layout -layout abc_popup_menu_item_layout -layout abc_screen_content_include -layout abc_screen_simple -layout abc_screen_simple_overlay_action_mode -layout abc_screen_toolbar -layout abc_search_dropdown_item_icons_2line -layout abc_search_view -layout abc_select_dialog_material -layout abc_tooltip -layout custom_dialog -layout notification_action -layout notification_action_tombstone -layout notification_template_custom_big -layout notification_template_icon_group -layout notification_template_part_chronometer -layout notification_template_part_time -layout select_dialog_item_material -layout select_dialog_multichoice_material -layout select_dialog_singlechoice_material -layout support_simple_spinner_dropdown_item -mipmap ic_launcher -string abc_action_bar_home_description -string abc_action_bar_up_description -string abc_action_menu_overflow_description -string abc_action_mode_done -string abc_activity_chooser_view_see_all -string abc_activitychooserview_choose_application -string abc_capital_off -string abc_capital_on -string abc_menu_alt_shortcut_label -string abc_menu_ctrl_shortcut_label -string abc_menu_delete_shortcut_label -string abc_menu_enter_shortcut_label -string abc_menu_function_shortcut_label -string abc_menu_meta_shortcut_label -string abc_menu_shift_shortcut_label -string abc_menu_space_shortcut_label -string abc_menu_sym_shortcut_label -string abc_prepend_shortcut_label -string abc_search_hint -string abc_searchview_description_clear -string abc_searchview_description_query -string abc_searchview_description_search -string abc_searchview_description_submit -string abc_searchview_description_voice -string abc_shareactionprovider_share_with -string abc_shareactionprovider_share_with_application -string abc_toolbar_collapse_description -string search_menu_title -string status_bar_notification_info_overflow -style AlertDialog_AppCompat -style AlertDialog_AppCompat_Light -style Animation_AppCompat_Dialog -style Animation_AppCompat_DropDownUp -style Animation_AppCompat_Tooltip -style Base_AlertDialog_AppCompat -style Base_AlertDialog_AppCompat_Light -style Base_Animation_AppCompat_Dialog -style Base_Animation_AppCompat_DropDownUp -style Base_Animation_AppCompat_Tooltip -style Base_DialogWindowTitle_AppCompat -style Base_DialogWindowTitleBackground_AppCompat -style Base_TextAppearance_AppCompat -style Base_TextAppearance_AppCompat_Body1 -style Base_TextAppearance_AppCompat_Body2 -style Base_TextAppearance_AppCompat_Button -style Base_TextAppearance_AppCompat_Caption -style Base_TextAppearance_AppCompat_Display1 -style Base_TextAppearance_AppCompat_Display2 -style Base_TextAppearance_AppCompat_Display3 -style Base_TextAppearance_AppCompat_Display4 -style Base_TextAppearance_AppCompat_Headline -style Base_TextAppearance_AppCompat_Inverse -style Base_TextAppearance_AppCompat_Large -style Base_TextAppearance_AppCompat_Large_Inverse -style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -style Base_TextAppearance_AppCompat_Medium -style Base_TextAppearance_AppCompat_Medium_Inverse -style Base_TextAppearance_AppCompat_Menu -style Base_TextAppearance_AppCompat_SearchResult -style Base_TextAppearance_AppCompat_SearchResult_Subtitle -style Base_TextAppearance_AppCompat_SearchResult_Title -style Base_TextAppearance_AppCompat_Small -style Base_TextAppearance_AppCompat_Small_Inverse -style Base_TextAppearance_AppCompat_Subhead -style Base_TextAppearance_AppCompat_Subhead_Inverse -style Base_TextAppearance_AppCompat_Title -style Base_TextAppearance_AppCompat_Title_Inverse -style Base_TextAppearance_AppCompat_Tooltip -style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -style Base_TextAppearance_AppCompat_Widget_Button -style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -style Base_TextAppearance_AppCompat_Widget_Button_Colored -style Base_TextAppearance_AppCompat_Widget_Button_Inverse -style Base_TextAppearance_AppCompat_Widget_DropDownItem -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -style Base_TextAppearance_AppCompat_Widget_Switch -style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -style Base_Theme_AppCompat -style Base_Theme_AppCompat_CompactMenu -style Base_Theme_AppCompat_Dialog -style Base_Theme_AppCompat_Dialog_Alert -style Base_Theme_AppCompat_Dialog_FixedSize -style Base_Theme_AppCompat_Dialog_MinWidth -style Base_Theme_AppCompat_DialogWhenLarge -style Base_Theme_AppCompat_Light -style Base_Theme_AppCompat_Light_DarkActionBar -style Base_Theme_AppCompat_Light_Dialog -style Base_Theme_AppCompat_Light_Dialog_Alert -style Base_Theme_AppCompat_Light_Dialog_FixedSize -style Base_Theme_AppCompat_Light_Dialog_MinWidth -style Base_Theme_AppCompat_Light_DialogWhenLarge -style Base_ThemeOverlay_AppCompat -style Base_ThemeOverlay_AppCompat_ActionBar -style Base_ThemeOverlay_AppCompat_Dark -style Base_ThemeOverlay_AppCompat_Dark_ActionBar -style Base_ThemeOverlay_AppCompat_Dialog -style Base_ThemeOverlay_AppCompat_Dialog_Alert -style Base_ThemeOverlay_AppCompat_Light -style Base_V21_Theme_AppCompat -style Base_V21_Theme_AppCompat_Dialog -style Base_V21_Theme_AppCompat_Light -style Base_V21_Theme_AppCompat_Light_Dialog -style Base_V21_ThemeOverlay_AppCompat_Dialog -style Base_V22_Theme_AppCompat -style Base_V22_Theme_AppCompat_Light -style Base_V23_Theme_AppCompat -style Base_V23_Theme_AppCompat_Light -style Base_V26_Theme_AppCompat -style Base_V26_Theme_AppCompat_Light -style Base_V26_Widget_AppCompat_Toolbar -style Base_V28_Theme_AppCompat -style Base_V28_Theme_AppCompat_Light -style Base_V7_Theme_AppCompat -style Base_V7_Theme_AppCompat_Dialog -style Base_V7_Theme_AppCompat_Light -style Base_V7_Theme_AppCompat_Light_Dialog -style Base_V7_ThemeOverlay_AppCompat_Dialog -style Base_V7_Widget_AppCompat_AutoCompleteTextView -style Base_V7_Widget_AppCompat_EditText -style Base_V7_Widget_AppCompat_Toolbar -style Base_Widget_AppCompat_ActionBar -style Base_Widget_AppCompat_ActionBar_Solid -style Base_Widget_AppCompat_ActionBar_TabBar -style Base_Widget_AppCompat_ActionBar_TabText -style Base_Widget_AppCompat_ActionBar_TabView -style Base_Widget_AppCompat_ActionButton -style Base_Widget_AppCompat_ActionButton_CloseMode -style Base_Widget_AppCompat_ActionButton_Overflow -style Base_Widget_AppCompat_ActionMode -style Base_Widget_AppCompat_ActivityChooserView -style Base_Widget_AppCompat_AutoCompleteTextView -style Base_Widget_AppCompat_Button -style Base_Widget_AppCompat_Button_Borderless -style Base_Widget_AppCompat_Button_Borderless_Colored -style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -style Base_Widget_AppCompat_Button_Colored -style Base_Widget_AppCompat_Button_Small -style Base_Widget_AppCompat_ButtonBar -style Base_Widget_AppCompat_ButtonBar_AlertDialog -style Base_Widget_AppCompat_CompoundButton_CheckBox -style Base_Widget_AppCompat_CompoundButton_RadioButton -style Base_Widget_AppCompat_CompoundButton_Switch -style Base_Widget_AppCompat_DrawerArrowToggle -style Base_Widget_AppCompat_DrawerArrowToggle_Common -style Base_Widget_AppCompat_DropDownItem_Spinner -style Base_Widget_AppCompat_EditText -style Base_Widget_AppCompat_ImageButton -style Base_Widget_AppCompat_Light_ActionBar -style Base_Widget_AppCompat_Light_ActionBar_Solid -style Base_Widget_AppCompat_Light_ActionBar_TabBar -style Base_Widget_AppCompat_Light_ActionBar_TabText -style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -style Base_Widget_AppCompat_Light_ActionBar_TabView -style Base_Widget_AppCompat_Light_PopupMenu -style Base_Widget_AppCompat_Light_PopupMenu_Overflow -style Base_Widget_AppCompat_ListMenuView -style Base_Widget_AppCompat_ListPopupWindow -style Base_Widget_AppCompat_ListView -style Base_Widget_AppCompat_ListView_DropDown -style Base_Widget_AppCompat_ListView_Menu -style Base_Widget_AppCompat_PopupMenu -style Base_Widget_AppCompat_PopupMenu_Overflow -style Base_Widget_AppCompat_PopupWindow -style Base_Widget_AppCompat_ProgressBar -style Base_Widget_AppCompat_ProgressBar_Horizontal -style Base_Widget_AppCompat_RatingBar -style Base_Widget_AppCompat_RatingBar_Indicator -style Base_Widget_AppCompat_RatingBar_Small -style Base_Widget_AppCompat_SearchView -style Base_Widget_AppCompat_SearchView_ActionBar -style Base_Widget_AppCompat_SeekBar -style Base_Widget_AppCompat_SeekBar_Discrete -style Base_Widget_AppCompat_Spinner -style Base_Widget_AppCompat_Spinner_Underlined -style Base_Widget_AppCompat_TextView -style Base_Widget_AppCompat_TextView_SpinnerItem -style Base_Widget_AppCompat_Toolbar -style Base_Widget_AppCompat_Toolbar_Button_Navigation -style LaunchTheme -style NormalTheme -style Platform_AppCompat -style Platform_AppCompat_Light -style Platform_ThemeOverlay_AppCompat -style Platform_ThemeOverlay_AppCompat_Dark -style Platform_ThemeOverlay_AppCompat_Light -style Platform_V21_AppCompat -style Platform_V21_AppCompat_Light -style Platform_V25_AppCompat -style Platform_V25_AppCompat_Light -style Platform_Widget_AppCompat_Spinner -style RtlOverlay_DialogWindowTitle_AppCompat -style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -style RtlOverlay_Widget_AppCompat_PopupMenuItem -style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -style RtlOverlay_Widget_AppCompat_Search_DropDown -style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -style RtlUnderlay_Widget_AppCompat_ActionButton -style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -style TextAppearance_AppCompat -style TextAppearance_AppCompat_Body1 -style TextAppearance_AppCompat_Body2 -style TextAppearance_AppCompat_Button -style TextAppearance_AppCompat_Caption -style TextAppearance_AppCompat_Display1 -style TextAppearance_AppCompat_Display2 -style TextAppearance_AppCompat_Display3 -style TextAppearance_AppCompat_Display4 -style TextAppearance_AppCompat_Headline -style TextAppearance_AppCompat_Inverse -style TextAppearance_AppCompat_Large -style TextAppearance_AppCompat_Large_Inverse -style TextAppearance_AppCompat_Light_SearchResult_Subtitle -style TextAppearance_AppCompat_Light_SearchResult_Title -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -style TextAppearance_AppCompat_Medium -style TextAppearance_AppCompat_Medium_Inverse -style TextAppearance_AppCompat_Menu -style TextAppearance_AppCompat_SearchResult_Subtitle -style TextAppearance_AppCompat_SearchResult_Title -style TextAppearance_AppCompat_Small -style TextAppearance_AppCompat_Small_Inverse -style TextAppearance_AppCompat_Subhead -style TextAppearance_AppCompat_Subhead_Inverse -style TextAppearance_AppCompat_Title -style TextAppearance_AppCompat_Title_Inverse -style TextAppearance_AppCompat_Tooltip -style TextAppearance_AppCompat_Widget_ActionBar_Menu -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionBar_Title -style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Title -style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -style TextAppearance_AppCompat_Widget_Button -style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -style TextAppearance_AppCompat_Widget_Button_Colored -style TextAppearance_AppCompat_Widget_Button_Inverse -style TextAppearance_AppCompat_Widget_DropDownItem -style TextAppearance_AppCompat_Widget_PopupMenu_Header -style TextAppearance_AppCompat_Widget_PopupMenu_Large -style TextAppearance_AppCompat_Widget_PopupMenu_Small -style TextAppearance_AppCompat_Widget_Switch -style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -style TextAppearance_Compat_Notification -style TextAppearance_Compat_Notification_Info -style TextAppearance_Compat_Notification_Line2 -style TextAppearance_Compat_Notification_Time -style TextAppearance_Compat_Notification_Title -style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -style TextAppearance_Widget_AppCompat_Toolbar_Title -style Theme_AppCompat -style Theme_AppCompat_CompactMenu -style Theme_AppCompat_DayNight -style Theme_AppCompat_DayNight_DarkActionBar -style Theme_AppCompat_DayNight_Dialog -style Theme_AppCompat_DayNight_Dialog_Alert -style Theme_AppCompat_DayNight_Dialog_MinWidth -style Theme_AppCompat_DayNight_DialogWhenLarge -style Theme_AppCompat_DayNight_NoActionBar -style Theme_AppCompat_Dialog -style Theme_AppCompat_Dialog_Alert -style Theme_AppCompat_Dialog_MinWidth -style Theme_AppCompat_DialogWhenLarge -style Theme_AppCompat_Empty -style Theme_AppCompat_Light -style Theme_AppCompat_Light_DarkActionBar -style Theme_AppCompat_Light_Dialog -style Theme_AppCompat_Light_Dialog_Alert -style Theme_AppCompat_Light_Dialog_MinWidth -style Theme_AppCompat_Light_DialogWhenLarge -style Theme_AppCompat_Light_NoActionBar -style Theme_AppCompat_NoActionBar -style ThemeOverlay_AppCompat -style ThemeOverlay_AppCompat_ActionBar -style ThemeOverlay_AppCompat_Dark -style ThemeOverlay_AppCompat_Dark_ActionBar -style ThemeOverlay_AppCompat_DayNight -style ThemeOverlay_AppCompat_DayNight_ActionBar -style ThemeOverlay_AppCompat_Dialog -style ThemeOverlay_AppCompat_Dialog_Alert -style ThemeOverlay_AppCompat_Light -style Widget_AppCompat_ActionBar -style Widget_AppCompat_ActionBar_Solid -style Widget_AppCompat_ActionBar_TabBar -style Widget_AppCompat_ActionBar_TabText -style Widget_AppCompat_ActionBar_TabView -style Widget_AppCompat_ActionButton -style Widget_AppCompat_ActionButton_CloseMode -style Widget_AppCompat_ActionButton_Overflow -style Widget_AppCompat_ActionMode -style Widget_AppCompat_ActivityChooserView -style Widget_AppCompat_AutoCompleteTextView -style Widget_AppCompat_Button -style Widget_AppCompat_Button_Borderless -style Widget_AppCompat_Button_Borderless_Colored -style Widget_AppCompat_Button_ButtonBar_AlertDialog -style Widget_AppCompat_Button_Colored -style Widget_AppCompat_Button_Small -style Widget_AppCompat_ButtonBar -style Widget_AppCompat_ButtonBar_AlertDialog -style Widget_AppCompat_CompoundButton_CheckBox -style Widget_AppCompat_CompoundButton_RadioButton -style Widget_AppCompat_CompoundButton_Switch -style Widget_AppCompat_DrawerArrowToggle -style Widget_AppCompat_DropDownItem_Spinner -style Widget_AppCompat_EditText -style Widget_AppCompat_ImageButton -style Widget_AppCompat_Light_ActionBar -style Widget_AppCompat_Light_ActionBar_Solid -style Widget_AppCompat_Light_ActionBar_Solid_Inverse -style Widget_AppCompat_Light_ActionBar_TabBar -style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -style Widget_AppCompat_Light_ActionBar_TabText -style Widget_AppCompat_Light_ActionBar_TabText_Inverse -style Widget_AppCompat_Light_ActionBar_TabView -style Widget_AppCompat_Light_ActionBar_TabView_Inverse -style Widget_AppCompat_Light_ActionButton -style Widget_AppCompat_Light_ActionButton_CloseMode -style Widget_AppCompat_Light_ActionButton_Overflow -style Widget_AppCompat_Light_ActionMode_Inverse -style Widget_AppCompat_Light_ActivityChooserView -style Widget_AppCompat_Light_AutoCompleteTextView -style Widget_AppCompat_Light_DropDownItem_Spinner -style Widget_AppCompat_Light_ListPopupWindow -style Widget_AppCompat_Light_ListView_DropDown -style Widget_AppCompat_Light_PopupMenu -style Widget_AppCompat_Light_PopupMenu_Overflow -style Widget_AppCompat_Light_SearchView -style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -style Widget_AppCompat_ListMenuView -style Widget_AppCompat_ListPopupWindow -style Widget_AppCompat_ListView -style Widget_AppCompat_ListView_DropDown -style Widget_AppCompat_ListView_Menu -style Widget_AppCompat_PopupMenu -style Widget_AppCompat_PopupMenu_Overflow -style Widget_AppCompat_PopupWindow -style Widget_AppCompat_ProgressBar -style Widget_AppCompat_ProgressBar_Horizontal -style Widget_AppCompat_RatingBar -style Widget_AppCompat_RatingBar_Indicator -style Widget_AppCompat_RatingBar_Small -style Widget_AppCompat_SearchView -style Widget_AppCompat_SearchView_ActionBar -style Widget_AppCompat_SeekBar -style Widget_AppCompat_SeekBar_Discrete -style Widget_AppCompat_Spinner -style Widget_AppCompat_Spinner_DropDown -style Widget_AppCompat_Spinner_DropDown_ActionBar -style Widget_AppCompat_Spinner_Underlined -style Widget_AppCompat_TextView -style Widget_AppCompat_TextView_SpinnerItem -style Widget_AppCompat_Toolbar -style Widget_AppCompat_Toolbar_Button_Navigation -style Widget_Compat_NotificationActionContainer -style Widget_Compat_NotificationActionText -styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -styleable ActionBarLayout android_layout_gravity -styleable ActionMenuItemView android_minWidth -styleable ActionMenuView -styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -styleable ActivityFilter activityAction activityName -styleable ActivityRule alwaysExpand -styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration -styleable AnimatedStateListDrawableItem android_id android_drawable -styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible -styleable AppCompatImageView android_src srcCompat tint tintMode -styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd -styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -styleable ButtonBarLayout allowStacking -styleable Capability queryPatterns shortcutMatchRequired -styleable ColorStateListItem android_color android_alpha alpha -styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex -styleable Fragment android_name android_id android_tag -styleable FragmentContainerView android_name android_tag -styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY -styleable GradientColorItem android_color android_offset -styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers -styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight -styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior -styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow -styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor -styleable PopupWindowBackgroundState state_above_anchor -styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme -styleable SplitPairFilter primaryActivityName secondaryActivityAction secondaryActivityName -styleable SplitPairRule clearTop finishPrimaryWithSecondary finishSecondaryWithPrimary splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio -styleable SplitPlaceholderRule placeholderActivityName splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio -styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration -styleable StateListDrawableItem android_drawable -styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily android_textFontWeight fontFamily fontVariationSettings textAllCaps textLocale -styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -styleable View android_theme android_focusable paddingEnd paddingStart theme -styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -styleable ViewStubCompat android_id android_layout android_inflatedId diff --git a/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/build-history.bin b/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/build-history.bin deleted file mode 100644 index 1766a6f1..00000000 Binary files a/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/build-history.bin and /dev/null differ diff --git a/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/last-build.bin b/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/last-build.bin deleted file mode 100644 index 784397bd..00000000 Binary files a/Tracking/rudra_app/build/app/kotlin/compileDebugKotlin/last-build.bin and /dev/null differ diff --git a/Tracking/rudra_app/build/app/outputs/apk/debug/app-debug.apk b/Tracking/rudra_app/build/app/outputs/apk/debug/app-debug.apk deleted file mode 100644 index f8332c9a..00000000 Binary files a/Tracking/rudra_app/build/app/outputs/apk/debug/app-debug.apk and /dev/null differ diff --git a/Tracking/rudra_app/build/app/outputs/apk/debug/output-metadata.json b/Tracking/rudra_app/build/app/outputs/apk/debug/output-metadata.json deleted file mode 100644 index 6869cb9c..00000000 --- a/Tracking/rudra_app/build/app/outputs/apk/debug/output-metadata.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "APK", - "kind": "Directory" - }, - "applicationId": "com.example.rudra_app", - "variantName": "processDebugResources", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "versionCode": 1, - "versionName": "1.0.0", - "outputFile": "app-debug.apk" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/outputs/flutter-apk/app-debug.apk b/Tracking/rudra_app/build/app/outputs/flutter-apk/app-debug.apk deleted file mode 100644 index f8332c9a..00000000 Binary files a/Tracking/rudra_app/build/app/outputs/flutter-apk/app-debug.apk and /dev/null differ diff --git a/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk b/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk deleted file mode 100644 index f8332c9a..00000000 Binary files a/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk and /dev/null differ diff --git a/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk.sha1 b/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk.sha1 deleted file mode 100644 index 6ea5a6b3..00000000 --- a/Tracking/rudra_app/build/app/outputs/flutter-apk/app.apk.sha1 +++ /dev/null @@ -1 +0,0 @@ -578dcad489c6c54551e1069403a967b3bad774af \ No newline at end of file diff --git a/Tracking/rudra_app/build/app/outputs/logs/manifest-merger-debug-report.txt b/Tracking/rudra_app/build/app/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index c74f7f8c..00000000 --- a/Tracking/rudra_app/build/app/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,189 +0,0 @@ --- Merging decision tree log --- -application -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:25:4-55:19 -MERGED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:24:5-31:19 -MERGED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:24:5-31:19 -MERGED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:24:5-89 -MERGED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:24:5-89 -MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\884708a9396f81808c0ac10f4b98ea32\versionedparcelable-1.1.1\AndroidManifest.xml:24:5-25:19 -MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\884708a9396f81808c0ac10f4b98ea32\versionedparcelable-1.1.1\AndroidManifest.xml:24:5-25:19 - android:appComponentFactory - ADDED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:24:18-86 - android:name - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml -manifest -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 -MERGED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:2:1-12:12 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:2:1-11:12 -MERGED from [androidx.window:window-java:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ad201fac15a88598107ec645f351f5b4\jetified-window-java-1.0.0-beta04\AndroidManifest.xml:17:1-23:12 -MERGED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:17:1-33:12 -MERGED from [androidx.appcompat:appcompat:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\536a0e6924fd14451ea0f47abf81ff76\appcompat-1.3.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.fragment:fragment:1.3.4] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d9ac4f576feffd2558f0cc20fbb942d\fragment-1.3.4\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.activity:activity:1.2.3] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\eeafb259c81cec61cfc15dcc1f30d062\jetified-activity-1.2.3\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.appcompat:appcompat-resources:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\2efc05e976be65ba7f6f40769896581c\jetified-appcompat-resources-1.3.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.drawerlayout:drawerlayout:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\09c1773ed3597f8bec6064dc26d157be\drawerlayout-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.viewpager:viewpager:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ae39e38aa58f5c391f29a4bfad4a41a4\viewpager-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.loader:loader:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\92d1f830d8a4f76d15ea1f849fb6f29f\loader-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.vectordrawable:vectordrawable-animated:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\61fd575f974e3d768efc2f6a143e0eae\vectordrawable-animated-1.1.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.vectordrawable:vectordrawable:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\986216458f3c0df423ee68e7f1177976\vectordrawable-1.1.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.customview:customview:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ccab238727e236e8aff01a0f95cebe4\customview-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:17:1-26:12 -MERGED from [androidx.lifecycle:lifecycle-runtime:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8578375fbf5df5bbe65cca21a6cd6acf\lifecycle-runtime-2.3.1\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ac36d2f5b16183d06412574790e770da\jetified-lifecycle-viewmodel-savedstate-2.3.1\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.savedstate:savedstate:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\1f318d44f7cc290e64a3a0110f6d1b61\jetified-savedstate-1.1.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.lifecycle:lifecycle-livedata:2.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8108bc8c5f35a568f919dbab3be0e175\lifecycle-livedata-2.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d73be0136932816dbee106487237cd9\lifecycle-livedata-core-2.3.1\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.tracing:tracing:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\6c6575c923e75933616af1a602db32e0\jetified-tracing-1.0.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.cursoradapter:cursoradapter:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\69ba5a98805d81d755806668ff70d04f\cursoradapter-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\42acb13871cd74f812098a2f4b7b2625\lifecycle-viewmodel-2.3.1\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\884708a9396f81808c0ac10f4b98ea32\versionedparcelable-1.1.1\AndroidManifest.xml:17:1-27:12 -MERGED from [androidx.arch.core:core-runtime:2.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\16e110bf603f94cf61f970a18f3907e3\core-runtime-2.1.0\AndroidManifest.xml:17:1-24:12 -MERGED from [androidx.interpolator:interpolator:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ed314abc3df537a2d48c1cb6d65998e\interpolator-1.0.0\AndroidManifest.xml:17:1-22:12 -MERGED from [androidx.annotation:annotation-experimental:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\5bfc0955e244073bdc8cc139cda5e092\jetified-annotation-experimental-1.1.0\AndroidManifest.xml:17:1-24:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:1:1-7:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:1:1-7:12 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:1:1-7:12 - package - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:2:5-36 - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml - android:versionName - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml - android:versionCode - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:1-56:12 - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml - xmlns:android - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.BLUETOOTH -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:4:5-5:38 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:7:5-68 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:7:5-68 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:7:5-68 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:7:5-68 - android:maxSdkVersion - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:5:9-35 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:4:22-65 -uses-permission#android.permission.BLUETOOTH_ADMIN -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:6:5-7:38 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:8:5-74 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:8:5-74 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:8:5-74 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:8:5-74 - android:maxSdkVersion - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:7:9-35 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:6:22-71 -uses-permission#android.permission.BLUETOOTH_SCAN -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:13:5-73 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:13:22-70 -uses-permission#android.permission.BLUETOOTH_ADVERTISE -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:17:5-78 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:17:22-75 -uses-permission#android.permission.BLUETOOTH_CONNECT -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:21:5-76 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:21:22-73 -uses-permission#android.permission.ACCESS_FINE_LOCATION -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:24:5-79 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:10:5-79 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:10:5-79 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:9:5-79 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:9:5-79 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml:24:22-76 -uses-sdk -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:5:5-44 -MERGED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:5:5-44 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:5:5-44 -MERGED from [:flutter_blue] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_blue\intermediates\library_manifest\debug\AndroidManifest.xml:5:5-44 -MERGED from [androidx.window:window-java:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ad201fac15a88598107ec645f351f5b4\jetified-window-java-1.0.0-beta04\AndroidManifest.xml:19:5-21:41 -MERGED from [androidx.window:window-java:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ad201fac15a88598107ec645f351f5b4\jetified-window-java-1.0.0-beta04\AndroidManifest.xml:19:5-21:41 -MERGED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.appcompat:appcompat:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\536a0e6924fd14451ea0f47abf81ff76\appcompat-1.3.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.appcompat:appcompat:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\536a0e6924fd14451ea0f47abf81ff76\appcompat-1.3.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.fragment:fragment:1.3.4] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d9ac4f576feffd2558f0cc20fbb942d\fragment-1.3.4\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.fragment:fragment:1.3.4] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d9ac4f576feffd2558f0cc20fbb942d\fragment-1.3.4\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.activity:activity:1.2.3] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\eeafb259c81cec61cfc15dcc1f30d062\jetified-activity-1.2.3\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.activity:activity:1.2.3] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\eeafb259c81cec61cfc15dcc1f30d062\jetified-activity-1.2.3\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.appcompat:appcompat-resources:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\2efc05e976be65ba7f6f40769896581c\jetified-appcompat-resources-1.3.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.appcompat:appcompat-resources:1.3.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\2efc05e976be65ba7f6f40769896581c\jetified-appcompat-resources-1.3.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.drawerlayout:drawerlayout:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\09c1773ed3597f8bec6064dc26d157be\drawerlayout-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.drawerlayout:drawerlayout:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\09c1773ed3597f8bec6064dc26d157be\drawerlayout-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.viewpager:viewpager:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ae39e38aa58f5c391f29a4bfad4a41a4\viewpager-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.viewpager:viewpager:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ae39e38aa58f5c391f29a4bfad4a41a4\viewpager-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.loader:loader:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\92d1f830d8a4f76d15ea1f849fb6f29f\loader-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.loader:loader:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\92d1f830d8a4f76d15ea1f849fb6f29f\loader-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.vectordrawable:vectordrawable-animated:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\61fd575f974e3d768efc2f6a143e0eae\vectordrawable-animated-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.vectordrawable:vectordrawable-animated:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\61fd575f974e3d768efc2f6a143e0eae\vectordrawable-animated-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.vectordrawable:vectordrawable:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\986216458f3c0df423ee68e7f1177976\vectordrawable-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.vectordrawable:vectordrawable:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\986216458f3c0df423ee68e7f1177976\vectordrawable-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.customview:customview:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ccab238727e236e8aff01a0f95cebe4\customview-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.customview:customview:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ccab238727e236e8aff01a0f95cebe4\customview-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.core:core:1.6.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\122df2e57d294d1a53db26bbc3b813c1\core-1.6.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-runtime:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8578375fbf5df5bbe65cca21a6cd6acf\lifecycle-runtime-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-runtime:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8578375fbf5df5bbe65cca21a6cd6acf\lifecycle-runtime-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ac36d2f5b16183d06412574790e770da\jetified-lifecycle-viewmodel-savedstate-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\ac36d2f5b16183d06412574790e770da\jetified-lifecycle-viewmodel-savedstate-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.savedstate:savedstate:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\1f318d44f7cc290e64a3a0110f6d1b61\jetified-savedstate-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.savedstate:savedstate:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\1f318d44f7cc290e64a3a0110f6d1b61\jetified-savedstate-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-livedata:2.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8108bc8c5f35a568f919dbab3be0e175\lifecycle-livedata-2.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.lifecycle:lifecycle-livedata:2.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8108bc8c5f35a568f919dbab3be0e175\lifecycle-livedata-2.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d73be0136932816dbee106487237cd9\lifecycle-livedata-core-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-livedata-core:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\8d73be0136932816dbee106487237cd9\lifecycle-livedata-core-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.tracing:tracing:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\6c6575c923e75933616af1a602db32e0\jetified-tracing-1.0.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.tracing:tracing:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\6c6575c923e75933616af1a602db32e0\jetified-tracing-1.0.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.cursoradapter:cursoradapter:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\69ba5a98805d81d755806668ff70d04f\cursoradapter-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.cursoradapter:cursoradapter:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\69ba5a98805d81d755806668ff70d04f\cursoradapter-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\42acb13871cd74f812098a2f4b7b2625\lifecycle-viewmodel-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.lifecycle:lifecycle-viewmodel:2.3.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\42acb13871cd74f812098a2f4b7b2625\lifecycle-viewmodel-2.3.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\884708a9396f81808c0ac10f4b98ea32\versionedparcelable-1.1.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.versionedparcelable:versionedparcelable:1.1.1] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\884708a9396f81808c0ac10f4b98ea32\versionedparcelable-1.1.1\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.arch.core:core-runtime:2.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\16e110bf603f94cf61f970a18f3907e3\core-runtime-2.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.arch.core:core-runtime:2.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\16e110bf603f94cf61f970a18f3907e3\core-runtime-2.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.interpolator:interpolator:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ed314abc3df537a2d48c1cb6d65998e\interpolator-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.interpolator:interpolator:1.0.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\9ed314abc3df537a2d48c1cb6d65998e\interpolator-1.0.0\AndroidManifest.xml:20:5-44 -MERGED from [androidx.annotation:annotation-experimental:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\5bfc0955e244073bdc8cc139cda5e092\jetified-annotation-experimental-1.1.0\AndroidManifest.xml:20:5-22:41 -MERGED from [androidx.annotation:annotation-experimental:1.1.0] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\5bfc0955e244073bdc8cc139cda5e092\jetified-annotation-experimental-1.1.0\AndroidManifest.xml:20:5-22:41 -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml -INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml - android:targetSdkVersion - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml - android:minSdkVersion - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\main\AndroidManifest.xml - INJECTED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml -uses-permission#android.permission.INTERNET -ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:6:5-66 - android:name - ADDED from C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\android\app\src\debug\AndroidManifest.xml:6:22-64 -uses-permission#android.permission.ACCESS_COARSE_LOCATION -ADDED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:9:5-81 - android:name - ADDED from [:flutter_bluetooth_serial] C:\Computer\Git Repositories\Rudra\Tracking\rudra_app\build\flutter_bluetooth_serial\intermediates\library_manifest\debug\AndroidManifest.xml:9:22-78 -uses-library#androidx.window.extensions -ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:25:9-27:40 - android:required - ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:27:13-37 - android:name - ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:26:13-54 -uses-library#androidx.window.sidecar -ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:28:9-30:40 - android:required - ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:30:13-37 - android:name - ADDED from [androidx.window:window:1.0.0-beta04] C:\Users\sukri\.gradle\caches\transforms-2\files-2.1\03c633e46d75bfb21f082f0417f55161\jetified-window-1.0.0-beta04\AndroidManifest.xml:29:13-51 diff --git a/Tracking/rudra_app/build/app/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt b/Tracking/rudra_app/build/app/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt deleted file mode 100644 index f67db424..00000000 --- a/Tracking/rudra_app/build/app/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +++ /dev/null @@ -1,6 +0,0 @@ -io/flutter/plugins/GeneratedPluginRegistrant.java - io.flutter.plugins.GeneratedPluginRegistrant -com/example/rudra_app/BuildConfig.java - com.example.rudra_app.BuildConfig -com/example/rudra_app/MainActivity.java - com.example.rudra_app.MainActivity diff --git a/Tracking/rudra_app/build/app/tmp/packLibsflutterBuildDebug/MANIFEST.MF b/Tracking/rudra_app/build/app/tmp/packLibsflutterBuildDebug/MANIFEST.MF deleted file mode 100644 index 59499bce..00000000 --- a/Tracking/rudra_app/build/app/tmp/packLibsflutterBuildDebug/MANIFEST.MF +++ /dev/null @@ -1,2 +0,0 @@ -Manifest-Version: 1.0 - diff --git a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/_composite.stamp b/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/_composite.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/_composite.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_dart_plugin_registrant.stamp b/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_dart_plugin_registrant.stamp deleted file mode 100644 index be5876e9..00000000 --- a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_dart_plugin_registrant.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":["C:\\Computer\\Git Repositories\\Rudra\\Tracking\\rudra_app\\.dart_tool\\package_config_subset"],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_localizations.stamp b/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_localizations.stamp deleted file mode 100644 index 1b2d28c4..00000000 --- a/Tracking/rudra_app/build/fc0281becba8d246e611a64afddd4785/gen_localizations.stamp +++ /dev/null @@ -1 +0,0 @@ -{"inputs":[],"outputs":[]} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d.bin b/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d.bin deleted file mode 100644 index 0d259ddc..00000000 --- a/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d/classes/classes.dex b/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d/classes/classes.dex deleted file mode 100644 index ac5c9773..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/.transforms/ea5bd8a7b9b6e0fe2b8de6dcbd76615d/classes/classes.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/any.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/any.proto deleted file mode 100644 index c9be8541..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/any.proto +++ /dev/null @@ -1,155 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option go_package = "github.com/golang/protobuf/ptypes/any"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "AnyProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; - -// `Any` contains an arbitrary serialized protocol buffer message along with a -// URL that describes the type of the serialized message. -// -// Protobuf library provides support to pack/unpack Any values in the form -// of utility functions or additional generated methods of the Any type. -// -// Example 1: Pack and unpack a message in C++. -// -// Foo foo = ...; -// Any any; -// any.PackFrom(foo); -// ... -// if (any.UnpackTo(&foo)) { -// ... -// } -// -// Example 2: Pack and unpack a message in Java. -// -// Foo foo = ...; -// Any any = Any.pack(foo); -// ... -// if (any.is(Foo.class)) { -// foo = any.unpack(Foo.class); -// } -// -// Example 3: Pack and unpack a message in Python. -// -// foo = Foo(...) -// any = Any() -// any.Pack(foo) -// ... -// if any.Is(Foo.DESCRIPTOR): -// any.Unpack(foo) -// ... -// -// Example 4: Pack and unpack a message in Go -// -// foo := &pb.Foo{...} -// any, err := ptypes.MarshalAny(foo) -// ... -// foo := &pb.Foo{} -// if err := ptypes.UnmarshalAny(any, foo); err != nil { -// ... -// } -// -// The pack methods provided by protobuf library will by default use -// 'type.googleapis.com/full.type.name' as the type URL and the unpack -// methods only use the fully qualified type name after the last '/' -// in the type URL, for example "foo.bar.com/x/y.z" will yield type -// name "y.z". -// -// -// JSON -// ==== -// The JSON representation of an `Any` value uses the regular -// representation of the deserialized, embedded message, with an -// additional field `@type` which contains the type URL. Example: -// -// package google.profile; -// message Person { -// string first_name = 1; -// string last_name = 2; -// } -// -// { -// "@type": "type.googleapis.com/google.profile.Person", -// "firstName": , -// "lastName": -// } -// -// If the embedded message type is well-known and has a custom JSON -// representation, that representation will be embedded adding a field -// `value` which holds the custom JSON in addition to the `@type` -// field. Example (for message [google.protobuf.Duration][]): -// -// { -// "@type": "type.googleapis.com/google.protobuf.Duration", -// "value": "1.212s" -// } -// -message Any { - // A URL/resource name that uniquely identifies the type of the serialized - // protocol buffer message. This string must contain at least - // one "/" character. The last segment of the URL's path must represent - // the fully qualified name of the type (as in - // `path/google.protobuf.Duration`). The name should be in a canonical form - // (e.g., leading "." is not accepted). - // - // In practice, teams usually precompile into the binary all types that they - // expect it to use in the context of Any. However, for URLs which use the - // scheme `http`, `https`, or no scheme, one can optionally set up a type - // server that maps type URLs to message definitions as follows: - // - // * If no scheme is provided, `https` is assumed. - // * An HTTP GET on the URL must yield a [google.protobuf.Type][] - // value in binary format, or produce an error. - // * Applications are allowed to cache lookup results based on the - // URL, or have them precompiled into a binary to avoid any - // lookup. Therefore, binary compatibility needs to be preserved - // on changes to types. (Use versioned type names to manage - // breaking changes.) - // - // Note: this functionality is not currently available in the official - // protobuf release, and it is not used for type URLs beginning with - // type.googleapis.com. - // - // Schemes other than `http`, `https` (or the empty scheme) might be - // used with implementation specific semantics. - // - string type_url = 1; - - // Must be a valid serialized protocol buffer of the above specified type. - bytes value = 2; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/api.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/api.proto deleted file mode 100644 index f37ee2fa..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/api.proto +++ /dev/null @@ -1,210 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -import "google/protobuf/source_context.proto"; -import "google/protobuf/type.proto"; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "ApiProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; -option go_package = "google.golang.org/genproto/protobuf/api;api"; - -// Api is a light-weight descriptor for an API Interface. -// -// Interfaces are also described as "protocol buffer services" in some contexts, -// such as by the "service" keyword in a .proto file, but they are different -// from API Services, which represent a concrete implementation of an interface -// as opposed to simply a description of methods and bindings. They are also -// sometimes simply referred to as "APIs" in other contexts, such as the name of -// this message itself. See https://cloud.google.com/apis/design/glossary for -// detailed terminology. -message Api { - - // The fully qualified name of this interface, including package name - // followed by the interface's simple name. - string name = 1; - - // The methods of this interface, in unspecified order. - repeated Method methods = 2; - - // Any metadata attached to the interface. - repeated Option options = 3; - - // A version string for this interface. If specified, must have the form - // `major-version.minor-version`, as in `1.10`. If the minor version is - // omitted, it defaults to zero. If the entire version field is empty, the - // major version is derived from the package name, as outlined below. If the - // field is not empty, the version in the package name will be verified to be - // consistent with what is provided here. - // - // The versioning schema uses [semantic - // versioning](http://semver.org) where the major version number - // indicates a breaking change and the minor version an additive, - // non-breaking change. Both version numbers are signals to users - // what to expect from different versions, and should be carefully - // chosen based on the product plan. - // - // The major version is also reflected in the package name of the - // interface, which must end in `v`, as in - // `google.feature.v1`. For major versions 0 and 1, the suffix can - // be omitted. Zero major versions must only be used for - // experimental, non-GA interfaces. - // - // - string version = 4; - - // Source context for the protocol buffer service represented by this - // message. - SourceContext source_context = 5; - - // Included interfaces. See [Mixin][]. - repeated Mixin mixins = 6; - - // The source syntax of the service. - Syntax syntax = 7; -} - -// Method represents a method of an API interface. -message Method { - - // The simple name of this method. - string name = 1; - - // A URL of the input message type. - string request_type_url = 2; - - // If true, the request is streamed. - bool request_streaming = 3; - - // The URL of the output message type. - string response_type_url = 4; - - // If true, the response is streamed. - bool response_streaming = 5; - - // Any metadata attached to the method. - repeated Option options = 6; - - // The source syntax of this method. - Syntax syntax = 7; -} - -// Declares an API Interface to be included in this interface. The including -// interface must redeclare all the methods from the included interface, but -// documentation and options are inherited as follows: -// -// - If after comment and whitespace stripping, the documentation -// string of the redeclared method is empty, it will be inherited -// from the original method. -// -// - Each annotation belonging to the service config (http, -// visibility) which is not set in the redeclared method will be -// inherited. -// -// - If an http annotation is inherited, the path pattern will be -// modified as follows. Any version prefix will be replaced by the -// version of the including interface plus the [root][] path if -// specified. -// -// Example of a simple mixin: -// -// package google.acl.v1; -// service AccessControl { -// // Get the underlying ACL object. -// rpc GetAcl(GetAclRequest) returns (Acl) { -// option (google.api.http).get = "/v1/{resource=**}:getAcl"; -// } -// } -// -// package google.storage.v2; -// service Storage { -// rpc GetAcl(GetAclRequest) returns (Acl); -// -// // Get a data record. -// rpc GetData(GetDataRequest) returns (Data) { -// option (google.api.http).get = "/v2/{resource=**}"; -// } -// } -// -// Example of a mixin configuration: -// -// apis: -// - name: google.storage.v2.Storage -// mixins: -// - name: google.acl.v1.AccessControl -// -// The mixin construct implies that all methods in `AccessControl` are -// also declared with same name and request/response types in -// `Storage`. A documentation generator or annotation processor will -// see the effective `Storage.GetAcl` method after inherting -// documentation and annotations as follows: -// -// service Storage { -// // Get the underlying ACL object. -// rpc GetAcl(GetAclRequest) returns (Acl) { -// option (google.api.http).get = "/v2/{resource=**}:getAcl"; -// } -// ... -// } -// -// Note how the version in the path pattern changed from `v1` to `v2`. -// -// If the `root` field in the mixin is specified, it should be a -// relative path under which inherited HTTP paths are placed. Example: -// -// apis: -// - name: google.storage.v2.Storage -// mixins: -// - name: google.acl.v1.AccessControl -// root: acls -// -// This implies the following inherited HTTP annotation: -// -// service Storage { -// // Get the underlying ACL object. -// rpc GetAcl(GetAclRequest) returns (Acl) { -// option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; -// } -// ... -// } -message Mixin { - // The fully qualified name of the interface which is included. - string name = 1; - - // If non-empty specifies a path under which inherited HTTP paths - // are rooted. - string root = 2; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/empty.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/empty.proto deleted file mode 100644 index 03cacd23..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/empty.proto +++ /dev/null @@ -1,52 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option go_package = "github.com/golang/protobuf/ptypes/empty"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "EmptyProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; -option cc_enable_arenas = true; - -// A generic empty message that you can re-use to avoid defining duplicated -// empty messages in your APIs. A typical example is to use it as the request -// or the response type of an API method. For instance: -// -// service Foo { -// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); -// } -// -// The JSON representation for `Empty` is empty JSON object `{}`. -message Empty {} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/field_mask.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/field_mask.proto deleted file mode 100644 index baac8744..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/field_mask.proto +++ /dev/null @@ -1,245 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "FieldMaskProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; -option go_package = "google.golang.org/genproto/protobuf/field_mask;field_mask"; -option cc_enable_arenas = true; - -// `FieldMask` represents a set of symbolic field paths, for example: -// -// paths: "f.a" -// paths: "f.b.d" -// -// Here `f` represents a field in some root message, `a` and `b` -// fields in the message found in `f`, and `d` a field found in the -// message in `f.b`. -// -// Field masks are used to specify a subset of fields that should be -// returned by a get operation or modified by an update operation. -// Field masks also have a custom JSON encoding (see below). -// -// # Field Masks in Projections -// -// When used in the context of a projection, a response message or -// sub-message is filtered by the API to only contain those fields as -// specified in the mask. For example, if the mask in the previous -// example is applied to a response message as follows: -// -// f { -// a : 22 -// b { -// d : 1 -// x : 2 -// } -// y : 13 -// } -// z: 8 -// -// The result will not contain specific values for fields x,y and z -// (their value will be set to the default, and omitted in proto text -// output): -// -// -// f { -// a : 22 -// b { -// d : 1 -// } -// } -// -// A repeated field is not allowed except at the last position of a -// paths string. -// -// If a FieldMask object is not present in a get operation, the -// operation applies to all fields (as if a FieldMask of all fields -// had been specified). -// -// Note that a field mask does not necessarily apply to the -// top-level response message. In case of a REST get operation, the -// field mask applies directly to the response, but in case of a REST -// list operation, the mask instead applies to each individual message -// in the returned resource list. In case of a REST custom method, -// other definitions may be used. Where the mask applies will be -// clearly documented together with its declaration in the API. In -// any case, the effect on the returned resource/resources is required -// behavior for APIs. -// -// # Field Masks in Update Operations -// -// A field mask in update operations specifies which fields of the -// targeted resource are going to be updated. The API is required -// to only change the values of the fields as specified in the mask -// and leave the others untouched. If a resource is passed in to -// describe the updated values, the API ignores the values of all -// fields not covered by the mask. -// -// If a repeated field is specified for an update operation, new values will -// be appended to the existing repeated field in the target resource. Note that -// a repeated field is only allowed in the last position of a `paths` string. -// -// If a sub-message is specified in the last position of the field mask for an -// update operation, then new value will be merged into the existing sub-message -// in the target resource. -// -// For example, given the target message: -// -// f { -// b { -// d: 1 -// x: 2 -// } -// c: [1] -// } -// -// And an update message: -// -// f { -// b { -// d: 10 -// } -// c: [2] -// } -// -// then if the field mask is: -// -// paths: ["f.b", "f.c"] -// -// then the result will be: -// -// f { -// b { -// d: 10 -// x: 2 -// } -// c: [1, 2] -// } -// -// An implementation may provide options to override this default behavior for -// repeated and message fields. -// -// In order to reset a field's value to the default, the field must -// be in the mask and set to the default value in the provided resource. -// Hence, in order to reset all fields of a resource, provide a default -// instance of the resource and set all fields in the mask, or do -// not provide a mask as described below. -// -// If a field mask is not present on update, the operation applies to -// all fields (as if a field mask of all fields has been specified). -// Note that in the presence of schema evolution, this may mean that -// fields the client does not know and has therefore not filled into -// the request will be reset to their default. If this is unwanted -// behavior, a specific service may require a client to always specify -// a field mask, producing an error if not. -// -// As with get operations, the location of the resource which -// describes the updated values in the request message depends on the -// operation kind. In any case, the effect of the field mask is -// required to be honored by the API. -// -// ## Considerations for HTTP REST -// -// The HTTP kind of an update operation which uses a field mask must -// be set to PATCH instead of PUT in order to satisfy HTTP semantics -// (PUT must only be used for full updates). -// -// # JSON Encoding of Field Masks -// -// In JSON, a field mask is encoded as a single string where paths are -// separated by a comma. Fields name in each path are converted -// to/from lower-camel naming conventions. -// -// As an example, consider the following message declarations: -// -// message Profile { -// User user = 1; -// Photo photo = 2; -// } -// message User { -// string display_name = 1; -// string address = 2; -// } -// -// In proto a field mask for `Profile` may look as such: -// -// mask { -// paths: "user.display_name" -// paths: "photo" -// } -// -// In JSON, the same mask is represented as below: -// -// { -// mask: "user.displayName,photo" -// } -// -// # Field Masks and Oneof Fields -// -// Field masks treat fields in oneofs just as regular fields. Consider the -// following message: -// -// message SampleMessage { -// oneof test_oneof { -// string name = 4; -// SubMessage sub_message = 9; -// } -// } -// -// The field mask can be: -// -// mask { -// paths: "name" -// } -// -// Or: -// -// mask { -// paths: "sub_message" -// } -// -// Note that oneof type names ("test_oneof" in this case) cannot be used in -// paths. -// -// ## Field Mask Verification -// -// The implementation of any API method which has a FieldMask type field in the -// request should verify the included field paths, and return an -// `INVALID_ARGUMENT` error if any path is unmappable. -message FieldMask { - // The set of field mask paths. - repeated string paths = 1; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/source_context.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/source_context.proto deleted file mode 100644 index f3b2c966..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/source_context.proto +++ /dev/null @@ -1,48 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "SourceContextProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; -option go_package = "google.golang.org/genproto/protobuf/source_context;source_context"; - -// `SourceContext` represents information about the source of a -// protobuf element, like the file in which it is defined. -message SourceContext { - // The path-qualified name of the .proto file that contained the associated - // protobuf element. For example: `"google/protobuf/source_context.proto"`. - string file_name = 1; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/struct.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/struct.proto deleted file mode 100644 index ed990e31..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/struct.proto +++ /dev/null @@ -1,95 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option cc_enable_arenas = true; -option go_package = "github.com/golang/protobuf/ptypes/struct;structpb"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "StructProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; - -// `Struct` represents a structured data value, consisting of fields -// which map to dynamically typed values. In some languages, `Struct` -// might be supported by a native representation. For example, in -// scripting languages like JS a struct is represented as an -// object. The details of that representation are described together -// with the proto support for the language. -// -// The JSON representation for `Struct` is JSON object. -message Struct { - // Unordered map of dynamically typed values. - map fields = 1; -} - -// `Value` represents a dynamically typed value which can be either -// null, a number, a string, a boolean, a recursive struct value, or a -// list of values. A producer of value is expected to set one of that -// variants, absence of any variant indicates an error. -// -// The JSON representation for `Value` is JSON value. -message Value { - // The kind of value. - oneof kind { - // Represents a null value. - NullValue null_value = 1; - // Represents a double value. - double number_value = 2; - // Represents a string value. - string string_value = 3; - // Represents a boolean value. - bool bool_value = 4; - // Represents a structured value. - Struct struct_value = 5; - // Represents a repeated `Value`. - ListValue list_value = 6; - } -} - -// `NullValue` is a singleton enumeration to represent the null value for the -// `Value` type union. -// -// The JSON representation for `NullValue` is JSON `null`. -enum NullValue { - // Null value. - NULL_VALUE = 0; -} - -// `ListValue` is a wrapper around a repeated field of values. -// -// The JSON representation for `ListValue` is JSON array. -message ListValue { - // Repeated field of dynamically typed values. - repeated Value values = 1; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/timestamp.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/timestamp.proto deleted file mode 100644 index cd357864..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/timestamp.proto +++ /dev/null @@ -1,138 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option cc_enable_arenas = true; -option go_package = "github.com/golang/protobuf/ptypes/timestamp"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "TimestampProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; - -// A Timestamp represents a point in time independent of any time zone or local -// calendar, encoded as a count of seconds and fractions of seconds at -// nanosecond resolution. The count is relative to an epoch at UTC midnight on -// January 1, 1970, in the proleptic Gregorian calendar which extends the -// Gregorian calendar backwards to year one. -// -// All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap -// second table is needed for interpretation, using a [24-hour linear -// smear](https://developers.google.com/time/smear). -// -// The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By -// restricting to that range, we ensure that we can convert to and from [RFC -// 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings. -// -// # Examples -// -// Example 1: Compute Timestamp from POSIX `time()`. -// -// Timestamp timestamp; -// timestamp.set_seconds(time(NULL)); -// timestamp.set_nanos(0); -// -// Example 2: Compute Timestamp from POSIX `gettimeofday()`. -// -// struct timeval tv; -// gettimeofday(&tv, NULL); -// -// Timestamp timestamp; -// timestamp.set_seconds(tv.tv_sec); -// timestamp.set_nanos(tv.tv_usec * 1000); -// -// Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. -// -// FILETIME ft; -// GetSystemTimeAsFileTime(&ft); -// UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; -// -// // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z -// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. -// Timestamp timestamp; -// timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); -// timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); -// -// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. -// -// long millis = System.currentTimeMillis(); -// -// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) -// .setNanos((int) ((millis % 1000) * 1000000)).build(); -// -// -// Example 5: Compute Timestamp from current time in Python. -// -// timestamp = Timestamp() -// timestamp.GetCurrentTime() -// -// # JSON Mapping -// -// In JSON format, the Timestamp type is encoded as a string in the -// [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the -// format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" -// where {year} is always expressed using four digits while {month}, {day}, -// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional -// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), -// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone -// is required. A proto3 JSON serializer should always use UTC (as indicated by -// "Z") when printing the Timestamp type and a proto3 JSON parser should be -// able to accept both UTC and other timezones (as indicated by an offset). -// -// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past -// 01:30 UTC on January 15, 2017. -// -// In JavaScript, one can convert a Date object to this format using the -// standard -// [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) -// method. In Python, a standard `datetime.datetime` object can be converted -// to this format using -// [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with -// the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use -// the Joda Time's [`ISODateTimeFormat.dateTime()`]( -// http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D -// ) to obtain a formatter capable of generating timestamps in this format. -// -// -message Timestamp { - // Represents seconds of UTC time since Unix epoch - // 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to - // 9999-12-31T23:59:59Z inclusive. - int64 seconds = 1; - - // Non-negative fractions of a second at nanosecond resolution. Negative - // second values with fractions must still have non-negative nanos values - // that count forward in time. Must be from 0 to 999,999,999 - // inclusive. - int32 nanos = 2; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/type.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/type.proto deleted file mode 100644 index e4b1d3a4..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/type.proto +++ /dev/null @@ -1,187 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto3"; - -package google.protobuf; - -import "google/protobuf/any.proto"; -import "google/protobuf/source_context.proto"; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option cc_enable_arenas = true; -option java_package = "com.google.protobuf"; -option java_outer_classname = "TypeProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; -option go_package = "google.golang.org/genproto/protobuf/ptype;ptype"; - -// A protocol buffer message type. -message Type { - // The fully qualified message name. - string name = 1; - // The list of fields. - repeated Field fields = 2; - // The list of types appearing in `oneof` definitions in this type. - repeated string oneofs = 3; - // The protocol buffer options. - repeated Option options = 4; - // The source context. - SourceContext source_context = 5; - // The source syntax. - Syntax syntax = 6; -} - -// A single field of a message type. -message Field { - // Basic field types. - enum Kind { - // Field type unknown. - TYPE_UNKNOWN = 0; - // Field type double. - TYPE_DOUBLE = 1; - // Field type float. - TYPE_FLOAT = 2; - // Field type int64. - TYPE_INT64 = 3; - // Field type uint64. - TYPE_UINT64 = 4; - // Field type int32. - TYPE_INT32 = 5; - // Field type fixed64. - TYPE_FIXED64 = 6; - // Field type fixed32. - TYPE_FIXED32 = 7; - // Field type bool. - TYPE_BOOL = 8; - // Field type string. - TYPE_STRING = 9; - // Field type group. Proto2 syntax only, and deprecated. - TYPE_GROUP = 10; - // Field type message. - TYPE_MESSAGE = 11; - // Field type bytes. - TYPE_BYTES = 12; - // Field type uint32. - TYPE_UINT32 = 13; - // Field type enum. - TYPE_ENUM = 14; - // Field type sfixed32. - TYPE_SFIXED32 = 15; - // Field type sfixed64. - TYPE_SFIXED64 = 16; - // Field type sint32. - TYPE_SINT32 = 17; - // Field type sint64. - TYPE_SINT64 = 18; - } - - // Whether a field is optional, required, or repeated. - enum Cardinality { - // For fields with unknown cardinality. - CARDINALITY_UNKNOWN = 0; - // For optional fields. - CARDINALITY_OPTIONAL = 1; - // For required fields. Proto2 syntax only. - CARDINALITY_REQUIRED = 2; - // For repeated fields. - CARDINALITY_REPEATED = 3; - }; - - // The field type. - Kind kind = 1; - // The field cardinality. - Cardinality cardinality = 2; - // The field number. - int32 number = 3; - // The field name. - string name = 4; - // The field type URL, without the scheme, for message or enumeration - // types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. - string type_url = 6; - // The index of the field type in `Type.oneofs`, for message or enumeration - // types. The first type has index 1; zero means the type is not in the list. - int32 oneof_index = 7; - // Whether to use alternative packed wire representation. - bool packed = 8; - // The protocol buffer options. - repeated Option options = 9; - // The field JSON name. - string json_name = 10; - // The string value of the default value of this field. Proto2 syntax only. - string default_value = 11; -} - -// Enum type definition. -message Enum { - // Enum type name. - string name = 1; - // Enum value definitions. - repeated EnumValue enumvalue = 2; - // Protocol buffer options. - repeated Option options = 3; - // The source context. - SourceContext source_context = 4; - // The source syntax. - Syntax syntax = 5; -} - -// Enum value definition. -message EnumValue { - // Enum value name. - string name = 1; - // Enum value number. - int32 number = 2; - // Protocol buffer options. - repeated Option options = 3; -} - -// A protocol buffer option, which can be attached to a message, field, -// enumeration, etc. -message Option { - // The option's name. For protobuf built-in options (options defined in - // descriptor.proto), this is the short name. For example, `"map_entry"`. - // For custom options, it should be the fully-qualified name. For example, - // `"google.api.http"`. - string name = 1; - // The option's value packed in an Any message. If the value is a primitive, - // the corresponding wrapper type defined in google/protobuf/wrappers.proto - // should be used. If the value is an enum, it should be stored as an int32 - // value using the google.protobuf.Int32Value type. - Any value = 2; -} - -// The syntax in which a protocol buffer element is defined. -enum Syntax { - // Syntax `proto2`. - SYNTAX_PROTO2 = 0; - // Syntax `proto3`. - SYNTAX_PROTO3 = 1; -} diff --git a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/wrappers.proto b/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/wrappers.proto deleted file mode 100644 index 9ee41e38..00000000 --- a/Tracking/rudra_app/build/flutter_blue/extracted-include-protos/debug/google/protobuf/wrappers.proto +++ /dev/null @@ -1,123 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Wrappers for primitive (non-message) types. These types are useful -// for embedding primitives in the `google.protobuf.Any` type and for places -// where we need to distinguish between the absence of a primitive -// typed field and its default value. -// -// These wrappers have no meaningful use within repeated fields as they lack -// the ability to detect presence on individual elements. -// These wrappers have no meaningful use within a map or a oneof since -// individual entries of a map or fields of a oneof can already detect presence. - -syntax = "proto3"; - -package google.protobuf; - -option csharp_namespace = "Google.Protobuf.WellKnownTypes"; -option cc_enable_arenas = true; -option go_package = "github.com/golang/protobuf/ptypes/wrappers"; -option java_package = "com.google.protobuf"; -option java_outer_classname = "WrappersProto"; -option java_multiple_files = true; -option objc_class_prefix = "GPB"; - -// Wrapper message for `double`. -// -// The JSON representation for `DoubleValue` is JSON number. -message DoubleValue { - // The double value. - double value = 1; -} - -// Wrapper message for `float`. -// -// The JSON representation for `FloatValue` is JSON number. -message FloatValue { - // The float value. - float value = 1; -} - -// Wrapper message for `int64`. -// -// The JSON representation for `Int64Value` is JSON string. -message Int64Value { - // The int64 value. - int64 value = 1; -} - -// Wrapper message for `uint64`. -// -// The JSON representation for `UInt64Value` is JSON string. -message UInt64Value { - // The uint64 value. - uint64 value = 1; -} - -// Wrapper message for `int32`. -// -// The JSON representation for `Int32Value` is JSON number. -message Int32Value { - // The int32 value. - int32 value = 1; -} - -// Wrapper message for `uint32`. -// -// The JSON representation for `UInt32Value` is JSON number. -message UInt32Value { - // The uint32 value. - uint32 value = 1; -} - -// Wrapper message for `bool`. -// -// The JSON representation for `BoolValue` is JSON `true` and `false`. -message BoolValue { - // The bool value. - bool value = 1; -} - -// Wrapper message for `string`. -// -// The JSON representation for `StringValue` is JSON string. -message StringValue { - // The string value. - string value = 1; -} - -// Wrapper message for `bytes`. -// -// The JSON representation for `BytesValue` is JSON string. -message BytesValue { - // The bytes value. - bytes value = 1; -} diff --git a/Tracking/rudra_app/build/flutter_blue/generated/source/buildConfig/debug/com/pauldemarco/flutter_blue/BuildConfig.java b/Tracking/rudra_app/build/flutter_blue/generated/source/buildConfig/debug/com/pauldemarco/flutter_blue/BuildConfig.java deleted file mode 100644 index 62e9f64c..00000000 --- a/Tracking/rudra_app/build/flutter_blue/generated/source/buildConfig/debug/com/pauldemarco/flutter_blue/BuildConfig.java +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package com.pauldemarco.flutter_blue; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "com.pauldemarco.flutter_blue"; - public static final String BUILD_TYPE = "debug"; -} diff --git a/Tracking/rudra_app/build/flutter_blue/generated/source/proto/debug/java/com/pauldemarco/flutter_blue/Protos.java b/Tracking/rudra_app/build/flutter_blue/generated/source/proto/debug/java/com/pauldemarco/flutter_blue/Protos.java deleted file mode 100644 index 24c9b7bb..00000000 --- a/Tracking/rudra_app/build/flutter_blue/generated/source/proto/debug/java/com/pauldemarco/flutter_blue/Protos.java +++ /dev/null @@ -1,16034 +0,0 @@ -// Generated by the protocol buffer compiler. DO NOT EDIT! -// source: flutterblue.proto - -package com.pauldemarco.flutter_blue; - -public final class Protos { - private Protos() {} - public static void registerAllExtensions( - com.google.protobuf.ExtensionRegistryLite registry) { - } - public interface Int32ValueOrBuilder extends - // @@protoc_insertion_point(interface_extends:Int32Value) - com.google.protobuf.MessageLiteOrBuilder { - - /** - *
-     * The int32 value.
-     * 
- * - * int32 value = 1; - * @return The value. - */ - int getValue(); - } - /** - *
-   * Wrapper message for `int32`.
-   * Allows for nullability of fields in messages
-   * 
- * - * Protobuf type {@code Int32Value} - */ - public static final class Int32Value extends - com.google.protobuf.GeneratedMessageLite< - Int32Value, Int32Value.Builder> implements - // @@protoc_insertion_point(message_implements:Int32Value) - Int32ValueOrBuilder { - private Int32Value() { - } - public static final int VALUE_FIELD_NUMBER = 1; - private int value_; - /** - *
-     * The int32 value.
-     * 
- * - * int32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return value_; - } - /** - *
-     * The int32 value.
-     * 
- * - * int32 value = 1; - * @param value The value to set. - */ - private void setValue(int value) { - - value_ = value; - } - /** - *
-     * The int32 value.
-     * 
- * - * int32 value = 1; - */ - private void clearValue() { - - value_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.Int32Value parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.Int32Value prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - *
-     * Wrapper message for `int32`.
-     * Allows for nullability of fields in messages
-     * 
- * - * Protobuf type {@code Int32Value} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.Int32Value, Builder> implements - // @@protoc_insertion_point(builder_implements:Int32Value) - com.pauldemarco.flutter_blue.Protos.Int32ValueOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.Int32Value.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - *
-       * The int32 value.
-       * 
- * - * int32 value = 1; - * @return The value. - */ - @java.lang.Override - public int getValue() { - return instance.getValue(); - } - /** - *
-       * The int32 value.
-       * 
- * - * int32 value = 1; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(int value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - *
-       * The int32 value.
-       * 
- * - * int32 value = 1; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:Int32Value) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.Int32Value(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "value_", - }; - java.lang.String info = - "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u0004"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.Int32Value.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:Int32Value) - private static final com.pauldemarco.flutter_blue.Protos.Int32Value DEFAULT_INSTANCE; - static { - Int32Value defaultInstance = new Int32Value(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - Int32Value.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.Int32Value getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface BluetoothStateOrBuilder extends - // @@protoc_insertion_point(interface_extends:BluetoothState) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * .BluetoothState.State state = 1; - * @return The enum numeric value on the wire for state. - */ - int getStateValue(); - /** - * .BluetoothState.State state = 1; - * @return The state. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothState.State getState(); - } - /** - * Protobuf type {@code BluetoothState} - */ - public static final class BluetoothState extends - com.google.protobuf.GeneratedMessageLite< - BluetoothState, BluetoothState.Builder> implements - // @@protoc_insertion_point(message_implements:BluetoothState) - BluetoothStateOrBuilder { - private BluetoothState() { - } - /** - * Protobuf enum {@code BluetoothState.State} - */ - public enum State - implements com.google.protobuf.Internal.EnumLite { - /** - * UNKNOWN = 0; - */ - UNKNOWN(0), - /** - * UNAVAILABLE = 1; - */ - UNAVAILABLE(1), - /** - * UNAUTHORIZED = 2; - */ - UNAUTHORIZED(2), - /** - * TURNING_ON = 3; - */ - TURNING_ON(3), - /** - * ON = 4; - */ - ON(4), - /** - * TURNING_OFF = 5; - */ - TURNING_OFF(5), - /** - * OFF = 6; - */ - OFF(6), - UNRECOGNIZED(-1), - ; - - /** - * UNKNOWN = 0; - */ - public static final int UNKNOWN_VALUE = 0; - /** - * UNAVAILABLE = 1; - */ - public static final int UNAVAILABLE_VALUE = 1; - /** - * UNAUTHORIZED = 2; - */ - public static final int UNAUTHORIZED_VALUE = 2; - /** - * TURNING_ON = 3; - */ - public static final int TURNING_ON_VALUE = 3; - /** - * ON = 4; - */ - public static final int ON_VALUE = 4; - /** - * TURNING_OFF = 5; - */ - public static final int TURNING_OFF_VALUE = 5; - /** - * OFF = 6; - */ - public static final int OFF_VALUE = 6; - - - @java.lang.Override - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static State valueOf(int value) { - return forNumber(value); - } - - public static State forNumber(int value) { - switch (value) { - case 0: return UNKNOWN; - case 1: return UNAVAILABLE; - case 2: return UNAUTHORIZED; - case 3: return TURNING_ON; - case 4: return ON; - case 5: return TURNING_OFF; - case 6: return OFF; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - State> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - @java.lang.Override - public State findValueByNumber(int number) { - return State.forNumber(number); - } - }; - - public static com.google.protobuf.Internal.EnumVerifier - internalGetVerifier() { - return StateVerifier.INSTANCE; - } - - private static final class StateVerifier implements - com.google.protobuf.Internal.EnumVerifier { - static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new StateVerifier(); - @java.lang.Override - public boolean isInRange(int number) { - return State.forNumber(number) != null; - } - }; - - private final int value; - - private State(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:BluetoothState.State) - } - - public static final int STATE_FIELD_NUMBER = 1; - private int state_; - /** - * .BluetoothState.State state = 1; - * @return The enum numeric value on the wire for state. - */ - @java.lang.Override - public int getStateValue() { - return state_; - } - /** - * .BluetoothState.State state = 1; - * @return The state. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothState.State getState() { - com.pauldemarco.flutter_blue.Protos.BluetoothState.State result = com.pauldemarco.flutter_blue.Protos.BluetoothState.State.forNumber(state_); - return result == null ? com.pauldemarco.flutter_blue.Protos.BluetoothState.State.UNRECOGNIZED : result; - } - /** - * .BluetoothState.State state = 1; - * @param value The enum numeric value on the wire for state to set. - */ - private void setStateValue(int value) { - state_ = value; - } - /** - * .BluetoothState.State state = 1; - * @param value The state to set. - */ - private void setState(com.pauldemarco.flutter_blue.Protos.BluetoothState.State value) { - state_ = value.getNumber(); - - } - /** - * .BluetoothState.State state = 1; - */ - private void clearState() { - - state_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothState parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.BluetoothState prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code BluetoothState} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.BluetoothState, Builder> implements - // @@protoc_insertion_point(builder_implements:BluetoothState) - com.pauldemarco.flutter_blue.Protos.BluetoothStateOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.BluetoothState.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * .BluetoothState.State state = 1; - * @return The enum numeric value on the wire for state. - */ - @java.lang.Override - public int getStateValue() { - return instance.getStateValue(); - } - /** - * .BluetoothState.State state = 1; - * @param value The state to set. - * @return This builder for chaining. - */ - public Builder setStateValue(int value) { - copyOnWrite(); - instance.setStateValue(value); - return this; - } - /** - * .BluetoothState.State state = 1; - * @return The state. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothState.State getState() { - return instance.getState(); - } - /** - * .BluetoothState.State state = 1; - * @param value The enum numeric value on the wire for state to set. - * @return This builder for chaining. - */ - public Builder setState(com.pauldemarco.flutter_blue.Protos.BluetoothState.State value) { - copyOnWrite(); - instance.setState(value); - return this; - } - /** - * .BluetoothState.State state = 1; - * @return This builder for chaining. - */ - public Builder clearState() { - copyOnWrite(); - instance.clearState(); - return this; - } - - // @@protoc_insertion_point(builder_scope:BluetoothState) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.BluetoothState(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "state_", - }; - java.lang.String info = - "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\f"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.BluetoothState.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:BluetoothState) - private static final com.pauldemarco.flutter_blue.Protos.BluetoothState DEFAULT_INSTANCE; - static { - BluetoothState defaultInstance = new BluetoothState(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - BluetoothState.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothState getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface AdvertisementDataOrBuilder extends - // @@protoc_insertion_point(interface_extends:AdvertisementData) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string local_name = 1; - * @return The localName. - */ - java.lang.String getLocalName(); - /** - * string local_name = 1; - * @return The bytes for localName. - */ - com.google.protobuf.ByteString - getLocalNameBytes(); - - /** - * .Int32Value tx_power_level = 2; - * @return Whether the txPowerLevel field is set. - */ - boolean hasTxPowerLevel(); - /** - * .Int32Value tx_power_level = 2; - * @return The txPowerLevel. - */ - com.pauldemarco.flutter_blue.Protos.Int32Value getTxPowerLevel(); - - /** - * bool connectable = 3; - * @return The connectable. - */ - boolean getConnectable(); - - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - int getManufacturerDataCount(); - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - boolean containsManufacturerData( - int key); - /** - * Use {@link #getManufacturerDataMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getManufacturerData(); - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - java.util.Map - getManufacturerDataMap(); - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - - com.google.protobuf.ByteString getManufacturerDataOrDefault( - int key, - com.google.protobuf.ByteString defaultValue); - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - - com.google.protobuf.ByteString getManufacturerDataOrThrow( - int key); - - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - int getServiceDataCount(); - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - boolean containsServiceData( - java.lang.String key); - /** - * Use {@link #getServiceDataMap()} instead. - */ - @java.lang.Deprecated - java.util.Map - getServiceData(); - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - java.util.Map - getServiceDataMap(); - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - - com.google.protobuf.ByteString getServiceDataOrDefault( - java.lang.String key, - com.google.protobuf.ByteString defaultValue); - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - - com.google.protobuf.ByteString getServiceDataOrThrow( - java.lang.String key); - - /** - * repeated string service_uuids = 6; - * @return A list containing the serviceUuids. - */ - java.util.List - getServiceUuidsList(); - /** - * repeated string service_uuids = 6; - * @return The count of serviceUuids. - */ - int getServiceUuidsCount(); - /** - * repeated string service_uuids = 6; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - java.lang.String getServiceUuids(int index); - /** - * repeated string service_uuids = 6; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - com.google.protobuf.ByteString - getServiceUuidsBytes(int index); - } - /** - * Protobuf type {@code AdvertisementData} - */ - public static final class AdvertisementData extends - com.google.protobuf.GeneratedMessageLite< - AdvertisementData, AdvertisementData.Builder> implements - // @@protoc_insertion_point(message_implements:AdvertisementData) - AdvertisementDataOrBuilder { - private AdvertisementData() { - localName_ = ""; - serviceUuids_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList(); - } - public static final int LOCAL_NAME_FIELD_NUMBER = 1; - private java.lang.String localName_; - /** - * string local_name = 1; - * @return The localName. - */ - @java.lang.Override - public java.lang.String getLocalName() { - return localName_; - } - /** - * string local_name = 1; - * @return The bytes for localName. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLocalNameBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(localName_); - } - /** - * string local_name = 1; - * @param value The localName to set. - */ - private void setLocalName( - java.lang.String value) { - value.getClass(); - - localName_ = value; - } - /** - * string local_name = 1; - */ - private void clearLocalName() { - - localName_ = getDefaultInstance().getLocalName(); - } - /** - * string local_name = 1; - * @param value The bytes for localName to set. - */ - private void setLocalNameBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - localName_ = value.toStringUtf8(); - - } - - public static final int TX_POWER_LEVEL_FIELD_NUMBER = 2; - private com.pauldemarco.flutter_blue.Protos.Int32Value txPowerLevel_; - /** - * .Int32Value tx_power_level = 2; - */ - @java.lang.Override - public boolean hasTxPowerLevel() { - return txPowerLevel_ != null; - } - /** - * .Int32Value tx_power_level = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.Int32Value getTxPowerLevel() { - return txPowerLevel_ == null ? com.pauldemarco.flutter_blue.Protos.Int32Value.getDefaultInstance() : txPowerLevel_; - } - /** - * .Int32Value tx_power_level = 2; - */ - private void setTxPowerLevel(com.pauldemarco.flutter_blue.Protos.Int32Value value) { - value.getClass(); - txPowerLevel_ = value; - - } - /** - * .Int32Value tx_power_level = 2; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeTxPowerLevel(com.pauldemarco.flutter_blue.Protos.Int32Value value) { - value.getClass(); - if (txPowerLevel_ != null && - txPowerLevel_ != com.pauldemarco.flutter_blue.Protos.Int32Value.getDefaultInstance()) { - txPowerLevel_ = - com.pauldemarco.flutter_blue.Protos.Int32Value.newBuilder(txPowerLevel_).mergeFrom(value).buildPartial(); - } else { - txPowerLevel_ = value; - } - - } - /** - * .Int32Value tx_power_level = 2; - */ - private void clearTxPowerLevel() { txPowerLevel_ = null; - - } - - public static final int CONNECTABLE_FIELD_NUMBER = 3; - private boolean connectable_; - /** - * bool connectable = 3; - * @return The connectable. - */ - @java.lang.Override - public boolean getConnectable() { - return connectable_; - } - /** - * bool connectable = 3; - * @param value The connectable to set. - */ - private void setConnectable(boolean value) { - - connectable_ = value; - } - /** - * bool connectable = 3; - */ - private void clearConnectable() { - - connectable_ = false; - } - - public static final int MANUFACTURER_DATA_FIELD_NUMBER = 4; - private static final class ManufacturerDataDefaultEntryHolder { - static final com.google.protobuf.MapEntryLite< - java.lang.Integer, com.google.protobuf.ByteString> defaultEntry = - com.google.protobuf.MapEntryLite - .newDefaultInstance( - com.google.protobuf.WireFormat.FieldType.INT32, - 0, - com.google.protobuf.WireFormat.FieldType.BYTES, - com.google.protobuf.ByteString.EMPTY); - } - private com.google.protobuf.MapFieldLite< - java.lang.Integer, com.google.protobuf.ByteString> manufacturerData_ = - com.google.protobuf.MapFieldLite.emptyMapField(); - private com.google.protobuf.MapFieldLite - internalGetManufacturerData() { - return manufacturerData_; - } - private com.google.protobuf.MapFieldLite - internalGetMutableManufacturerData() { - if (!manufacturerData_.isMutable()) { - manufacturerData_ = manufacturerData_.mutableCopy(); - } - return manufacturerData_; - } - @java.lang.Override - - public int getManufacturerDataCount() { - return internalGetManufacturerData().size(); - } - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public boolean containsManufacturerData( - int key) { - - return internalGetManufacturerData().containsKey(key); - } - /** - * Use {@link #getManufacturerDataMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getManufacturerData() { - return getManufacturerDataMap(); - } - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public java.util.Map getManufacturerDataMap() { - return java.util.Collections.unmodifiableMap( - internalGetManufacturerData()); - } - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getManufacturerDataOrDefault( - int key, - com.google.protobuf.ByteString defaultValue) { - - java.util.Map map = - internalGetManufacturerData(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getManufacturerDataOrThrow( - int key) { - - java.util.Map map = - internalGetManufacturerData(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - /** - *
-     * Map of manufacturers to their data
-     * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - private java.util.Map - getMutableManufacturerDataMap() { - return internalGetMutableManufacturerData(); - } - - public static final int SERVICE_DATA_FIELD_NUMBER = 5; - private static final class ServiceDataDefaultEntryHolder { - static final com.google.protobuf.MapEntryLite< - java.lang.String, com.google.protobuf.ByteString> defaultEntry = - com.google.protobuf.MapEntryLite - .newDefaultInstance( - com.google.protobuf.WireFormat.FieldType.STRING, - "", - com.google.protobuf.WireFormat.FieldType.BYTES, - com.google.protobuf.ByteString.EMPTY); - } - private com.google.protobuf.MapFieldLite< - java.lang.String, com.google.protobuf.ByteString> serviceData_ = - com.google.protobuf.MapFieldLite.emptyMapField(); - private com.google.protobuf.MapFieldLite - internalGetServiceData() { - return serviceData_; - } - private com.google.protobuf.MapFieldLite - internalGetMutableServiceData() { - if (!serviceData_.isMutable()) { - serviceData_ = serviceData_.mutableCopy(); - } - return serviceData_; - } - @java.lang.Override - - public int getServiceDataCount() { - return internalGetServiceData().size(); - } - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public boolean containsServiceData( - java.lang.String key) { - key.getClass(); - return internalGetServiceData().containsKey(key); - } - /** - * Use {@link #getServiceDataMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getServiceData() { - return getServiceDataMap(); - } - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public java.util.Map getServiceDataMap() { - return java.util.Collections.unmodifiableMap( - internalGetServiceData()); - } - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getServiceDataOrDefault( - java.lang.String key, - com.google.protobuf.ByteString defaultValue) { - key.getClass(); - java.util.Map map = - internalGetServiceData(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getServiceDataOrThrow( - java.lang.String key) { - key.getClass(); - java.util.Map map = - internalGetServiceData(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - /** - *
-     * Map of service UUIDs to their data.
-     * 
- * - * map<string, bytes> service_data = 5; - */ - private java.util.Map - getMutableServiceDataMap() { - return internalGetMutableServiceData(); - } - - public static final int SERVICE_UUIDS_FIELD_NUMBER = 6; - private com.google.protobuf.Internal.ProtobufList serviceUuids_; - /** - * repeated string service_uuids = 6; - * @return A list containing the serviceUuids. - */ - @java.lang.Override - public java.util.List getServiceUuidsList() { - return serviceUuids_; - } - /** - * repeated string service_uuids = 6; - * @return The count of serviceUuids. - */ - @java.lang.Override - public int getServiceUuidsCount() { - return serviceUuids_.size(); - } - /** - * repeated string service_uuids = 6; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - @java.lang.Override - public java.lang.String getServiceUuids(int index) { - return serviceUuids_.get(index); - } - /** - * repeated string service_uuids = 6; - * @param index The index of the value to return. - * @return The bytes of the serviceUuids at the given index. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidsBytes(int index) { - return com.google.protobuf.ByteString.copyFromUtf8( - serviceUuids_.get(index)); - } - private void ensureServiceUuidsIsMutable() { - if (!serviceUuids_.isModifiable()) { - serviceUuids_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(serviceUuids_); - } - } - /** - * repeated string service_uuids = 6; - * @param index The index to set the value at. - * @param value The serviceUuids to set. - */ - private void setServiceUuids( - int index, java.lang.String value) { - value.getClass(); - ensureServiceUuidsIsMutable(); - serviceUuids_.set(index, value); - } - /** - * repeated string service_uuids = 6; - * @param value The serviceUuids to add. - */ - private void addServiceUuids( - java.lang.String value) { - value.getClass(); - ensureServiceUuidsIsMutable(); - serviceUuids_.add(value); - } - /** - * repeated string service_uuids = 6; - * @param values The serviceUuids to add. - */ - private void addAllServiceUuids( - java.lang.Iterable values) { - ensureServiceUuidsIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, serviceUuids_); - } - /** - * repeated string service_uuids = 6; - */ - private void clearServiceUuids() { - serviceUuids_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList(); - } - /** - * repeated string service_uuids = 6; - * @param value The bytes of the serviceUuids to add. - */ - private void addServiceUuidsBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - ensureServiceUuidsIsMutable(); - serviceUuids_.add(value.toStringUtf8()); - } - - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.AdvertisementData prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code AdvertisementData} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.AdvertisementData, Builder> implements - // @@protoc_insertion_point(builder_implements:AdvertisementData) - com.pauldemarco.flutter_blue.Protos.AdvertisementDataOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.AdvertisementData.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string local_name = 1; - * @return The localName. - */ - @java.lang.Override - public java.lang.String getLocalName() { - return instance.getLocalName(); - } - /** - * string local_name = 1; - * @return The bytes for localName. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getLocalNameBytes() { - return instance.getLocalNameBytes(); - } - /** - * string local_name = 1; - * @param value The localName to set. - * @return This builder for chaining. - */ - public Builder setLocalName( - java.lang.String value) { - copyOnWrite(); - instance.setLocalName(value); - return this; - } - /** - * string local_name = 1; - * @return This builder for chaining. - */ - public Builder clearLocalName() { - copyOnWrite(); - instance.clearLocalName(); - return this; - } - /** - * string local_name = 1; - * @param value The bytes for localName to set. - * @return This builder for chaining. - */ - public Builder setLocalNameBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setLocalNameBytes(value); - return this; - } - - /** - * .Int32Value tx_power_level = 2; - */ - @java.lang.Override - public boolean hasTxPowerLevel() { - return instance.hasTxPowerLevel(); - } - /** - * .Int32Value tx_power_level = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.Int32Value getTxPowerLevel() { - return instance.getTxPowerLevel(); - } - /** - * .Int32Value tx_power_level = 2; - */ - public Builder setTxPowerLevel(com.pauldemarco.flutter_blue.Protos.Int32Value value) { - copyOnWrite(); - instance.setTxPowerLevel(value); - return this; - } - /** - * .Int32Value tx_power_level = 2; - */ - public Builder setTxPowerLevel( - com.pauldemarco.flutter_blue.Protos.Int32Value.Builder builderForValue) { - copyOnWrite(); - instance.setTxPowerLevel(builderForValue.build()); - return this; - } - /** - * .Int32Value tx_power_level = 2; - */ - public Builder mergeTxPowerLevel(com.pauldemarco.flutter_blue.Protos.Int32Value value) { - copyOnWrite(); - instance.mergeTxPowerLevel(value); - return this; - } - /** - * .Int32Value tx_power_level = 2; - */ - public Builder clearTxPowerLevel() { copyOnWrite(); - instance.clearTxPowerLevel(); - return this; - } - - /** - * bool connectable = 3; - * @return The connectable. - */ - @java.lang.Override - public boolean getConnectable() { - return instance.getConnectable(); - } - /** - * bool connectable = 3; - * @param value The connectable to set. - * @return This builder for chaining. - */ - public Builder setConnectable(boolean value) { - copyOnWrite(); - instance.setConnectable(value); - return this; - } - /** - * bool connectable = 3; - * @return This builder for chaining. - */ - public Builder clearConnectable() { - copyOnWrite(); - instance.clearConnectable(); - return this; - } - - @java.lang.Override - - public int getManufacturerDataCount() { - return instance.getManufacturerDataMap().size(); - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public boolean containsManufacturerData( - int key) { - - return instance.getManufacturerDataMap().containsKey(key); - } - - public Builder clearManufacturerData() { - copyOnWrite(); - instance.getMutableManufacturerDataMap().clear(); - return this; - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - - public Builder removeManufacturerData( - int key) { - - copyOnWrite(); - instance.getMutableManufacturerDataMap().remove(key); - return this; - } - /** - * Use {@link #getManufacturerDataMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getManufacturerData() { - return getManufacturerDataMap(); - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - public java.util.Map getManufacturerDataMap() { - return java.util.Collections.unmodifiableMap( - instance.getManufacturerDataMap()); - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getManufacturerDataOrDefault( - int key, - com.google.protobuf.ByteString defaultValue) { - - java.util.Map map = - instance.getManufacturerDataMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getManufacturerDataOrThrow( - int key) { - - java.util.Map map = - instance.getManufacturerDataMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - public Builder putManufacturerData( - int key, - com.google.protobuf.ByteString value) { - - value.getClass(); - copyOnWrite(); - instance.getMutableManufacturerDataMap().put(key, value); - return this; - } - /** - *
-       * Map of manufacturers to their data
-       * 
- * - * map<int32, bytes> manufacturer_data = 4; - */ - public Builder putAllManufacturerData( - java.util.Map values) { - copyOnWrite(); - instance.getMutableManufacturerDataMap().putAll(values); - return this; - } - - @java.lang.Override - - public int getServiceDataCount() { - return instance.getServiceDataMap().size(); - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public boolean containsServiceData( - java.lang.String key) { - key.getClass(); - return instance.getServiceDataMap().containsKey(key); - } - - public Builder clearServiceData() { - copyOnWrite(); - instance.getMutableServiceDataMap().clear(); - return this; - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - - public Builder removeServiceData( - java.lang.String key) { - key.getClass(); - copyOnWrite(); - instance.getMutableServiceDataMap().remove(key); - return this; - } - /** - * Use {@link #getServiceDataMap()} instead. - */ - @java.lang.Override - @java.lang.Deprecated - public java.util.Map getServiceData() { - return getServiceDataMap(); - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - public java.util.Map getServiceDataMap() { - return java.util.Collections.unmodifiableMap( - instance.getServiceDataMap()); - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getServiceDataOrDefault( - java.lang.String key, - com.google.protobuf.ByteString defaultValue) { - key.getClass(); - java.util.Map map = - instance.getServiceDataMap(); - return map.containsKey(key) ? map.get(key) : defaultValue; - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - @java.lang.Override - - public com.google.protobuf.ByteString getServiceDataOrThrow( - java.lang.String key) { - key.getClass(); - java.util.Map map = - instance.getServiceDataMap(); - if (!map.containsKey(key)) { - throw new java.lang.IllegalArgumentException(); - } - return map.get(key); - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - public Builder putServiceData( - java.lang.String key, - com.google.protobuf.ByteString value) { - key.getClass(); - value.getClass(); - copyOnWrite(); - instance.getMutableServiceDataMap().put(key, value); - return this; - } - /** - *
-       * Map of service UUIDs to their data.
-       * 
- * - * map<string, bytes> service_data = 5; - */ - public Builder putAllServiceData( - java.util.Map values) { - copyOnWrite(); - instance.getMutableServiceDataMap().putAll(values); - return this; - } - - /** - * repeated string service_uuids = 6; - * @return A list containing the serviceUuids. - */ - @java.lang.Override - public java.util.List - getServiceUuidsList() { - return java.util.Collections.unmodifiableList( - instance.getServiceUuidsList()); - } - /** - * repeated string service_uuids = 6; - * @return The count of serviceUuids. - */ - @java.lang.Override - public int getServiceUuidsCount() { - return instance.getServiceUuidsCount(); - } - /** - * repeated string service_uuids = 6; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - @java.lang.Override - public java.lang.String getServiceUuids(int index) { - return instance.getServiceUuids(index); - } - /** - * repeated string service_uuids = 6; - * @param index The index of the value to return. - * @return The bytes of the serviceUuids at the given index. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidsBytes(int index) { - return instance.getServiceUuidsBytes(index); - } - /** - * repeated string service_uuids = 6; - * @param index The index to set the value at. - * @param value The serviceUuids to set. - * @return This builder for chaining. - */ - public Builder setServiceUuids( - int index, java.lang.String value) { - copyOnWrite(); - instance.setServiceUuids(index, value); - return this; - } - /** - * repeated string service_uuids = 6; - * @param value The serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addServiceUuids( - java.lang.String value) { - copyOnWrite(); - instance.addServiceUuids(value); - return this; - } - /** - * repeated string service_uuids = 6; - * @param values The serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addAllServiceUuids( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllServiceUuids(values); - return this; - } - /** - * repeated string service_uuids = 6; - * @return This builder for chaining. - */ - public Builder clearServiceUuids() { - copyOnWrite(); - instance.clearServiceUuids(); - return this; - } - /** - * repeated string service_uuids = 6; - * @param value The bytes of the serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addServiceUuidsBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.addServiceUuidsBytes(value); - return this; - } - - // @@protoc_insertion_point(builder_scope:AdvertisementData) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.AdvertisementData(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "localName_", - "txPowerLevel_", - "connectable_", - "manufacturerData_", - ManufacturerDataDefaultEntryHolder.defaultEntry, - "serviceData_", - ServiceDataDefaultEntryHolder.defaultEntry, - "serviceUuids_", - }; - java.lang.String info = - "\u0000\u0006\u0000\u0000\u0001\u0006\u0006\u0002\u0001\u0000\u0001\u0208\u0002\t" + - "\u0003\u0007\u00042\u00052\u0006\u021a"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.AdvertisementData.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:AdvertisementData) - private static final com.pauldemarco.flutter_blue.Protos.AdvertisementData DEFAULT_INSTANCE; - static { - AdvertisementData defaultInstance = new AdvertisementData(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - AdvertisementData.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.AdvertisementData getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ScanSettingsOrBuilder extends - // @@protoc_insertion_point(interface_extends:ScanSettings) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * int32 android_scan_mode = 1; - * @return The androidScanMode. - */ - int getAndroidScanMode(); - - /** - * repeated string service_uuids = 2; - * @return A list containing the serviceUuids. - */ - java.util.List - getServiceUuidsList(); - /** - * repeated string service_uuids = 2; - * @return The count of serviceUuids. - */ - int getServiceUuidsCount(); - /** - * repeated string service_uuids = 2; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - java.lang.String getServiceUuids(int index); - /** - * repeated string service_uuids = 2; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - com.google.protobuf.ByteString - getServiceUuidsBytes(int index); - - /** - * bool allow_duplicates = 3; - * @return The allowDuplicates. - */ - boolean getAllowDuplicates(); - } - /** - * Protobuf type {@code ScanSettings} - */ - public static final class ScanSettings extends - com.google.protobuf.GeneratedMessageLite< - ScanSettings, ScanSettings.Builder> implements - // @@protoc_insertion_point(message_implements:ScanSettings) - ScanSettingsOrBuilder { - private ScanSettings() { - serviceUuids_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList(); - } - public static final int ANDROID_SCAN_MODE_FIELD_NUMBER = 1; - private int androidScanMode_; - /** - * int32 android_scan_mode = 1; - * @return The androidScanMode. - */ - @java.lang.Override - public int getAndroidScanMode() { - return androidScanMode_; - } - /** - * int32 android_scan_mode = 1; - * @param value The androidScanMode to set. - */ - private void setAndroidScanMode(int value) { - - androidScanMode_ = value; - } - /** - * int32 android_scan_mode = 1; - */ - private void clearAndroidScanMode() { - - androidScanMode_ = 0; - } - - public static final int SERVICE_UUIDS_FIELD_NUMBER = 2; - private com.google.protobuf.Internal.ProtobufList serviceUuids_; - /** - * repeated string service_uuids = 2; - * @return A list containing the serviceUuids. - */ - @java.lang.Override - public java.util.List getServiceUuidsList() { - return serviceUuids_; - } - /** - * repeated string service_uuids = 2; - * @return The count of serviceUuids. - */ - @java.lang.Override - public int getServiceUuidsCount() { - return serviceUuids_.size(); - } - /** - * repeated string service_uuids = 2; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - @java.lang.Override - public java.lang.String getServiceUuids(int index) { - return serviceUuids_.get(index); - } - /** - * repeated string service_uuids = 2; - * @param index The index of the value to return. - * @return The bytes of the serviceUuids at the given index. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidsBytes(int index) { - return com.google.protobuf.ByteString.copyFromUtf8( - serviceUuids_.get(index)); - } - private void ensureServiceUuidsIsMutable() { - if (!serviceUuids_.isModifiable()) { - serviceUuids_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(serviceUuids_); - } - } - /** - * repeated string service_uuids = 2; - * @param index The index to set the value at. - * @param value The serviceUuids to set. - */ - private void setServiceUuids( - int index, java.lang.String value) { - value.getClass(); - ensureServiceUuidsIsMutable(); - serviceUuids_.set(index, value); - } - /** - * repeated string service_uuids = 2; - * @param value The serviceUuids to add. - */ - private void addServiceUuids( - java.lang.String value) { - value.getClass(); - ensureServiceUuidsIsMutable(); - serviceUuids_.add(value); - } - /** - * repeated string service_uuids = 2; - * @param values The serviceUuids to add. - */ - private void addAllServiceUuids( - java.lang.Iterable values) { - ensureServiceUuidsIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, serviceUuids_); - } - /** - * repeated string service_uuids = 2; - */ - private void clearServiceUuids() { - serviceUuids_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList(); - } - /** - * repeated string service_uuids = 2; - * @param value The bytes of the serviceUuids to add. - */ - private void addServiceUuidsBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - ensureServiceUuidsIsMutable(); - serviceUuids_.add(value.toStringUtf8()); - } - - public static final int ALLOW_DUPLICATES_FIELD_NUMBER = 3; - private boolean allowDuplicates_; - /** - * bool allow_duplicates = 3; - * @return The allowDuplicates. - */ - @java.lang.Override - public boolean getAllowDuplicates() { - return allowDuplicates_; - } - /** - * bool allow_duplicates = 3; - * @param value The allowDuplicates to set. - */ - private void setAllowDuplicates(boolean value) { - - allowDuplicates_ = value; - } - /** - * bool allow_duplicates = 3; - */ - private void clearAllowDuplicates() { - - allowDuplicates_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanSettings parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ScanSettings prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ScanSettings} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ScanSettings, Builder> implements - // @@protoc_insertion_point(builder_implements:ScanSettings) - com.pauldemarco.flutter_blue.Protos.ScanSettingsOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ScanSettings.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * int32 android_scan_mode = 1; - * @return The androidScanMode. - */ - @java.lang.Override - public int getAndroidScanMode() { - return instance.getAndroidScanMode(); - } - /** - * int32 android_scan_mode = 1; - * @param value The androidScanMode to set. - * @return This builder for chaining. - */ - public Builder setAndroidScanMode(int value) { - copyOnWrite(); - instance.setAndroidScanMode(value); - return this; - } - /** - * int32 android_scan_mode = 1; - * @return This builder for chaining. - */ - public Builder clearAndroidScanMode() { - copyOnWrite(); - instance.clearAndroidScanMode(); - return this; - } - - /** - * repeated string service_uuids = 2; - * @return A list containing the serviceUuids. - */ - @java.lang.Override - public java.util.List - getServiceUuidsList() { - return java.util.Collections.unmodifiableList( - instance.getServiceUuidsList()); - } - /** - * repeated string service_uuids = 2; - * @return The count of serviceUuids. - */ - @java.lang.Override - public int getServiceUuidsCount() { - return instance.getServiceUuidsCount(); - } - /** - * repeated string service_uuids = 2; - * @param index The index of the element to return. - * @return The serviceUuids at the given index. - */ - @java.lang.Override - public java.lang.String getServiceUuids(int index) { - return instance.getServiceUuids(index); - } - /** - * repeated string service_uuids = 2; - * @param index The index of the value to return. - * @return The bytes of the serviceUuids at the given index. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidsBytes(int index) { - return instance.getServiceUuidsBytes(index); - } - /** - * repeated string service_uuids = 2; - * @param index The index to set the value at. - * @param value The serviceUuids to set. - * @return This builder for chaining. - */ - public Builder setServiceUuids( - int index, java.lang.String value) { - copyOnWrite(); - instance.setServiceUuids(index, value); - return this; - } - /** - * repeated string service_uuids = 2; - * @param value The serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addServiceUuids( - java.lang.String value) { - copyOnWrite(); - instance.addServiceUuids(value); - return this; - } - /** - * repeated string service_uuids = 2; - * @param values The serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addAllServiceUuids( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllServiceUuids(values); - return this; - } - /** - * repeated string service_uuids = 2; - * @return This builder for chaining. - */ - public Builder clearServiceUuids() { - copyOnWrite(); - instance.clearServiceUuids(); - return this; - } - /** - * repeated string service_uuids = 2; - * @param value The bytes of the serviceUuids to add. - * @return This builder for chaining. - */ - public Builder addServiceUuidsBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.addServiceUuidsBytes(value); - return this; - } - - /** - * bool allow_duplicates = 3; - * @return The allowDuplicates. - */ - @java.lang.Override - public boolean getAllowDuplicates() { - return instance.getAllowDuplicates(); - } - /** - * bool allow_duplicates = 3; - * @param value The allowDuplicates to set. - * @return This builder for chaining. - */ - public Builder setAllowDuplicates(boolean value) { - copyOnWrite(); - instance.setAllowDuplicates(value); - return this; - } - /** - * bool allow_duplicates = 3; - * @return This builder for chaining. - */ - public Builder clearAllowDuplicates() { - copyOnWrite(); - instance.clearAllowDuplicates(); - return this; - } - - // @@protoc_insertion_point(builder_scope:ScanSettings) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ScanSettings(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "androidScanMode_", - "serviceUuids_", - "allowDuplicates_", - }; - java.lang.String info = - "\u0000\u0003\u0000\u0000\u0001\u0003\u0003\u0000\u0001\u0000\u0001\u0004\u0002\u021a" + - "\u0003\u0007"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ScanSettings.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ScanSettings) - private static final com.pauldemarco.flutter_blue.Protos.ScanSettings DEFAULT_INSTANCE; - static { - ScanSettings defaultInstance = new ScanSettings(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ScanSettings.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ScanSettings getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ScanResultOrBuilder extends - // @@protoc_insertion_point(interface_extends:ScanResult) - com.google.protobuf.MessageLiteOrBuilder { - - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - * @return Whether the device field is set. - */ - boolean hasDevice(); - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - * @return The device. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevice(); - - /** - * .AdvertisementData advertisement_data = 2; - * @return Whether the advertisementData field is set. - */ - boolean hasAdvertisementData(); - /** - * .AdvertisementData advertisement_data = 2; - * @return The advertisementData. - */ - com.pauldemarco.flutter_blue.Protos.AdvertisementData getAdvertisementData(); - - /** - * int32 rssi = 3; - * @return The rssi. - */ - int getRssi(); - } - /** - * Protobuf type {@code ScanResult} - */ - public static final class ScanResult extends - com.google.protobuf.GeneratedMessageLite< - ScanResult, ScanResult.Builder> implements - // @@protoc_insertion_point(message_implements:ScanResult) - ScanResultOrBuilder { - private ScanResult() { - } - public static final int DEVICE_FIELD_NUMBER = 1; - private com.pauldemarco.flutter_blue.Protos.BluetoothDevice device_; - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - */ - @java.lang.Override - public boolean hasDevice() { - return device_ != null; - } - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevice() { - return device_ == null ? com.pauldemarco.flutter_blue.Protos.BluetoothDevice.getDefaultInstance() : device_; - } - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - */ - private void setDevice(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - value.getClass(); - device_ = value; - - } - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeDevice(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - value.getClass(); - if (device_ != null && - device_ != com.pauldemarco.flutter_blue.Protos.BluetoothDevice.getDefaultInstance()) { - device_ = - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.newBuilder(device_).mergeFrom(value).buildPartial(); - } else { - device_ = value; - } - - } - /** - *
-     * The received peer's ID.
-     * 
- * - * .BluetoothDevice device = 1; - */ - private void clearDevice() { device_ = null; - - } - - public static final int ADVERTISEMENT_DATA_FIELD_NUMBER = 2; - private com.pauldemarco.flutter_blue.Protos.AdvertisementData advertisementData_; - /** - * .AdvertisementData advertisement_data = 2; - */ - @java.lang.Override - public boolean hasAdvertisementData() { - return advertisementData_ != null; - } - /** - * .AdvertisementData advertisement_data = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.AdvertisementData getAdvertisementData() { - return advertisementData_ == null ? com.pauldemarco.flutter_blue.Protos.AdvertisementData.getDefaultInstance() : advertisementData_; - } - /** - * .AdvertisementData advertisement_data = 2; - */ - private void setAdvertisementData(com.pauldemarco.flutter_blue.Protos.AdvertisementData value) { - value.getClass(); - advertisementData_ = value; - - } - /** - * .AdvertisementData advertisement_data = 2; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeAdvertisementData(com.pauldemarco.flutter_blue.Protos.AdvertisementData value) { - value.getClass(); - if (advertisementData_ != null && - advertisementData_ != com.pauldemarco.flutter_blue.Protos.AdvertisementData.getDefaultInstance()) { - advertisementData_ = - com.pauldemarco.flutter_blue.Protos.AdvertisementData.newBuilder(advertisementData_).mergeFrom(value).buildPartial(); - } else { - advertisementData_ = value; - } - - } - /** - * .AdvertisementData advertisement_data = 2; - */ - private void clearAdvertisementData() { advertisementData_ = null; - - } - - public static final int RSSI_FIELD_NUMBER = 3; - private int rssi_; - /** - * int32 rssi = 3; - * @return The rssi. - */ - @java.lang.Override - public int getRssi() { - return rssi_; - } - /** - * int32 rssi = 3; - * @param value The rssi to set. - */ - private void setRssi(int value) { - - rssi_ = value; - } - /** - * int32 rssi = 3; - */ - private void clearRssi() { - - rssi_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ScanResult parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ScanResult prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ScanResult} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ScanResult, Builder> implements - // @@protoc_insertion_point(builder_implements:ScanResult) - com.pauldemarco.flutter_blue.Protos.ScanResultOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ScanResult.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - @java.lang.Override - public boolean hasDevice() { - return instance.hasDevice(); - } - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevice() { - return instance.getDevice(); - } - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - public Builder setDevice(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - copyOnWrite(); - instance.setDevice(value); - return this; - } - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - public Builder setDevice( - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Builder builderForValue) { - copyOnWrite(); - instance.setDevice(builderForValue.build()); - return this; - } - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - public Builder mergeDevice(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - copyOnWrite(); - instance.mergeDevice(value); - return this; - } - /** - *
-       * The received peer's ID.
-       * 
- * - * .BluetoothDevice device = 1; - */ - public Builder clearDevice() { copyOnWrite(); - instance.clearDevice(); - return this; - } - - /** - * .AdvertisementData advertisement_data = 2; - */ - @java.lang.Override - public boolean hasAdvertisementData() { - return instance.hasAdvertisementData(); - } - /** - * .AdvertisementData advertisement_data = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.AdvertisementData getAdvertisementData() { - return instance.getAdvertisementData(); - } - /** - * .AdvertisementData advertisement_data = 2; - */ - public Builder setAdvertisementData(com.pauldemarco.flutter_blue.Protos.AdvertisementData value) { - copyOnWrite(); - instance.setAdvertisementData(value); - return this; - } - /** - * .AdvertisementData advertisement_data = 2; - */ - public Builder setAdvertisementData( - com.pauldemarco.flutter_blue.Protos.AdvertisementData.Builder builderForValue) { - copyOnWrite(); - instance.setAdvertisementData(builderForValue.build()); - return this; - } - /** - * .AdvertisementData advertisement_data = 2; - */ - public Builder mergeAdvertisementData(com.pauldemarco.flutter_blue.Protos.AdvertisementData value) { - copyOnWrite(); - instance.mergeAdvertisementData(value); - return this; - } - /** - * .AdvertisementData advertisement_data = 2; - */ - public Builder clearAdvertisementData() { copyOnWrite(); - instance.clearAdvertisementData(); - return this; - } - - /** - * int32 rssi = 3; - * @return The rssi. - */ - @java.lang.Override - public int getRssi() { - return instance.getRssi(); - } - /** - * int32 rssi = 3; - * @param value The rssi to set. - * @return This builder for chaining. - */ - public Builder setRssi(int value) { - copyOnWrite(); - instance.setRssi(value); - return this; - } - /** - * int32 rssi = 3; - * @return This builder for chaining. - */ - public Builder clearRssi() { - copyOnWrite(); - instance.clearRssi(); - return this; - } - - // @@protoc_insertion_point(builder_scope:ScanResult) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ScanResult(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "device_", - "advertisementData_", - "rssi_", - }; - java.lang.String info = - "\u0000\u0003\u0000\u0000\u0001\u0003\u0003\u0000\u0000\u0000\u0001\t\u0002\t\u0003" + - "\u0004"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ScanResult.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ScanResult) - private static final com.pauldemarco.flutter_blue.Protos.ScanResult DEFAULT_INSTANCE; - static { - ScanResult defaultInstance = new ScanResult(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ScanResult.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ScanResult getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ConnectRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:ConnectRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * bool android_auto_connect = 2; - * @return The androidAutoConnect. - */ - boolean getAndroidAutoConnect(); - } - /** - * Protobuf type {@code ConnectRequest} - */ - public static final class ConnectRequest extends - com.google.protobuf.GeneratedMessageLite< - ConnectRequest, ConnectRequest.Builder> implements - // @@protoc_insertion_point(message_implements:ConnectRequest) - ConnectRequestOrBuilder { - private ConnectRequest() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int ANDROID_AUTO_CONNECT_FIELD_NUMBER = 2; - private boolean androidAutoConnect_; - /** - * bool android_auto_connect = 2; - * @return The androidAutoConnect. - */ - @java.lang.Override - public boolean getAndroidAutoConnect() { - return androidAutoConnect_; - } - /** - * bool android_auto_connect = 2; - * @param value The androidAutoConnect to set. - */ - private void setAndroidAutoConnect(boolean value) { - - androidAutoConnect_ = value; - } - /** - * bool android_auto_connect = 2; - */ - private void clearAndroidAutoConnect() { - - androidAutoConnect_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ConnectRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ConnectRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ConnectRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:ConnectRequest) - com.pauldemarco.flutter_blue.Protos.ConnectRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ConnectRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * bool android_auto_connect = 2; - * @return The androidAutoConnect. - */ - @java.lang.Override - public boolean getAndroidAutoConnect() { - return instance.getAndroidAutoConnect(); - } - /** - * bool android_auto_connect = 2; - * @param value The androidAutoConnect to set. - * @return This builder for chaining. - */ - public Builder setAndroidAutoConnect(boolean value) { - copyOnWrite(); - instance.setAndroidAutoConnect(value); - return this; - } - /** - * bool android_auto_connect = 2; - * @return This builder for chaining. - */ - public Builder clearAndroidAutoConnect() { - copyOnWrite(); - instance.clearAndroidAutoConnect(); - return this; - } - - // @@protoc_insertion_point(builder_scope:ConnectRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ConnectRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "androidAutoConnect_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\u0007" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ConnectRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ConnectRequest) - private static final com.pauldemarco.flutter_blue.Protos.ConnectRequest DEFAULT_INSTANCE; - static { - ConnectRequest defaultInstance = new ConnectRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ConnectRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ConnectRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface BluetoothDeviceOrBuilder extends - // @@protoc_insertion_point(interface_extends:BluetoothDevice) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string name = 2; - * @return The name. - */ - java.lang.String getName(); - /** - * string name = 2; - * @return The bytes for name. - */ - com.google.protobuf.ByteString - getNameBytes(); - - /** - * .BluetoothDevice.Type type = 3; - * @return The enum numeric value on the wire for type. - */ - int getTypeValue(); - /** - * .BluetoothDevice.Type type = 3; - * @return The type. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type getType(); - } - /** - * Protobuf type {@code BluetoothDevice} - */ - public static final class BluetoothDevice extends - com.google.protobuf.GeneratedMessageLite< - BluetoothDevice, BluetoothDevice.Builder> implements - // @@protoc_insertion_point(message_implements:BluetoothDevice) - BluetoothDeviceOrBuilder { - private BluetoothDevice() { - remoteId_ = ""; - name_ = ""; - } - /** - * Protobuf enum {@code BluetoothDevice.Type} - */ - public enum Type - implements com.google.protobuf.Internal.EnumLite { - /** - * UNKNOWN = 0; - */ - UNKNOWN(0), - /** - * CLASSIC = 1; - */ - CLASSIC(1), - /** - * LE = 2; - */ - LE(2), - /** - * DUAL = 3; - */ - DUAL(3), - UNRECOGNIZED(-1), - ; - - /** - * UNKNOWN = 0; - */ - public static final int UNKNOWN_VALUE = 0; - /** - * CLASSIC = 1; - */ - public static final int CLASSIC_VALUE = 1; - /** - * LE = 2; - */ - public static final int LE_VALUE = 2; - /** - * DUAL = 3; - */ - public static final int DUAL_VALUE = 3; - - - @java.lang.Override - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static Type valueOf(int value) { - return forNumber(value); - } - - public static Type forNumber(int value) { - switch (value) { - case 0: return UNKNOWN; - case 1: return CLASSIC; - case 2: return LE; - case 3: return DUAL; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - Type> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - @java.lang.Override - public Type findValueByNumber(int number) { - return Type.forNumber(number); - } - }; - - public static com.google.protobuf.Internal.EnumVerifier - internalGetVerifier() { - return TypeVerifier.INSTANCE; - } - - private static final class TypeVerifier implements - com.google.protobuf.Internal.EnumVerifier { - static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new TypeVerifier(); - @java.lang.Override - public boolean isInRange(int number) { - return Type.forNumber(number) != null; - } - }; - - private final int value; - - private Type(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:BluetoothDevice.Type) - } - - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int NAME_FIELD_NUMBER = 2; - private java.lang.String name_; - /** - * string name = 2; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - return name_; - } - /** - * string name = 2; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(name_); - } - /** - * string name = 2; - * @param value The name to set. - */ - private void setName( - java.lang.String value) { - value.getClass(); - - name_ = value; - } - /** - * string name = 2; - */ - private void clearName() { - - name_ = getDefaultInstance().getName(); - } - /** - * string name = 2; - * @param value The bytes for name to set. - */ - private void setNameBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - name_ = value.toStringUtf8(); - - } - - public static final int TYPE_FIELD_NUMBER = 3; - private int type_; - /** - * .BluetoothDevice.Type type = 3; - * @return The enum numeric value on the wire for type. - */ - @java.lang.Override - public int getTypeValue() { - return type_; - } - /** - * .BluetoothDevice.Type type = 3; - * @return The type. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type getType() { - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type result = com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type.forNumber(type_); - return result == null ? com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type.UNRECOGNIZED : result; - } - /** - * .BluetoothDevice.Type type = 3; - * @param value The enum numeric value on the wire for type to set. - */ - private void setTypeValue(int value) { - type_ = value; - } - /** - * .BluetoothDevice.Type type = 3; - * @param value The type to set. - */ - private void setType(com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type value) { - type_ = value.getNumber(); - - } - /** - * .BluetoothDevice.Type type = 3; - */ - private void clearType() { - - type_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.BluetoothDevice prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code BluetoothDevice} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.BluetoothDevice, Builder> implements - // @@protoc_insertion_point(builder_implements:BluetoothDevice) - com.pauldemarco.flutter_blue.Protos.BluetoothDeviceOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.BluetoothDevice.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string name = 2; - * @return The name. - */ - @java.lang.Override - public java.lang.String getName() { - return instance.getName(); - } - /** - * string name = 2; - * @return The bytes for name. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getNameBytes() { - return instance.getNameBytes(); - } - /** - * string name = 2; - * @param value The name to set. - * @return This builder for chaining. - */ - public Builder setName( - java.lang.String value) { - copyOnWrite(); - instance.setName(value); - return this; - } - /** - * string name = 2; - * @return This builder for chaining. - */ - public Builder clearName() { - copyOnWrite(); - instance.clearName(); - return this; - } - /** - * string name = 2; - * @param value The bytes for name to set. - * @return This builder for chaining. - */ - public Builder setNameBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setNameBytes(value); - return this; - } - - /** - * .BluetoothDevice.Type type = 3; - * @return The enum numeric value on the wire for type. - */ - @java.lang.Override - public int getTypeValue() { - return instance.getTypeValue(); - } - /** - * .BluetoothDevice.Type type = 3; - * @param value The type to set. - * @return This builder for chaining. - */ - public Builder setTypeValue(int value) { - copyOnWrite(); - instance.setTypeValue(value); - return this; - } - /** - * .BluetoothDevice.Type type = 3; - * @return The type. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type getType() { - return instance.getType(); - } - /** - * .BluetoothDevice.Type type = 3; - * @param value The enum numeric value on the wire for type to set. - * @return This builder for chaining. - */ - public Builder setType(com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Type value) { - copyOnWrite(); - instance.setType(value); - return this; - } - /** - * .BluetoothDevice.Type type = 3; - * @return This builder for chaining. - */ - public Builder clearType() { - copyOnWrite(); - instance.clearType(); - return this; - } - - // @@protoc_insertion_point(builder_scope:BluetoothDevice) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.BluetoothDevice(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "name_", - "type_", - }; - java.lang.String info = - "\u0000\u0003\u0000\u0000\u0001\u0003\u0003\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\f"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.BluetoothDevice.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:BluetoothDevice) - private static final com.pauldemarco.flutter_blue.Protos.BluetoothDevice DEFAULT_INSTANCE; - static { - BluetoothDevice defaultInstance = new BluetoothDevice(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - BluetoothDevice.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface BluetoothServiceOrBuilder extends - // @@protoc_insertion_point(interface_extends:BluetoothService) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string uuid = 1; - * @return The uuid. - */ - java.lang.String getUuid(); - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - com.google.protobuf.ByteString - getUuidBytes(); - - /** - * string remote_id = 2; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - *
-     * Indicates whether the type of service is primary or secondary.
-     * 
- * - * bool is_primary = 3; - * @return The isPrimary. - */ - boolean getIsPrimary(); - - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - java.util.List - getCharacteristicsList(); - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristics(int index); - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - int getCharacteristicsCount(); - - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - java.util.List - getIncludedServicesList(); - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - com.pauldemarco.flutter_blue.Protos.BluetoothService getIncludedServices(int index); - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - int getIncludedServicesCount(); - } - /** - * Protobuf type {@code BluetoothService} - */ - public static final class BluetoothService extends - com.google.protobuf.GeneratedMessageLite< - BluetoothService, BluetoothService.Builder> implements - // @@protoc_insertion_point(message_implements:BluetoothService) - BluetoothServiceOrBuilder { - private BluetoothService() { - uuid_ = ""; - remoteId_ = ""; - characteristics_ = emptyProtobufList(); - includedServices_ = emptyProtobufList(); - } - public static final int UUID_FIELD_NUMBER = 1; - private java.lang.String uuid_; - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return uuid_; - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(uuid_); - } - /** - * string uuid = 1; - * @param value The uuid to set. - */ - private void setUuid( - java.lang.String value) { - value.getClass(); - - uuid_ = value; - } - /** - * string uuid = 1; - */ - private void clearUuid() { - - uuid_ = getDefaultInstance().getUuid(); - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - */ - private void setUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - uuid_ = value.toStringUtf8(); - - } - - public static final int REMOTE_ID_FIELD_NUMBER = 2; - private java.lang.String remoteId_; - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 2; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int IS_PRIMARY_FIELD_NUMBER = 3; - private boolean isPrimary_; - /** - *
-     * Indicates whether the type of service is primary or secondary.
-     * 
- * - * bool is_primary = 3; - * @return The isPrimary. - */ - @java.lang.Override - public boolean getIsPrimary() { - return isPrimary_; - } - /** - *
-     * Indicates whether the type of service is primary or secondary.
-     * 
- * - * bool is_primary = 3; - * @param value The isPrimary to set. - */ - private void setIsPrimary(boolean value) { - - isPrimary_ = value; - } - /** - *
-     * Indicates whether the type of service is primary or secondary.
-     * 
- * - * bool is_primary = 3; - */ - private void clearIsPrimary() { - - isPrimary_ = false; - } - - public static final int CHARACTERISTICS_FIELD_NUMBER = 4; - private com.google.protobuf.Internal.ProtobufList characteristics_; - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public java.util.List getCharacteristicsList() { - return characteristics_; - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public java.util.List - getCharacteristicsOrBuilderList() { - return characteristics_; - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public int getCharacteristicsCount() { - return characteristics_.size(); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristics(int index) { - return characteristics_.get(index); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristicOrBuilder getCharacteristicsOrBuilder( - int index) { - return characteristics_.get(index); - } - private void ensureCharacteristicsIsMutable() { - if (!characteristics_.isModifiable()) { - characteristics_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(characteristics_); - } - } - - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void setCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - ensureCharacteristicsIsMutable(); - characteristics_.set(index, value); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void addCharacteristics(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - ensureCharacteristicsIsMutable(); - characteristics_.add(value); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void addCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - ensureCharacteristicsIsMutable(); - characteristics_.add(index, value); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void addAllCharacteristics( - java.lang.Iterable values) { - ensureCharacteristicsIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, characteristics_); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void clearCharacteristics() { - characteristics_ = emptyProtobufList(); - } - /** - *
-     * A list of characteristics that have been discovered in this service.
-     * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - private void removeCharacteristics(int index) { - ensureCharacteristicsIsMutable(); - characteristics_.remove(index); - } - - public static final int INCLUDED_SERVICES_FIELD_NUMBER = 5; - private com.google.protobuf.Internal.ProtobufList includedServices_; - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public java.util.List getIncludedServicesList() { - return includedServices_; - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - public java.util.List - getIncludedServicesOrBuilderList() { - return includedServices_; - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public int getIncludedServicesCount() { - return includedServices_.size(); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothService getIncludedServices(int index) { - return includedServices_.get(index); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - public com.pauldemarco.flutter_blue.Protos.BluetoothServiceOrBuilder getIncludedServicesOrBuilder( - int index) { - return includedServices_.get(index); - } - private void ensureIncludedServicesIsMutable() { - if (!includedServices_.isModifiable()) { - includedServices_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(includedServices_); - } - } - - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void setIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureIncludedServicesIsMutable(); - includedServices_.set(index, value); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void addIncludedServices(com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureIncludedServicesIsMutable(); - includedServices_.add(value); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void addIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureIncludedServicesIsMutable(); - includedServices_.add(index, value); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void addAllIncludedServices( - java.lang.Iterable values) { - ensureIncludedServicesIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, includedServices_); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void clearIncludedServices() { - includedServices_ = emptyProtobufList(); - } - /** - *
-     * A list of included services that have been discovered in this service.
-     * 
- * - * repeated .BluetoothService included_services = 5; - */ - private void removeIncludedServices(int index) { - ensureIncludedServicesIsMutable(); - includedServices_.remove(index); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothService parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.BluetoothService prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code BluetoothService} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.BluetoothService, Builder> implements - // @@protoc_insertion_point(builder_implements:BluetoothService) - com.pauldemarco.flutter_blue.Protos.BluetoothServiceOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.BluetoothService.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return instance.getUuid(); - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return instance.getUuidBytes(); - } - /** - * string uuid = 1; - * @param value The uuid to set. - * @return This builder for chaining. - */ - public Builder setUuid( - java.lang.String value) { - copyOnWrite(); - instance.setUuid(value); - return this; - } - /** - * string uuid = 1; - * @return This builder for chaining. - */ - public Builder clearUuid() { - copyOnWrite(); - instance.clearUuid(); - return this; - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - * @return This builder for chaining. - */ - public Builder setUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setUuidBytes(value); - return this; - } - - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 2; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - *
-       * Indicates whether the type of service is primary or secondary.
-       * 
- * - * bool is_primary = 3; - * @return The isPrimary. - */ - @java.lang.Override - public boolean getIsPrimary() { - return instance.getIsPrimary(); - } - /** - *
-       * Indicates whether the type of service is primary or secondary.
-       * 
- * - * bool is_primary = 3; - * @param value The isPrimary to set. - * @return This builder for chaining. - */ - public Builder setIsPrimary(boolean value) { - copyOnWrite(); - instance.setIsPrimary(value); - return this; - } - /** - *
-       * Indicates whether the type of service is primary or secondary.
-       * 
- * - * bool is_primary = 3; - * @return This builder for chaining. - */ - public Builder clearIsPrimary() { - copyOnWrite(); - instance.clearIsPrimary(); - return this; - } - - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public java.util.List getCharacteristicsList() { - return java.util.Collections.unmodifiableList( - instance.getCharacteristicsList()); - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public int getCharacteristicsCount() { - return instance.getCharacteristicsCount(); - }/** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristics(int index) { - return instance.getCharacteristics(index); - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder setCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.setCharacteristics(index, value); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder setCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.setCharacteristics(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder addCharacteristics(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.addCharacteristics(value); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder addCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.addCharacteristics(index, value); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder addCharacteristics( - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.addCharacteristics(builderForValue.build()); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder addCharacteristics( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.addCharacteristics(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder addAllCharacteristics( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllCharacteristics(values); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder clearCharacteristics() { - copyOnWrite(); - instance.clearCharacteristics(); - return this; - } - /** - *
-       * A list of characteristics that have been discovered in this service.
-       * 
- * - * repeated .BluetoothCharacteristic characteristics = 4; - */ - public Builder removeCharacteristics(int index) { - copyOnWrite(); - instance.removeCharacteristics(index); - return this; - } - - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public java.util.List getIncludedServicesList() { - return java.util.Collections.unmodifiableList( - instance.getIncludedServicesList()); - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public int getIncludedServicesCount() { - return instance.getIncludedServicesCount(); - }/** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothService getIncludedServices(int index) { - return instance.getIncludedServices(index); - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder setIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.setIncludedServices(index, value); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder setIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.setIncludedServices(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder addIncludedServices(com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.addIncludedServices(value); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder addIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.addIncludedServices(index, value); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder addIncludedServices( - com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.addIncludedServices(builderForValue.build()); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder addIncludedServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.addIncludedServices(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder addAllIncludedServices( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllIncludedServices(values); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder clearIncludedServices() { - copyOnWrite(); - instance.clearIncludedServices(); - return this; - } - /** - *
-       * A list of included services that have been discovered in this service.
-       * 
- * - * repeated .BluetoothService included_services = 5; - */ - public Builder removeIncludedServices(int index) { - copyOnWrite(); - instance.removeIncludedServices(index); - return this; - } - - // @@protoc_insertion_point(builder_scope:BluetoothService) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.BluetoothService(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "uuid_", - "remoteId_", - "isPrimary_", - "characteristics_", - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.class, - "includedServices_", - com.pauldemarco.flutter_blue.Protos.BluetoothService.class, - }; - java.lang.String info = - "\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0002\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0007\u0004\u001b\u0005\u001b"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.BluetoothService.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:BluetoothService) - private static final com.pauldemarco.flutter_blue.Protos.BluetoothService DEFAULT_INSTANCE; - static { - BluetoothService defaultInstance = new BluetoothService(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - BluetoothService.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothService getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface BluetoothCharacteristicOrBuilder extends - // @@protoc_insertion_point(interface_extends:BluetoothCharacteristic) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string uuid = 1; - * @return The uuid. - */ - java.lang.String getUuid(); - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - com.google.protobuf.ByteString - getUuidBytes(); - - /** - * string remote_id = 2; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - java.util.List - getDescriptorsList(); - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor getDescriptors(int index); - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - int getDescriptorsCount(); - - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - * @return Whether the properties field is set. - */ - boolean hasProperties(); - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - * @return The properties. - */ - com.pauldemarco.flutter_blue.Protos.CharacteristicProperties getProperties(); - - /** - * bytes value = 7; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - } - /** - * Protobuf type {@code BluetoothCharacteristic} - */ - public static final class BluetoothCharacteristic extends - com.google.protobuf.GeneratedMessageLite< - BluetoothCharacteristic, BluetoothCharacteristic.Builder> implements - // @@protoc_insertion_point(message_implements:BluetoothCharacteristic) - BluetoothCharacteristicOrBuilder { - private BluetoothCharacteristic() { - uuid_ = ""; - remoteId_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - descriptors_ = emptyProtobufList(); - value_ = com.google.protobuf.ByteString.EMPTY; - } - public static final int UUID_FIELD_NUMBER = 1; - private java.lang.String uuid_; - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return uuid_; - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(uuid_); - } - /** - * string uuid = 1; - * @param value The uuid to set. - */ - private void setUuid( - java.lang.String value) { - value.getClass(); - - uuid_ = value; - } - /** - * string uuid = 1; - */ - private void clearUuid() { - - uuid_ = getDefaultInstance().getUuid(); - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - */ - private void setUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - uuid_ = value.toStringUtf8(); - - } - - public static final int REMOTE_ID_FIELD_NUMBER = 2; - private java.lang.String remoteId_; - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 2; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int SERVICEUUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - *
-     * The service that this characteristic belongs to.
-     * 
- * - * string serviceUuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARYSERVICEUUID_FIELD_NUMBER = 4; - private java.lang.String secondaryServiceUuid_; - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - *
-     * The secondary service if nested
-     * 
- * - * string secondaryServiceUuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static final int DESCRIPTORS_FIELD_NUMBER = 5; - private com.google.protobuf.Internal.ProtobufList descriptors_; - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public java.util.List getDescriptorsList() { - return descriptors_; - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public java.util.List - getDescriptorsOrBuilderList() { - return descriptors_; - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public int getDescriptorsCount() { - return descriptors_.size(); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor getDescriptors(int index) { - return descriptors_.get(index); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public com.pauldemarco.flutter_blue.Protos.BluetoothDescriptorOrBuilder getDescriptorsOrBuilder( - int index) { - return descriptors_.get(index); - } - private void ensureDescriptorsIsMutable() { - if (!descriptors_.isModifiable()) { - descriptors_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(descriptors_); - } - } - - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void setDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - value.getClass(); - ensureDescriptorsIsMutable(); - descriptors_.set(index, value); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void addDescriptors(com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - value.getClass(); - ensureDescriptorsIsMutable(); - descriptors_.add(value); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void addDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - value.getClass(); - ensureDescriptorsIsMutable(); - descriptors_.add(index, value); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void addAllDescriptors( - java.lang.Iterable values) { - ensureDescriptorsIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, descriptors_); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void clearDescriptors() { - descriptors_ = emptyProtobufList(); - } - /** - *
-     * A list of descriptors that have been discovered in this characteristic.
-     * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - private void removeDescriptors(int index) { - ensureDescriptorsIsMutable(); - descriptors_.remove(index); - } - - public static final int PROPERTIES_FIELD_NUMBER = 6; - private com.pauldemarco.flutter_blue.Protos.CharacteristicProperties properties_; - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - */ - @java.lang.Override - public boolean hasProperties() { - return properties_ != null; - } - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.CharacteristicProperties getProperties() { - return properties_ == null ? com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.getDefaultInstance() : properties_; - } - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - */ - private void setProperties(com.pauldemarco.flutter_blue.Protos.CharacteristicProperties value) { - value.getClass(); - properties_ = value; - - } - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeProperties(com.pauldemarco.flutter_blue.Protos.CharacteristicProperties value) { - value.getClass(); - if (properties_ != null && - properties_ != com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.getDefaultInstance()) { - properties_ = - com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.newBuilder(properties_).mergeFrom(value).buildPartial(); - } else { - properties_ = value; - } - - } - /** - *
-     * The properties of the characteristic.
-     * 
- * - * .CharacteristicProperties properties = 6; - */ - private void clearProperties() { properties_ = null; - - } - - public static final int VALUE_FIELD_NUMBER = 7; - private com.google.protobuf.ByteString value_; - /** - * bytes value = 7; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - * bytes value = 7; - * @param value The value to set. - */ - private void setValue(com.google.protobuf.ByteString value) { - value.getClass(); - - value_ = value; - } - /** - * bytes value = 7; - */ - private void clearValue() { - - value_ = getDefaultInstance().getValue(); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code BluetoothCharacteristic} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic, Builder> implements - // @@protoc_insertion_point(builder_implements:BluetoothCharacteristic) - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristicOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return instance.getUuid(); - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return instance.getUuidBytes(); - } - /** - * string uuid = 1; - * @param value The uuid to set. - * @return This builder for chaining. - */ - public Builder setUuid( - java.lang.String value) { - copyOnWrite(); - instance.setUuid(value); - return this; - } - /** - * string uuid = 1; - * @return This builder for chaining. - */ - public Builder clearUuid() { - copyOnWrite(); - instance.clearUuid(); - return this; - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - * @return This builder for chaining. - */ - public Builder setUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setUuidBytes(value); - return this; - } - - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 2; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - *
-       * The service that this characteristic belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - *
-       * The service that this characteristic belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - *
-       * The service that this characteristic belongs to.
-       * 
- * - * string serviceUuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - *
-       * The service that this characteristic belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - *
-       * The service that this characteristic belongs to.
-       * 
- * - * string serviceUuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - *
-       * The secondary service if nested
-       * 
- * - * string secondaryServiceUuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - *
-       * The secondary service if nested
-       * 
- * - * string secondaryServiceUuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - *
-       * The secondary service if nested
-       * 
- * - * string secondaryServiceUuid = 4; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - *
-       * The secondary service if nested
-       * 
- * - * string secondaryServiceUuid = 4; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - *
-       * The secondary service if nested
-       * 
- * - * string secondaryServiceUuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public java.util.List getDescriptorsList() { - return java.util.Collections.unmodifiableList( - instance.getDescriptorsList()); - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public int getDescriptorsCount() { - return instance.getDescriptorsCount(); - }/** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor getDescriptors(int index) { - return instance.getDescriptors(index); - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder setDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - copyOnWrite(); - instance.setDescriptors(index, value); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder setDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.Builder builderForValue) { - copyOnWrite(); - instance.setDescriptors(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder addDescriptors(com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - copyOnWrite(); - instance.addDescriptors(value); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder addDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor value) { - copyOnWrite(); - instance.addDescriptors(index, value); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder addDescriptors( - com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.Builder builderForValue) { - copyOnWrite(); - instance.addDescriptors(builderForValue.build()); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder addDescriptors( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.Builder builderForValue) { - copyOnWrite(); - instance.addDescriptors(index, - builderForValue.build()); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder addAllDescriptors( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllDescriptors(values); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder clearDescriptors() { - copyOnWrite(); - instance.clearDescriptors(); - return this; - } - /** - *
-       * A list of descriptors that have been discovered in this characteristic.
-       * 
- * - * repeated .BluetoothDescriptor descriptors = 5; - */ - public Builder removeDescriptors(int index) { - copyOnWrite(); - instance.removeDescriptors(index); - return this; - } - - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - @java.lang.Override - public boolean hasProperties() { - return instance.hasProperties(); - } - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.CharacteristicProperties getProperties() { - return instance.getProperties(); - } - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - public Builder setProperties(com.pauldemarco.flutter_blue.Protos.CharacteristicProperties value) { - copyOnWrite(); - instance.setProperties(value); - return this; - } - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - public Builder setProperties( - com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.Builder builderForValue) { - copyOnWrite(); - instance.setProperties(builderForValue.build()); - return this; - } - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - public Builder mergeProperties(com.pauldemarco.flutter_blue.Protos.CharacteristicProperties value) { - copyOnWrite(); - instance.mergeProperties(value); - return this; - } - /** - *
-       * The properties of the characteristic.
-       * 
- * - * .CharacteristicProperties properties = 6; - */ - public Builder clearProperties() { copyOnWrite(); - instance.clearProperties(); - return this; - } - - /** - * bytes value = 7; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return instance.getValue(); - } - /** - * bytes value = 7; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - * bytes value = 7; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:BluetoothCharacteristic) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "uuid_", - "remoteId_", - "serviceUuid_", - "secondaryServiceUuid_", - "descriptors_", - com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.class, - "properties_", - "value_", - }; - java.lang.String info = - "\u0000\u0007\u0000\u0000\u0001\u0007\u0007\u0000\u0001\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\u001b\u0006\t\u0007\n"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:BluetoothCharacteristic) - private static final com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic DEFAULT_INSTANCE; - static { - BluetoothCharacteristic defaultInstance = new BluetoothCharacteristic(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - BluetoothCharacteristic.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface BluetoothDescriptorOrBuilder extends - // @@protoc_insertion_point(interface_extends:BluetoothDescriptor) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string uuid = 1; - * @return The uuid. - */ - java.lang.String getUuid(); - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - com.google.protobuf.ByteString - getUuidBytes(); - - /** - * string remote_id = 2; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - - /** - * bytes value = 5; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - } - /** - * Protobuf type {@code BluetoothDescriptor} - */ - public static final class BluetoothDescriptor extends - com.google.protobuf.GeneratedMessageLite< - BluetoothDescriptor, BluetoothDescriptor.Builder> implements - // @@protoc_insertion_point(message_implements:BluetoothDescriptor) - BluetoothDescriptorOrBuilder { - private BluetoothDescriptor() { - uuid_ = ""; - remoteId_ = ""; - serviceUuid_ = ""; - characteristicUuid_ = ""; - value_ = com.google.protobuf.ByteString.EMPTY; - } - public static final int UUID_FIELD_NUMBER = 1; - private java.lang.String uuid_; - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return uuid_; - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(uuid_); - } - /** - * string uuid = 1; - * @param value The uuid to set. - */ - private void setUuid( - java.lang.String value) { - value.getClass(); - - uuid_ = value; - } - /** - * string uuid = 1; - */ - private void clearUuid() { - - uuid_ = getDefaultInstance().getUuid(); - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - */ - private void setUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - uuid_ = value.toStringUtf8(); - - } - - public static final int REMOTE_ID_FIELD_NUMBER = 2; - private java.lang.String remoteId_; - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 2; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int SERVICEUUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - *
-     * The service that this descriptor belongs to.
-     * 
- * - * string serviceUuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTICUUID_FIELD_NUMBER = 4; - private java.lang.String characteristicUuid_; - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - *
-     * The characteristic that this descriptor belongs to.
-     * 
- * - * string characteristicUuid = 4; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static final int VALUE_FIELD_NUMBER = 5; - private com.google.protobuf.ByteString value_; - /** - * bytes value = 5; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - * bytes value = 5; - * @param value The value to set. - */ - private void setValue(com.google.protobuf.ByteString value) { - value.getClass(); - - value_ = value; - } - /** - * bytes value = 5; - */ - private void clearValue() { - - value_ = getDefaultInstance().getValue(); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code BluetoothDescriptor} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor, Builder> implements - // @@protoc_insertion_point(builder_implements:BluetoothDescriptor) - com.pauldemarco.flutter_blue.Protos.BluetoothDescriptorOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string uuid = 1; - * @return The uuid. - */ - @java.lang.Override - public java.lang.String getUuid() { - return instance.getUuid(); - } - /** - * string uuid = 1; - * @return The bytes for uuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getUuidBytes() { - return instance.getUuidBytes(); - } - /** - * string uuid = 1; - * @param value The uuid to set. - * @return This builder for chaining. - */ - public Builder setUuid( - java.lang.String value) { - copyOnWrite(); - instance.setUuid(value); - return this; - } - /** - * string uuid = 1; - * @return This builder for chaining. - */ - public Builder clearUuid() { - copyOnWrite(); - instance.clearUuid(); - return this; - } - /** - * string uuid = 1; - * @param value The bytes for uuid to set. - * @return This builder for chaining. - */ - public Builder setUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setUuidBytes(value); - return this; - } - - /** - * string remote_id = 2; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 2; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 2; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 2; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 2; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - *
-       * The service that this descriptor belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - *
-       * The service that this descriptor belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - *
-       * The service that this descriptor belongs to.
-       * 
- * - * string serviceUuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - *
-       * The service that this descriptor belongs to.
-       * 
- * - * string serviceUuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - *
-       * The service that this descriptor belongs to.
-       * 
- * - * string serviceUuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - *
-       * The characteristic that this descriptor belongs to.
-       * 
- * - * string characteristicUuid = 4; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - *
-       * The characteristic that this descriptor belongs to.
-       * 
- * - * string characteristicUuid = 4; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - *
-       * The characteristic that this descriptor belongs to.
-       * 
- * - * string characteristicUuid = 4; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - *
-       * The characteristic that this descriptor belongs to.
-       * 
- * - * string characteristicUuid = 4; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - *
-       * The characteristic that this descriptor belongs to.
-       * 
- * - * string characteristicUuid = 4; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - /** - * bytes value = 5; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return instance.getValue(); - } - /** - * bytes value = 5; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - * bytes value = 5; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:BluetoothDescriptor) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "uuid_", - "remoteId_", - "serviceUuid_", - "characteristicUuid_", - "value_", - }; - java.lang.String info = - "\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\n"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:BluetoothDescriptor) - private static final com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor DEFAULT_INSTANCE; - static { - BluetoothDescriptor defaultInstance = new BluetoothDescriptor(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - BluetoothDescriptor.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.BluetoothDescriptor getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface CharacteristicPropertiesOrBuilder extends - // @@protoc_insertion_point(interface_extends:CharacteristicProperties) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * bool broadcast = 1; - * @return The broadcast. - */ - boolean getBroadcast(); - - /** - * bool read = 2; - * @return The read. - */ - boolean getRead(); - - /** - * bool write_without_response = 3; - * @return The writeWithoutResponse. - */ - boolean getWriteWithoutResponse(); - - /** - * bool write = 4; - * @return The write. - */ - boolean getWrite(); - - /** - * bool notify = 5; - * @return The notify. - */ - boolean getNotify(); - - /** - * bool indicate = 6; - * @return The indicate. - */ - boolean getIndicate(); - - /** - * bool authenticated_signed_writes = 7; - * @return The authenticatedSignedWrites. - */ - boolean getAuthenticatedSignedWrites(); - - /** - * bool extended_properties = 8; - * @return The extendedProperties. - */ - boolean getExtendedProperties(); - - /** - * bool notify_encryption_required = 9; - * @return The notifyEncryptionRequired. - */ - boolean getNotifyEncryptionRequired(); - - /** - * bool indicate_encryption_required = 10; - * @return The indicateEncryptionRequired. - */ - boolean getIndicateEncryptionRequired(); - } - /** - * Protobuf type {@code CharacteristicProperties} - */ - public static final class CharacteristicProperties extends - com.google.protobuf.GeneratedMessageLite< - CharacteristicProperties, CharacteristicProperties.Builder> implements - // @@protoc_insertion_point(message_implements:CharacteristicProperties) - CharacteristicPropertiesOrBuilder { - private CharacteristicProperties() { - } - public static final int BROADCAST_FIELD_NUMBER = 1; - private boolean broadcast_; - /** - * bool broadcast = 1; - * @return The broadcast. - */ - @java.lang.Override - public boolean getBroadcast() { - return broadcast_; - } - /** - * bool broadcast = 1; - * @param value The broadcast to set. - */ - private void setBroadcast(boolean value) { - - broadcast_ = value; - } - /** - * bool broadcast = 1; - */ - private void clearBroadcast() { - - broadcast_ = false; - } - - public static final int READ_FIELD_NUMBER = 2; - private boolean read_; - /** - * bool read = 2; - * @return The read. - */ - @java.lang.Override - public boolean getRead() { - return read_; - } - /** - * bool read = 2; - * @param value The read to set. - */ - private void setRead(boolean value) { - - read_ = value; - } - /** - * bool read = 2; - */ - private void clearRead() { - - read_ = false; - } - - public static final int WRITE_WITHOUT_RESPONSE_FIELD_NUMBER = 3; - private boolean writeWithoutResponse_; - /** - * bool write_without_response = 3; - * @return The writeWithoutResponse. - */ - @java.lang.Override - public boolean getWriteWithoutResponse() { - return writeWithoutResponse_; - } - /** - * bool write_without_response = 3; - * @param value The writeWithoutResponse to set. - */ - private void setWriteWithoutResponse(boolean value) { - - writeWithoutResponse_ = value; - } - /** - * bool write_without_response = 3; - */ - private void clearWriteWithoutResponse() { - - writeWithoutResponse_ = false; - } - - public static final int WRITE_FIELD_NUMBER = 4; - private boolean write_; - /** - * bool write = 4; - * @return The write. - */ - @java.lang.Override - public boolean getWrite() { - return write_; - } - /** - * bool write = 4; - * @param value The write to set. - */ - private void setWrite(boolean value) { - - write_ = value; - } - /** - * bool write = 4; - */ - private void clearWrite() { - - write_ = false; - } - - public static final int NOTIFY_FIELD_NUMBER = 5; - private boolean notify_; - /** - * bool notify = 5; - * @return The notify. - */ - @java.lang.Override - public boolean getNotify() { - return notify_; - } - /** - * bool notify = 5; - * @param value The notify to set. - */ - private void setNotify(boolean value) { - - notify_ = value; - } - /** - * bool notify = 5; - */ - private void clearNotify() { - - notify_ = false; - } - - public static final int INDICATE_FIELD_NUMBER = 6; - private boolean indicate_; - /** - * bool indicate = 6; - * @return The indicate. - */ - @java.lang.Override - public boolean getIndicate() { - return indicate_; - } - /** - * bool indicate = 6; - * @param value The indicate to set. - */ - private void setIndicate(boolean value) { - - indicate_ = value; - } - /** - * bool indicate = 6; - */ - private void clearIndicate() { - - indicate_ = false; - } - - public static final int AUTHENTICATED_SIGNED_WRITES_FIELD_NUMBER = 7; - private boolean authenticatedSignedWrites_; - /** - * bool authenticated_signed_writes = 7; - * @return The authenticatedSignedWrites. - */ - @java.lang.Override - public boolean getAuthenticatedSignedWrites() { - return authenticatedSignedWrites_; - } - /** - * bool authenticated_signed_writes = 7; - * @param value The authenticatedSignedWrites to set. - */ - private void setAuthenticatedSignedWrites(boolean value) { - - authenticatedSignedWrites_ = value; - } - /** - * bool authenticated_signed_writes = 7; - */ - private void clearAuthenticatedSignedWrites() { - - authenticatedSignedWrites_ = false; - } - - public static final int EXTENDED_PROPERTIES_FIELD_NUMBER = 8; - private boolean extendedProperties_; - /** - * bool extended_properties = 8; - * @return The extendedProperties. - */ - @java.lang.Override - public boolean getExtendedProperties() { - return extendedProperties_; - } - /** - * bool extended_properties = 8; - * @param value The extendedProperties to set. - */ - private void setExtendedProperties(boolean value) { - - extendedProperties_ = value; - } - /** - * bool extended_properties = 8; - */ - private void clearExtendedProperties() { - - extendedProperties_ = false; - } - - public static final int NOTIFY_ENCRYPTION_REQUIRED_FIELD_NUMBER = 9; - private boolean notifyEncryptionRequired_; - /** - * bool notify_encryption_required = 9; - * @return The notifyEncryptionRequired. - */ - @java.lang.Override - public boolean getNotifyEncryptionRequired() { - return notifyEncryptionRequired_; - } - /** - * bool notify_encryption_required = 9; - * @param value The notifyEncryptionRequired to set. - */ - private void setNotifyEncryptionRequired(boolean value) { - - notifyEncryptionRequired_ = value; - } - /** - * bool notify_encryption_required = 9; - */ - private void clearNotifyEncryptionRequired() { - - notifyEncryptionRequired_ = false; - } - - public static final int INDICATE_ENCRYPTION_REQUIRED_FIELD_NUMBER = 10; - private boolean indicateEncryptionRequired_; - /** - * bool indicate_encryption_required = 10; - * @return The indicateEncryptionRequired. - */ - @java.lang.Override - public boolean getIndicateEncryptionRequired() { - return indicateEncryptionRequired_; - } - /** - * bool indicate_encryption_required = 10; - * @param value The indicateEncryptionRequired to set. - */ - private void setIndicateEncryptionRequired(boolean value) { - - indicateEncryptionRequired_ = value; - } - /** - * bool indicate_encryption_required = 10; - */ - private void clearIndicateEncryptionRequired() { - - indicateEncryptionRequired_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.CharacteristicProperties prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code CharacteristicProperties} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.CharacteristicProperties, Builder> implements - // @@protoc_insertion_point(builder_implements:CharacteristicProperties) - com.pauldemarco.flutter_blue.Protos.CharacteristicPropertiesOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * bool broadcast = 1; - * @return The broadcast. - */ - @java.lang.Override - public boolean getBroadcast() { - return instance.getBroadcast(); - } - /** - * bool broadcast = 1; - * @param value The broadcast to set. - * @return This builder for chaining. - */ - public Builder setBroadcast(boolean value) { - copyOnWrite(); - instance.setBroadcast(value); - return this; - } - /** - * bool broadcast = 1; - * @return This builder for chaining. - */ - public Builder clearBroadcast() { - copyOnWrite(); - instance.clearBroadcast(); - return this; - } - - /** - * bool read = 2; - * @return The read. - */ - @java.lang.Override - public boolean getRead() { - return instance.getRead(); - } - /** - * bool read = 2; - * @param value The read to set. - * @return This builder for chaining. - */ - public Builder setRead(boolean value) { - copyOnWrite(); - instance.setRead(value); - return this; - } - /** - * bool read = 2; - * @return This builder for chaining. - */ - public Builder clearRead() { - copyOnWrite(); - instance.clearRead(); - return this; - } - - /** - * bool write_without_response = 3; - * @return The writeWithoutResponse. - */ - @java.lang.Override - public boolean getWriteWithoutResponse() { - return instance.getWriteWithoutResponse(); - } - /** - * bool write_without_response = 3; - * @param value The writeWithoutResponse to set. - * @return This builder for chaining. - */ - public Builder setWriteWithoutResponse(boolean value) { - copyOnWrite(); - instance.setWriteWithoutResponse(value); - return this; - } - /** - * bool write_without_response = 3; - * @return This builder for chaining. - */ - public Builder clearWriteWithoutResponse() { - copyOnWrite(); - instance.clearWriteWithoutResponse(); - return this; - } - - /** - * bool write = 4; - * @return The write. - */ - @java.lang.Override - public boolean getWrite() { - return instance.getWrite(); - } - /** - * bool write = 4; - * @param value The write to set. - * @return This builder for chaining. - */ - public Builder setWrite(boolean value) { - copyOnWrite(); - instance.setWrite(value); - return this; - } - /** - * bool write = 4; - * @return This builder for chaining. - */ - public Builder clearWrite() { - copyOnWrite(); - instance.clearWrite(); - return this; - } - - /** - * bool notify = 5; - * @return The notify. - */ - @java.lang.Override - public boolean getNotify() { - return instance.getNotify(); - } - /** - * bool notify = 5; - * @param value The notify to set. - * @return This builder for chaining. - */ - public Builder setNotify(boolean value) { - copyOnWrite(); - instance.setNotify(value); - return this; - } - /** - * bool notify = 5; - * @return This builder for chaining. - */ - public Builder clearNotify() { - copyOnWrite(); - instance.clearNotify(); - return this; - } - - /** - * bool indicate = 6; - * @return The indicate. - */ - @java.lang.Override - public boolean getIndicate() { - return instance.getIndicate(); - } - /** - * bool indicate = 6; - * @param value The indicate to set. - * @return This builder for chaining. - */ - public Builder setIndicate(boolean value) { - copyOnWrite(); - instance.setIndicate(value); - return this; - } - /** - * bool indicate = 6; - * @return This builder for chaining. - */ - public Builder clearIndicate() { - copyOnWrite(); - instance.clearIndicate(); - return this; - } - - /** - * bool authenticated_signed_writes = 7; - * @return The authenticatedSignedWrites. - */ - @java.lang.Override - public boolean getAuthenticatedSignedWrites() { - return instance.getAuthenticatedSignedWrites(); - } - /** - * bool authenticated_signed_writes = 7; - * @param value The authenticatedSignedWrites to set. - * @return This builder for chaining. - */ - public Builder setAuthenticatedSignedWrites(boolean value) { - copyOnWrite(); - instance.setAuthenticatedSignedWrites(value); - return this; - } - /** - * bool authenticated_signed_writes = 7; - * @return This builder for chaining. - */ - public Builder clearAuthenticatedSignedWrites() { - copyOnWrite(); - instance.clearAuthenticatedSignedWrites(); - return this; - } - - /** - * bool extended_properties = 8; - * @return The extendedProperties. - */ - @java.lang.Override - public boolean getExtendedProperties() { - return instance.getExtendedProperties(); - } - /** - * bool extended_properties = 8; - * @param value The extendedProperties to set. - * @return This builder for chaining. - */ - public Builder setExtendedProperties(boolean value) { - copyOnWrite(); - instance.setExtendedProperties(value); - return this; - } - /** - * bool extended_properties = 8; - * @return This builder for chaining. - */ - public Builder clearExtendedProperties() { - copyOnWrite(); - instance.clearExtendedProperties(); - return this; - } - - /** - * bool notify_encryption_required = 9; - * @return The notifyEncryptionRequired. - */ - @java.lang.Override - public boolean getNotifyEncryptionRequired() { - return instance.getNotifyEncryptionRequired(); - } - /** - * bool notify_encryption_required = 9; - * @param value The notifyEncryptionRequired to set. - * @return This builder for chaining. - */ - public Builder setNotifyEncryptionRequired(boolean value) { - copyOnWrite(); - instance.setNotifyEncryptionRequired(value); - return this; - } - /** - * bool notify_encryption_required = 9; - * @return This builder for chaining. - */ - public Builder clearNotifyEncryptionRequired() { - copyOnWrite(); - instance.clearNotifyEncryptionRequired(); - return this; - } - - /** - * bool indicate_encryption_required = 10; - * @return The indicateEncryptionRequired. - */ - @java.lang.Override - public boolean getIndicateEncryptionRequired() { - return instance.getIndicateEncryptionRequired(); - } - /** - * bool indicate_encryption_required = 10; - * @param value The indicateEncryptionRequired to set. - * @return This builder for chaining. - */ - public Builder setIndicateEncryptionRequired(boolean value) { - copyOnWrite(); - instance.setIndicateEncryptionRequired(value); - return this; - } - /** - * bool indicate_encryption_required = 10; - * @return This builder for chaining. - */ - public Builder clearIndicateEncryptionRequired() { - copyOnWrite(); - instance.clearIndicateEncryptionRequired(); - return this; - } - - // @@protoc_insertion_point(builder_scope:CharacteristicProperties) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.CharacteristicProperties(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "broadcast_", - "read_", - "writeWithoutResponse_", - "write_", - "notify_", - "indicate_", - "authenticatedSignedWrites_", - "extendedProperties_", - "notifyEncryptionRequired_", - "indicateEncryptionRequired_", - }; - java.lang.String info = - "\u0000\n\u0000\u0000\u0001\n\n\u0000\u0000\u0000\u0001\u0007\u0002\u0007\u0003\u0007" + - "\u0004\u0007\u0005\u0007\u0006\u0007\u0007\u0007\b\u0007\t\u0007\n\u0007"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.CharacteristicProperties.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:CharacteristicProperties) - private static final com.pauldemarco.flutter_blue.Protos.CharacteristicProperties DEFAULT_INSTANCE; - static { - CharacteristicProperties defaultInstance = new CharacteristicProperties(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - CharacteristicProperties.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.CharacteristicProperties getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface DiscoverServicesResultOrBuilder extends - // @@protoc_insertion_point(interface_extends:DiscoverServicesResult) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * repeated .BluetoothService services = 2; - */ - java.util.List - getServicesList(); - /** - * repeated .BluetoothService services = 2; - */ - com.pauldemarco.flutter_blue.Protos.BluetoothService getServices(int index); - /** - * repeated .BluetoothService services = 2; - */ - int getServicesCount(); - } - /** - * Protobuf type {@code DiscoverServicesResult} - */ - public static final class DiscoverServicesResult extends - com.google.protobuf.GeneratedMessageLite< - DiscoverServicesResult, DiscoverServicesResult.Builder> implements - // @@protoc_insertion_point(message_implements:DiscoverServicesResult) - DiscoverServicesResultOrBuilder { - private DiscoverServicesResult() { - remoteId_ = ""; - services_ = emptyProtobufList(); - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int SERVICES_FIELD_NUMBER = 2; - private com.google.protobuf.Internal.ProtobufList services_; - /** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public java.util.List getServicesList() { - return services_; - } - /** - * repeated .BluetoothService services = 2; - */ - public java.util.List - getServicesOrBuilderList() { - return services_; - } - /** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public int getServicesCount() { - return services_.size(); - } - /** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothService getServices(int index) { - return services_.get(index); - } - /** - * repeated .BluetoothService services = 2; - */ - public com.pauldemarco.flutter_blue.Protos.BluetoothServiceOrBuilder getServicesOrBuilder( - int index) { - return services_.get(index); - } - private void ensureServicesIsMutable() { - if (!services_.isModifiable()) { - services_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(services_); - } - } - - /** - * repeated .BluetoothService services = 2; - */ - private void setServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureServicesIsMutable(); - services_.set(index, value); - } - /** - * repeated .BluetoothService services = 2; - */ - private void addServices(com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureServicesIsMutable(); - services_.add(value); - } - /** - * repeated .BluetoothService services = 2; - */ - private void addServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - value.getClass(); - ensureServicesIsMutable(); - services_.add(index, value); - } - /** - * repeated .BluetoothService services = 2; - */ - private void addAllServices( - java.lang.Iterable values) { - ensureServicesIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, services_); - } - /** - * repeated .BluetoothService services = 2; - */ - private void clearServices() { - services_ = emptyProtobufList(); - } - /** - * repeated .BluetoothService services = 2; - */ - private void removeServices(int index) { - ensureServicesIsMutable(); - services_.remove(index); - } - - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code DiscoverServicesResult} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult, Builder> implements - // @@protoc_insertion_point(builder_implements:DiscoverServicesResult) - com.pauldemarco.flutter_blue.Protos.DiscoverServicesResultOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public java.util.List getServicesList() { - return java.util.Collections.unmodifiableList( - instance.getServicesList()); - } - /** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public int getServicesCount() { - return instance.getServicesCount(); - }/** - * repeated .BluetoothService services = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothService getServices(int index) { - return instance.getServices(index); - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder setServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.setServices(index, value); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder setServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.setServices(index, - builderForValue.build()); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder addServices(com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.addServices(value); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder addServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService value) { - copyOnWrite(); - instance.addServices(index, value); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder addServices( - com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.addServices(builderForValue.build()); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder addServices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothService.Builder builderForValue) { - copyOnWrite(); - instance.addServices(index, - builderForValue.build()); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder addAllServices( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllServices(values); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder clearServices() { - copyOnWrite(); - instance.clearServices(); - return this; - } - /** - * repeated .BluetoothService services = 2; - */ - public Builder removeServices(int index) { - copyOnWrite(); - instance.removeServices(index); - return this; - } - - // @@protoc_insertion_point(builder_scope:DiscoverServicesResult) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "services_", - com.pauldemarco.flutter_blue.Protos.BluetoothService.class, - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0001\u0000\u0001\u0208\u0002\u001b" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:DiscoverServicesResult) - private static final com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult DEFAULT_INSTANCE; - static { - DiscoverServicesResult defaultInstance = new DiscoverServicesResult(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - DiscoverServicesResult.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.DiscoverServicesResult getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ReadCharacteristicRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:ReadCharacteristicRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - } - /** - * Protobuf type {@code ReadCharacteristicRequest} - */ - public static final class ReadCharacteristicRequest extends - com.google.protobuf.GeneratedMessageLite< - ReadCharacteristicRequest, ReadCharacteristicRequest.Builder> implements - // @@protoc_insertion_point(message_implements:ReadCharacteristicRequest) - ReadCharacteristicRequestOrBuilder { - private ReadCharacteristicRequest() { - remoteId_ = ""; - characteristicUuid_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_UUID_FIELD_NUMBER = 2; - private java.lang.String characteristicUuid_; - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - * string characteristic_uuid = 2; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - * string characteristic_uuid = 2; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 2; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static final int SERVICE_UUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - * string service_uuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARY_SERVICE_UUID_FIELD_NUMBER = 4; - private java.lang.String secondaryServiceUuid_; - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - * string secondary_service_uuid = 4; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ReadCharacteristicRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:ReadCharacteristicRequest) - com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - * string characteristic_uuid = 2; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - * string characteristic_uuid = 2; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - * string characteristic_uuid = 2; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - * string service_uuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - * string secondary_service_uuid = 4; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - // @@protoc_insertion_point(builder_scope:ReadCharacteristicRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "characteristicUuid_", - "serviceUuid_", - "secondaryServiceUuid_", - }; - java.lang.String info = - "\u0000\u0004\u0000\u0000\u0001\u0004\u0004\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ReadCharacteristicRequest) - private static final com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest DEFAULT_INSTANCE; - static { - ReadCharacteristicRequest defaultInstance = new ReadCharacteristicRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ReadCharacteristicRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ReadCharacteristicResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:ReadCharacteristicResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * .BluetoothCharacteristic characteristic = 2; - * @return Whether the characteristic field is set. - */ - boolean hasCharacteristic(); - /** - * .BluetoothCharacteristic characteristic = 2; - * @return The characteristic. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic(); - } - /** - * Protobuf type {@code ReadCharacteristicResponse} - */ - public static final class ReadCharacteristicResponse extends - com.google.protobuf.GeneratedMessageLite< - ReadCharacteristicResponse, ReadCharacteristicResponse.Builder> implements - // @@protoc_insertion_point(message_implements:ReadCharacteristicResponse) - ReadCharacteristicResponseOrBuilder { - private ReadCharacteristicResponse() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_FIELD_NUMBER = 2; - private com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic characteristic_; - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return characteristic_ != null; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return characteristic_ == null ? com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance() : characteristic_; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - characteristic_ = value; - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - if (characteristic_ != null && - characteristic_ != com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance()) { - characteristic_ = - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.newBuilder(characteristic_).mergeFrom(value).buildPartial(); - } else { - characteristic_ = value; - } - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void clearCharacteristic() { characteristic_ = null; - - } - - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ReadCharacteristicResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:ReadCharacteristicResponse) - com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return instance.hasCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return instance.getCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.setCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic( - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.setCharacteristic(builderForValue.build()); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.mergeCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder clearCharacteristic() { copyOnWrite(); - instance.clearCharacteristic(); - return this; - } - - // @@protoc_insertion_point(builder_scope:ReadCharacteristicResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "characteristic_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\t" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ReadCharacteristicResponse) - private static final com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse DEFAULT_INSTANCE; - static { - ReadCharacteristicResponse defaultInstance = new ReadCharacteristicResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ReadCharacteristicResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ReadCharacteristicResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ReadDescriptorRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:ReadDescriptorRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - java.lang.String getDescriptorUuid(); - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - com.google.protobuf.ByteString - getDescriptorUuidBytes(); - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - } - /** - * Protobuf type {@code ReadDescriptorRequest} - */ - public static final class ReadDescriptorRequest extends - com.google.protobuf.GeneratedMessageLite< - ReadDescriptorRequest, ReadDescriptorRequest.Builder> implements - // @@protoc_insertion_point(message_implements:ReadDescriptorRequest) - ReadDescriptorRequestOrBuilder { - private ReadDescriptorRequest() { - remoteId_ = ""; - descriptorUuid_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - characteristicUuid_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int DESCRIPTOR_UUID_FIELD_NUMBER = 2; - private java.lang.String descriptorUuid_; - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - @java.lang.Override - public java.lang.String getDescriptorUuid() { - return descriptorUuid_; - } - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDescriptorUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(descriptorUuid_); - } - /** - * string descriptor_uuid = 2; - * @param value The descriptorUuid to set. - */ - private void setDescriptorUuid( - java.lang.String value) { - value.getClass(); - - descriptorUuid_ = value; - } - /** - * string descriptor_uuid = 2; - */ - private void clearDescriptorUuid() { - - descriptorUuid_ = getDefaultInstance().getDescriptorUuid(); - } - /** - * string descriptor_uuid = 2; - * @param value The bytes for descriptorUuid to set. - */ - private void setDescriptorUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - descriptorUuid_ = value.toStringUtf8(); - - } - - public static final int SERVICE_UUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - * string service_uuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARY_SERVICE_UUID_FIELD_NUMBER = 4; - private java.lang.String secondaryServiceUuid_; - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - * string secondary_service_uuid = 4; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_UUID_FIELD_NUMBER = 5; - private java.lang.String characteristicUuid_; - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - * string characteristic_uuid = 5; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - * string characteristic_uuid = 5; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 5; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ReadDescriptorRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:ReadDescriptorRequest) - com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - @java.lang.Override - public java.lang.String getDescriptorUuid() { - return instance.getDescriptorUuid(); - } - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDescriptorUuidBytes() { - return instance.getDescriptorUuidBytes(); - } - /** - * string descriptor_uuid = 2; - * @param value The descriptorUuid to set. - * @return This builder for chaining. - */ - public Builder setDescriptorUuid( - java.lang.String value) { - copyOnWrite(); - instance.setDescriptorUuid(value); - return this; - } - /** - * string descriptor_uuid = 2; - * @return This builder for chaining. - */ - public Builder clearDescriptorUuid() { - copyOnWrite(); - instance.clearDescriptorUuid(); - return this; - } - /** - * string descriptor_uuid = 2; - * @param value The bytes for descriptorUuid to set. - * @return This builder for chaining. - */ - public Builder setDescriptorUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setDescriptorUuidBytes(value); - return this; - } - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - * string service_uuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - * string secondary_service_uuid = 4; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - * string characteristic_uuid = 5; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - * string characteristic_uuid = 5; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - * string characteristic_uuid = 5; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - // @@protoc_insertion_point(builder_scope:ReadDescriptorRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "descriptorUuid_", - "serviceUuid_", - "secondaryServiceUuid_", - "characteristicUuid_", - }; - java.lang.String info = - "\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\u0208"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ReadDescriptorRequest) - private static final com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest DEFAULT_INSTANCE; - static { - ReadDescriptorRequest defaultInstance = new ReadDescriptorRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ReadDescriptorRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ReadDescriptorResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:ReadDescriptorResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * .ReadDescriptorRequest request = 1; - * @return Whether the request field is set. - */ - boolean hasRequest(); - /** - * .ReadDescriptorRequest request = 1; - * @return The request. - */ - com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest getRequest(); - - /** - * bytes value = 2; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - } - /** - * Protobuf type {@code ReadDescriptorResponse} - */ - public static final class ReadDescriptorResponse extends - com.google.protobuf.GeneratedMessageLite< - ReadDescriptorResponse, ReadDescriptorResponse.Builder> implements - // @@protoc_insertion_point(message_implements:ReadDescriptorResponse) - ReadDescriptorResponseOrBuilder { - private ReadDescriptorResponse() { - value_ = com.google.protobuf.ByteString.EMPTY; - } - public static final int REQUEST_FIELD_NUMBER = 1; - private com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest request_; - /** - * .ReadDescriptorRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return request_ != null; - } - /** - * .ReadDescriptorRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest getRequest() { - return request_ == null ? com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.getDefaultInstance() : request_; - } - /** - * .ReadDescriptorRequest request = 1; - */ - private void setRequest(com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest value) { - value.getClass(); - request_ = value; - - } - /** - * .ReadDescriptorRequest request = 1; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeRequest(com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest value) { - value.getClass(); - if (request_ != null && - request_ != com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.getDefaultInstance()) { - request_ = - com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.newBuilder(request_).mergeFrom(value).buildPartial(); - } else { - request_ = value; - } - - } - /** - * .ReadDescriptorRequest request = 1; - */ - private void clearRequest() { request_ = null; - - } - - public static final int VALUE_FIELD_NUMBER = 2; - private com.google.protobuf.ByteString value_; - /** - * bytes value = 2; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - * bytes value = 2; - * @param value The value to set. - */ - private void setValue(com.google.protobuf.ByteString value) { - value.getClass(); - - value_ = value; - } - /** - * bytes value = 2; - */ - private void clearValue() { - - value_ = getDefaultInstance().getValue(); - } - - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ReadDescriptorResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:ReadDescriptorResponse) - com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * .ReadDescriptorRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return instance.hasRequest(); - } - /** - * .ReadDescriptorRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest getRequest() { - return instance.getRequest(); - } - /** - * .ReadDescriptorRequest request = 1; - */ - public Builder setRequest(com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest value) { - copyOnWrite(); - instance.setRequest(value); - return this; - } - /** - * .ReadDescriptorRequest request = 1; - */ - public Builder setRequest( - com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest.Builder builderForValue) { - copyOnWrite(); - instance.setRequest(builderForValue.build()); - return this; - } - /** - * .ReadDescriptorRequest request = 1; - */ - public Builder mergeRequest(com.pauldemarco.flutter_blue.Protos.ReadDescriptorRequest value) { - copyOnWrite(); - instance.mergeRequest(value); - return this; - } - /** - * .ReadDescriptorRequest request = 1; - */ - public Builder clearRequest() { copyOnWrite(); - instance.clearRequest(); - return this; - } - - /** - * bytes value = 2; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return instance.getValue(); - } - /** - * bytes value = 2; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - * bytes value = 2; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:ReadDescriptorResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "request_", - "value_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\t\u0002\n"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ReadDescriptorResponse) - private static final com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse DEFAULT_INSTANCE; - static { - ReadDescriptorResponse defaultInstance = new ReadDescriptorResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ReadDescriptorResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ReadDescriptorResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface WriteCharacteristicRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:WriteCharacteristicRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The enum numeric value on the wire for writeType. - */ - int getWriteTypeValue(); - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The writeType. - */ - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType getWriteType(); - - /** - * bytes value = 6; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - } - /** - * Protobuf type {@code WriteCharacteristicRequest} - */ - public static final class WriteCharacteristicRequest extends - com.google.protobuf.GeneratedMessageLite< - WriteCharacteristicRequest, WriteCharacteristicRequest.Builder> implements - // @@protoc_insertion_point(message_implements:WriteCharacteristicRequest) - WriteCharacteristicRequestOrBuilder { - private WriteCharacteristicRequest() { - remoteId_ = ""; - characteristicUuid_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - value_ = com.google.protobuf.ByteString.EMPTY; - } - /** - * Protobuf enum {@code WriteCharacteristicRequest.WriteType} - */ - public enum WriteType - implements com.google.protobuf.Internal.EnumLite { - /** - * WITH_RESPONSE = 0; - */ - WITH_RESPONSE(0), - /** - * WITHOUT_RESPONSE = 1; - */ - WITHOUT_RESPONSE(1), - UNRECOGNIZED(-1), - ; - - /** - * WITH_RESPONSE = 0; - */ - public static final int WITH_RESPONSE_VALUE = 0; - /** - * WITHOUT_RESPONSE = 1; - */ - public static final int WITHOUT_RESPONSE_VALUE = 1; - - - @java.lang.Override - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static WriteType valueOf(int value) { - return forNumber(value); - } - - public static WriteType forNumber(int value) { - switch (value) { - case 0: return WITH_RESPONSE; - case 1: return WITHOUT_RESPONSE; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - WriteType> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - @java.lang.Override - public WriteType findValueByNumber(int number) { - return WriteType.forNumber(number); - } - }; - - public static com.google.protobuf.Internal.EnumVerifier - internalGetVerifier() { - return WriteTypeVerifier.INSTANCE; - } - - private static final class WriteTypeVerifier implements - com.google.protobuf.Internal.EnumVerifier { - static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new WriteTypeVerifier(); - @java.lang.Override - public boolean isInRange(int number) { - return WriteType.forNumber(number) != null; - } - }; - - private final int value; - - private WriteType(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:WriteCharacteristicRequest.WriteType) - } - - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_UUID_FIELD_NUMBER = 2; - private java.lang.String characteristicUuid_; - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - * string characteristic_uuid = 2; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - * string characteristic_uuid = 2; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 2; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static final int SERVICE_UUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - * string service_uuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARY_SERVICE_UUID_FIELD_NUMBER = 4; - private java.lang.String secondaryServiceUuid_; - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - * string secondary_service_uuid = 4; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static final int WRITE_TYPE_FIELD_NUMBER = 5; - private int writeType_; - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The enum numeric value on the wire for writeType. - */ - @java.lang.Override - public int getWriteTypeValue() { - return writeType_; - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The writeType. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType getWriteType() { - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType result = com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType.forNumber(writeType_); - return result == null ? com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType.UNRECOGNIZED : result; - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @param value The enum numeric value on the wire for writeType to set. - */ - private void setWriteTypeValue(int value) { - writeType_ = value; - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @param value The writeType to set. - */ - private void setWriteType(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType value) { - writeType_ = value.getNumber(); - - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - */ - private void clearWriteType() { - - writeType_ = 0; - } - - public static final int VALUE_FIELD_NUMBER = 6; - private com.google.protobuf.ByteString value_; - /** - * bytes value = 6; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - * bytes value = 6; - * @param value The value to set. - */ - private void setValue(com.google.protobuf.ByteString value) { - value.getClass(); - - value_ = value; - } - /** - * bytes value = 6; - */ - private void clearValue() { - - value_ = getDefaultInstance().getValue(); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code WriteCharacteristicRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:WriteCharacteristicRequest) - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string characteristic_uuid = 2; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 2; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - * string characteristic_uuid = 2; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - * string characteristic_uuid = 2; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - * string characteristic_uuid = 2; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - * string service_uuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - * string secondary_service_uuid = 4; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The enum numeric value on the wire for writeType. - */ - @java.lang.Override - public int getWriteTypeValue() { - return instance.getWriteTypeValue(); - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @param value The writeType to set. - * @return This builder for chaining. - */ - public Builder setWriteTypeValue(int value) { - copyOnWrite(); - instance.setWriteTypeValue(value); - return this; - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return The writeType. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType getWriteType() { - return instance.getWriteType(); - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @param value The enum numeric value on the wire for writeType to set. - * @return This builder for chaining. - */ - public Builder setWriteType(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.WriteType value) { - copyOnWrite(); - instance.setWriteType(value); - return this; - } - /** - * .WriteCharacteristicRequest.WriteType write_type = 5; - * @return This builder for chaining. - */ - public Builder clearWriteType() { - copyOnWrite(); - instance.clearWriteType(); - return this; - } - - /** - * bytes value = 6; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return instance.getValue(); - } - /** - * bytes value = 6; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - * bytes value = 6; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:WriteCharacteristicRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "characteristicUuid_", - "serviceUuid_", - "secondaryServiceUuid_", - "writeType_", - "value_", - }; - java.lang.String info = - "\u0000\u0006\u0000\u0000\u0001\u0006\u0006\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\f\u0006\n"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:WriteCharacteristicRequest) - private static final com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest DEFAULT_INSTANCE; - static { - WriteCharacteristicRequest defaultInstance = new WriteCharacteristicRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - WriteCharacteristicRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface WriteCharacteristicResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:WriteCharacteristicResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * .WriteCharacteristicRequest request = 1; - * @return Whether the request field is set. - */ - boolean hasRequest(); - /** - * .WriteCharacteristicRequest request = 1; - * @return The request. - */ - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest getRequest(); - - /** - * bool success = 2; - * @return The success. - */ - boolean getSuccess(); - } - /** - * Protobuf type {@code WriteCharacteristicResponse} - */ - public static final class WriteCharacteristicResponse extends - com.google.protobuf.GeneratedMessageLite< - WriteCharacteristicResponse, WriteCharacteristicResponse.Builder> implements - // @@protoc_insertion_point(message_implements:WriteCharacteristicResponse) - WriteCharacteristicResponseOrBuilder { - private WriteCharacteristicResponse() { - } - public static final int REQUEST_FIELD_NUMBER = 1; - private com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest request_; - /** - * .WriteCharacteristicRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return request_ != null; - } - /** - * .WriteCharacteristicRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest getRequest() { - return request_ == null ? com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.getDefaultInstance() : request_; - } - /** - * .WriteCharacteristicRequest request = 1; - */ - private void setRequest(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest value) { - value.getClass(); - request_ = value; - - } - /** - * .WriteCharacteristicRequest request = 1; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeRequest(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest value) { - value.getClass(); - if (request_ != null && - request_ != com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.getDefaultInstance()) { - request_ = - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.newBuilder(request_).mergeFrom(value).buildPartial(); - } else { - request_ = value; - } - - } - /** - * .WriteCharacteristicRequest request = 1; - */ - private void clearRequest() { request_ = null; - - } - - public static final int SUCCESS_FIELD_NUMBER = 2; - private boolean success_; - /** - * bool success = 2; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return success_; - } - /** - * bool success = 2; - * @param value The success to set. - */ - private void setSuccess(boolean value) { - - success_ = value; - } - /** - * bool success = 2; - */ - private void clearSuccess() { - - success_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code WriteCharacteristicResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:WriteCharacteristicResponse) - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * .WriteCharacteristicRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return instance.hasRequest(); - } - /** - * .WriteCharacteristicRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest getRequest() { - return instance.getRequest(); - } - /** - * .WriteCharacteristicRequest request = 1; - */ - public Builder setRequest(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest value) { - copyOnWrite(); - instance.setRequest(value); - return this; - } - /** - * .WriteCharacteristicRequest request = 1; - */ - public Builder setRequest( - com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest.Builder builderForValue) { - copyOnWrite(); - instance.setRequest(builderForValue.build()); - return this; - } - /** - * .WriteCharacteristicRequest request = 1; - */ - public Builder mergeRequest(com.pauldemarco.flutter_blue.Protos.WriteCharacteristicRequest value) { - copyOnWrite(); - instance.mergeRequest(value); - return this; - } - /** - * .WriteCharacteristicRequest request = 1; - */ - public Builder clearRequest() { copyOnWrite(); - instance.clearRequest(); - return this; - } - - /** - * bool success = 2; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return instance.getSuccess(); - } - /** - * bool success = 2; - * @param value The success to set. - * @return This builder for chaining. - */ - public Builder setSuccess(boolean value) { - copyOnWrite(); - instance.setSuccess(value); - return this; - } - /** - * bool success = 2; - * @return This builder for chaining. - */ - public Builder clearSuccess() { - copyOnWrite(); - instance.clearSuccess(); - return this; - } - - // @@protoc_insertion_point(builder_scope:WriteCharacteristicResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "request_", - "success_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\t\u0002\u0007" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:WriteCharacteristicResponse) - private static final com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse DEFAULT_INSTANCE; - static { - WriteCharacteristicResponse defaultInstance = new WriteCharacteristicResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - WriteCharacteristicResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteCharacteristicResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface WriteDescriptorRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:WriteDescriptorRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - java.lang.String getDescriptorUuid(); - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - com.google.protobuf.ByteString - getDescriptorUuidBytes(); - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - - /** - * bytes value = 6; - * @return The value. - */ - com.google.protobuf.ByteString getValue(); - } - /** - * Protobuf type {@code WriteDescriptorRequest} - */ - public static final class WriteDescriptorRequest extends - com.google.protobuf.GeneratedMessageLite< - WriteDescriptorRequest, WriteDescriptorRequest.Builder> implements - // @@protoc_insertion_point(message_implements:WriteDescriptorRequest) - WriteDescriptorRequestOrBuilder { - private WriteDescriptorRequest() { - remoteId_ = ""; - descriptorUuid_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - characteristicUuid_ = ""; - value_ = com.google.protobuf.ByteString.EMPTY; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int DESCRIPTOR_UUID_FIELD_NUMBER = 2; - private java.lang.String descriptorUuid_; - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - @java.lang.Override - public java.lang.String getDescriptorUuid() { - return descriptorUuid_; - } - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDescriptorUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(descriptorUuid_); - } - /** - * string descriptor_uuid = 2; - * @param value The descriptorUuid to set. - */ - private void setDescriptorUuid( - java.lang.String value) { - value.getClass(); - - descriptorUuid_ = value; - } - /** - * string descriptor_uuid = 2; - */ - private void clearDescriptorUuid() { - - descriptorUuid_ = getDefaultInstance().getDescriptorUuid(); - } - /** - * string descriptor_uuid = 2; - * @param value The bytes for descriptorUuid to set. - */ - private void setDescriptorUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - descriptorUuid_ = value.toStringUtf8(); - - } - - public static final int SERVICE_UUID_FIELD_NUMBER = 3; - private java.lang.String serviceUuid_; - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - * string service_uuid = 3; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARY_SERVICE_UUID_FIELD_NUMBER = 4; - private java.lang.String secondaryServiceUuid_; - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - * string secondary_service_uuid = 4; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_UUID_FIELD_NUMBER = 5; - private java.lang.String characteristicUuid_; - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - * string characteristic_uuid = 5; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - * string characteristic_uuid = 5; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 5; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static final int VALUE_FIELD_NUMBER = 6; - private com.google.protobuf.ByteString value_; - /** - * bytes value = 6; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return value_; - } - /** - * bytes value = 6; - * @param value The value to set. - */ - private void setValue(com.google.protobuf.ByteString value) { - value.getClass(); - - value_ = value; - } - /** - * bytes value = 6; - */ - private void clearValue() { - - value_ = getDefaultInstance().getValue(); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code WriteDescriptorRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:WriteDescriptorRequest) - com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string descriptor_uuid = 2; - * @return The descriptorUuid. - */ - @java.lang.Override - public java.lang.String getDescriptorUuid() { - return instance.getDescriptorUuid(); - } - /** - * string descriptor_uuid = 2; - * @return The bytes for descriptorUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getDescriptorUuidBytes() { - return instance.getDescriptorUuidBytes(); - } - /** - * string descriptor_uuid = 2; - * @param value The descriptorUuid to set. - * @return This builder for chaining. - */ - public Builder setDescriptorUuid( - java.lang.String value) { - copyOnWrite(); - instance.setDescriptorUuid(value); - return this; - } - /** - * string descriptor_uuid = 2; - * @return This builder for chaining. - */ - public Builder clearDescriptorUuid() { - copyOnWrite(); - instance.clearDescriptorUuid(); - return this; - } - /** - * string descriptor_uuid = 2; - * @param value The bytes for descriptorUuid to set. - * @return This builder for chaining. - */ - public Builder setDescriptorUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setDescriptorUuidBytes(value); - return this; - } - - /** - * string service_uuid = 3; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - * string service_uuid = 3; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - * string service_uuid = 3; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - * string service_uuid = 3; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - * string service_uuid = 3; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - * string secondary_service_uuid = 4; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 4; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - * string secondary_service_uuid = 4; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - * string secondary_service_uuid = 4; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - * string secondary_service_uuid = 4; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - /** - * string characteristic_uuid = 5; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 5; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - * string characteristic_uuid = 5; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - * string characteristic_uuid = 5; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - * string characteristic_uuid = 5; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - /** - * bytes value = 6; - * @return The value. - */ - @java.lang.Override - public com.google.protobuf.ByteString getValue() { - return instance.getValue(); - } - /** - * bytes value = 6; - * @param value The value to set. - * @return This builder for chaining. - */ - public Builder setValue(com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setValue(value); - return this; - } - /** - * bytes value = 6; - * @return This builder for chaining. - */ - public Builder clearValue() { - copyOnWrite(); - instance.clearValue(); - return this; - } - - // @@protoc_insertion_point(builder_scope:WriteDescriptorRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "descriptorUuid_", - "serviceUuid_", - "secondaryServiceUuid_", - "characteristicUuid_", - "value_", - }; - java.lang.String info = - "\u0000\u0006\u0000\u0000\u0001\u0006\u0006\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\u0208\u0006\n"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:WriteDescriptorRequest) - private static final com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest DEFAULT_INSTANCE; - static { - WriteDescriptorRequest defaultInstance = new WriteDescriptorRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - WriteDescriptorRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface WriteDescriptorResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:WriteDescriptorResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * .WriteDescriptorRequest request = 1; - * @return Whether the request field is set. - */ - boolean hasRequest(); - /** - * .WriteDescriptorRequest request = 1; - * @return The request. - */ - com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest getRequest(); - - /** - * bool success = 2; - * @return The success. - */ - boolean getSuccess(); - } - /** - * Protobuf type {@code WriteDescriptorResponse} - */ - public static final class WriteDescriptorResponse extends - com.google.protobuf.GeneratedMessageLite< - WriteDescriptorResponse, WriteDescriptorResponse.Builder> implements - // @@protoc_insertion_point(message_implements:WriteDescriptorResponse) - WriteDescriptorResponseOrBuilder { - private WriteDescriptorResponse() { - } - public static final int REQUEST_FIELD_NUMBER = 1; - private com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest request_; - /** - * .WriteDescriptorRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return request_ != null; - } - /** - * .WriteDescriptorRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest getRequest() { - return request_ == null ? com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.getDefaultInstance() : request_; - } - /** - * .WriteDescriptorRequest request = 1; - */ - private void setRequest(com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest value) { - value.getClass(); - request_ = value; - - } - /** - * .WriteDescriptorRequest request = 1; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeRequest(com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest value) { - value.getClass(); - if (request_ != null && - request_ != com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.getDefaultInstance()) { - request_ = - com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.newBuilder(request_).mergeFrom(value).buildPartial(); - } else { - request_ = value; - } - - } - /** - * .WriteDescriptorRequest request = 1; - */ - private void clearRequest() { request_ = null; - - } - - public static final int SUCCESS_FIELD_NUMBER = 2; - private boolean success_; - /** - * bool success = 2; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return success_; - } - /** - * bool success = 2; - * @param value The success to set. - */ - private void setSuccess(boolean value) { - - success_ = value; - } - /** - * bool success = 2; - */ - private void clearSuccess() { - - success_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code WriteDescriptorResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:WriteDescriptorResponse) - com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * .WriteDescriptorRequest request = 1; - */ - @java.lang.Override - public boolean hasRequest() { - return instance.hasRequest(); - } - /** - * .WriteDescriptorRequest request = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest getRequest() { - return instance.getRequest(); - } - /** - * .WriteDescriptorRequest request = 1; - */ - public Builder setRequest(com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest value) { - copyOnWrite(); - instance.setRequest(value); - return this; - } - /** - * .WriteDescriptorRequest request = 1; - */ - public Builder setRequest( - com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest.Builder builderForValue) { - copyOnWrite(); - instance.setRequest(builderForValue.build()); - return this; - } - /** - * .WriteDescriptorRequest request = 1; - */ - public Builder mergeRequest(com.pauldemarco.flutter_blue.Protos.WriteDescriptorRequest value) { - copyOnWrite(); - instance.mergeRequest(value); - return this; - } - /** - * .WriteDescriptorRequest request = 1; - */ - public Builder clearRequest() { copyOnWrite(); - instance.clearRequest(); - return this; - } - - /** - * bool success = 2; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return instance.getSuccess(); - } - /** - * bool success = 2; - * @param value The success to set. - * @return This builder for chaining. - */ - public Builder setSuccess(boolean value) { - copyOnWrite(); - instance.setSuccess(value); - return this; - } - /** - * bool success = 2; - * @return This builder for chaining. - */ - public Builder clearSuccess() { - copyOnWrite(); - instance.clearSuccess(); - return this; - } - - // @@protoc_insertion_point(builder_scope:WriteDescriptorResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "request_", - "success_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\t\u0002\u0007" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:WriteDescriptorResponse) - private static final com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse DEFAULT_INSTANCE; - static { - WriteDescriptorResponse defaultInstance = new WriteDescriptorResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - WriteDescriptorResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.WriteDescriptorResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface SetNotificationRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:SetNotificationRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * string service_uuid = 2; - * @return The serviceUuid. - */ - java.lang.String getServiceUuid(); - /** - * string service_uuid = 2; - * @return The bytes for serviceUuid. - */ - com.google.protobuf.ByteString - getServiceUuidBytes(); - - /** - * string secondary_service_uuid = 3; - * @return The secondaryServiceUuid. - */ - java.lang.String getSecondaryServiceUuid(); - /** - * string secondary_service_uuid = 3; - * @return The bytes for secondaryServiceUuid. - */ - com.google.protobuf.ByteString - getSecondaryServiceUuidBytes(); - - /** - * string characteristic_uuid = 4; - * @return The characteristicUuid. - */ - java.lang.String getCharacteristicUuid(); - /** - * string characteristic_uuid = 4; - * @return The bytes for characteristicUuid. - */ - com.google.protobuf.ByteString - getCharacteristicUuidBytes(); - - /** - * bool enable = 5; - * @return The enable. - */ - boolean getEnable(); - } - /** - * Protobuf type {@code SetNotificationRequest} - */ - public static final class SetNotificationRequest extends - com.google.protobuf.GeneratedMessageLite< - SetNotificationRequest, SetNotificationRequest.Builder> implements - // @@protoc_insertion_point(message_implements:SetNotificationRequest) - SetNotificationRequestOrBuilder { - private SetNotificationRequest() { - remoteId_ = ""; - serviceUuid_ = ""; - secondaryServiceUuid_ = ""; - characteristicUuid_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int SERVICE_UUID_FIELD_NUMBER = 2; - private java.lang.String serviceUuid_; - /** - * string service_uuid = 2; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return serviceUuid_; - } - /** - * string service_uuid = 2; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(serviceUuid_); - } - /** - * string service_uuid = 2; - * @param value The serviceUuid to set. - */ - private void setServiceUuid( - java.lang.String value) { - value.getClass(); - - serviceUuid_ = value; - } - /** - * string service_uuid = 2; - */ - private void clearServiceUuid() { - - serviceUuid_ = getDefaultInstance().getServiceUuid(); - } - /** - * string service_uuid = 2; - * @param value The bytes for serviceUuid to set. - */ - private void setServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - serviceUuid_ = value.toStringUtf8(); - - } - - public static final int SECONDARY_SERVICE_UUID_FIELD_NUMBER = 3; - private java.lang.String secondaryServiceUuid_; - /** - * string secondary_service_uuid = 3; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return secondaryServiceUuid_; - } - /** - * string secondary_service_uuid = 3; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(secondaryServiceUuid_); - } - /** - * string secondary_service_uuid = 3; - * @param value The secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuid( - java.lang.String value) { - value.getClass(); - - secondaryServiceUuid_ = value; - } - /** - * string secondary_service_uuid = 3; - */ - private void clearSecondaryServiceUuid() { - - secondaryServiceUuid_ = getDefaultInstance().getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 3; - * @param value The bytes for secondaryServiceUuid to set. - */ - private void setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - secondaryServiceUuid_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_UUID_FIELD_NUMBER = 4; - private java.lang.String characteristicUuid_; - /** - * string characteristic_uuid = 4; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return characteristicUuid_; - } - /** - * string characteristic_uuid = 4; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(characteristicUuid_); - } - /** - * string characteristic_uuid = 4; - * @param value The characteristicUuid to set. - */ - private void setCharacteristicUuid( - java.lang.String value) { - value.getClass(); - - characteristicUuid_ = value; - } - /** - * string characteristic_uuid = 4; - */ - private void clearCharacteristicUuid() { - - characteristicUuid_ = getDefaultInstance().getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 4; - * @param value The bytes for characteristicUuid to set. - */ - private void setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - characteristicUuid_ = value.toStringUtf8(); - - } - - public static final int ENABLE_FIELD_NUMBER = 5; - private boolean enable_; - /** - * bool enable = 5; - * @return The enable. - */ - @java.lang.Override - public boolean getEnable() { - return enable_; - } - /** - * bool enable = 5; - * @param value The enable to set. - */ - private void setEnable(boolean value) { - - enable_ = value; - } - /** - * bool enable = 5; - */ - private void clearEnable() { - - enable_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.SetNotificationRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code SetNotificationRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.SetNotificationRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:SetNotificationRequest) - com.pauldemarco.flutter_blue.Protos.SetNotificationRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.SetNotificationRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * string service_uuid = 2; - * @return The serviceUuid. - */ - @java.lang.Override - public java.lang.String getServiceUuid() { - return instance.getServiceUuid(); - } - /** - * string service_uuid = 2; - * @return The bytes for serviceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getServiceUuidBytes() { - return instance.getServiceUuidBytes(); - } - /** - * string service_uuid = 2; - * @param value The serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setServiceUuid(value); - return this; - } - /** - * string service_uuid = 2; - * @return This builder for chaining. - */ - public Builder clearServiceUuid() { - copyOnWrite(); - instance.clearServiceUuid(); - return this; - } - /** - * string service_uuid = 2; - * @param value The bytes for serviceUuid to set. - * @return This builder for chaining. - */ - public Builder setServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setServiceUuidBytes(value); - return this; - } - - /** - * string secondary_service_uuid = 3; - * @return The secondaryServiceUuid. - */ - @java.lang.Override - public java.lang.String getSecondaryServiceUuid() { - return instance.getSecondaryServiceUuid(); - } - /** - * string secondary_service_uuid = 3; - * @return The bytes for secondaryServiceUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getSecondaryServiceUuidBytes() { - return instance.getSecondaryServiceUuidBytes(); - } - /** - * string secondary_service_uuid = 3; - * @param value The secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuid( - java.lang.String value) { - copyOnWrite(); - instance.setSecondaryServiceUuid(value); - return this; - } - /** - * string secondary_service_uuid = 3; - * @return This builder for chaining. - */ - public Builder clearSecondaryServiceUuid() { - copyOnWrite(); - instance.clearSecondaryServiceUuid(); - return this; - } - /** - * string secondary_service_uuid = 3; - * @param value The bytes for secondaryServiceUuid to set. - * @return This builder for chaining. - */ - public Builder setSecondaryServiceUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setSecondaryServiceUuidBytes(value); - return this; - } - - /** - * string characteristic_uuid = 4; - * @return The characteristicUuid. - */ - @java.lang.Override - public java.lang.String getCharacteristicUuid() { - return instance.getCharacteristicUuid(); - } - /** - * string characteristic_uuid = 4; - * @return The bytes for characteristicUuid. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getCharacteristicUuidBytes() { - return instance.getCharacteristicUuidBytes(); - } - /** - * string characteristic_uuid = 4; - * @param value The characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuid( - java.lang.String value) { - copyOnWrite(); - instance.setCharacteristicUuid(value); - return this; - } - /** - * string characteristic_uuid = 4; - * @return This builder for chaining. - */ - public Builder clearCharacteristicUuid() { - copyOnWrite(); - instance.clearCharacteristicUuid(); - return this; - } - /** - * string characteristic_uuid = 4; - * @param value The bytes for characteristicUuid to set. - * @return This builder for chaining. - */ - public Builder setCharacteristicUuidBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setCharacteristicUuidBytes(value); - return this; - } - - /** - * bool enable = 5; - * @return The enable. - */ - @java.lang.Override - public boolean getEnable() { - return instance.getEnable(); - } - /** - * bool enable = 5; - * @param value The enable to set. - * @return This builder for chaining. - */ - public Builder setEnable(boolean value) { - copyOnWrite(); - instance.setEnable(value); - return this; - } - /** - * bool enable = 5; - * @return This builder for chaining. - */ - public Builder clearEnable() { - copyOnWrite(); - instance.clearEnable(); - return this; - } - - // @@protoc_insertion_point(builder_scope:SetNotificationRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.SetNotificationRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "serviceUuid_", - "secondaryServiceUuid_", - "characteristicUuid_", - "enable_", - }; - java.lang.String info = - "\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0208\u0002\u0208" + - "\u0003\u0208\u0004\u0208\u0005\u0007"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.SetNotificationRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:SetNotificationRequest) - private static final com.pauldemarco.flutter_blue.Protos.SetNotificationRequest DEFAULT_INSTANCE; - static { - SetNotificationRequest defaultInstance = new SetNotificationRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - SetNotificationRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.SetNotificationRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface SetNotificationResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:SetNotificationResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * .BluetoothCharacteristic characteristic = 2; - * @return Whether the characteristic field is set. - */ - boolean hasCharacteristic(); - /** - * .BluetoothCharacteristic characteristic = 2; - * @return The characteristic. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic(); - - /** - * bool success = 3; - * @return The success. - */ - boolean getSuccess(); - } - /** - * Protobuf type {@code SetNotificationResponse} - */ - public static final class SetNotificationResponse extends - com.google.protobuf.GeneratedMessageLite< - SetNotificationResponse, SetNotificationResponse.Builder> implements - // @@protoc_insertion_point(message_implements:SetNotificationResponse) - SetNotificationResponseOrBuilder { - private SetNotificationResponse() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_FIELD_NUMBER = 2; - private com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic characteristic_; - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return characteristic_ != null; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return characteristic_ == null ? com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance() : characteristic_; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - characteristic_ = value; - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - if (characteristic_ != null && - characteristic_ != com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance()) { - characteristic_ = - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.newBuilder(characteristic_).mergeFrom(value).buildPartial(); - } else { - characteristic_ = value; - } - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void clearCharacteristic() { characteristic_ = null; - - } - - public static final int SUCCESS_FIELD_NUMBER = 3; - private boolean success_; - /** - * bool success = 3; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return success_; - } - /** - * bool success = 3; - * @param value The success to set. - */ - private void setSuccess(boolean value) { - - success_ = value; - } - /** - * bool success = 3; - */ - private void clearSuccess() { - - success_ = false; - } - - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.SetNotificationResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code SetNotificationResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.SetNotificationResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:SetNotificationResponse) - com.pauldemarco.flutter_blue.Protos.SetNotificationResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.SetNotificationResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return instance.hasCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return instance.getCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.setCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic( - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.setCharacteristic(builderForValue.build()); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.mergeCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder clearCharacteristic() { copyOnWrite(); - instance.clearCharacteristic(); - return this; - } - - /** - * bool success = 3; - * @return The success. - */ - @java.lang.Override - public boolean getSuccess() { - return instance.getSuccess(); - } - /** - * bool success = 3; - * @param value The success to set. - * @return This builder for chaining. - */ - public Builder setSuccess(boolean value) { - copyOnWrite(); - instance.setSuccess(value); - return this; - } - /** - * bool success = 3; - * @return This builder for chaining. - */ - public Builder clearSuccess() { - copyOnWrite(); - instance.clearSuccess(); - return this; - } - - // @@protoc_insertion_point(builder_scope:SetNotificationResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.SetNotificationResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "characteristic_", - "success_", - }; - java.lang.String info = - "\u0000\u0003\u0000\u0000\u0001\u0003\u0003\u0000\u0000\u0000\u0001\u0208\u0002\t" + - "\u0003\u0007"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.SetNotificationResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:SetNotificationResponse) - private static final com.pauldemarco.flutter_blue.Protos.SetNotificationResponse DEFAULT_INSTANCE; - static { - SetNotificationResponse defaultInstance = new SetNotificationResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - SetNotificationResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.SetNotificationResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface OnCharacteristicChangedOrBuilder extends - // @@protoc_insertion_point(interface_extends:OnCharacteristicChanged) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * .BluetoothCharacteristic characteristic = 2; - * @return Whether the characteristic field is set. - */ - boolean hasCharacteristic(); - /** - * .BluetoothCharacteristic characteristic = 2; - * @return The characteristic. - */ - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic(); - } - /** - * Protobuf type {@code OnCharacteristicChanged} - */ - public static final class OnCharacteristicChanged extends - com.google.protobuf.GeneratedMessageLite< - OnCharacteristicChanged, OnCharacteristicChanged.Builder> implements - // @@protoc_insertion_point(message_implements:OnCharacteristicChanged) - OnCharacteristicChangedOrBuilder { - private OnCharacteristicChanged() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int CHARACTERISTIC_FIELD_NUMBER = 2; - private com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic characteristic_; - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return characteristic_ != null; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return characteristic_ == null ? com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance() : characteristic_; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - characteristic_ = value; - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.SuppressWarnings({"ReferenceEquality"}) - private void mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - value.getClass(); - if (characteristic_ != null && - characteristic_ != com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.getDefaultInstance()) { - characteristic_ = - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.newBuilder(characteristic_).mergeFrom(value).buildPartial(); - } else { - characteristic_ = value; - } - - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - private void clearCharacteristic() { characteristic_ = null; - - } - - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code OnCharacteristicChanged} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged, Builder> implements - // @@protoc_insertion_point(builder_implements:OnCharacteristicChanged) - com.pauldemarco.flutter_blue.Protos.OnCharacteristicChangedOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public boolean hasCharacteristic() { - return instance.hasCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic getCharacteristic() { - return instance.getCharacteristic(); - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.setCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder setCharacteristic( - com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic.Builder builderForValue) { - copyOnWrite(); - instance.setCharacteristic(builderForValue.build()); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder mergeCharacteristic(com.pauldemarco.flutter_blue.Protos.BluetoothCharacteristic value) { - copyOnWrite(); - instance.mergeCharacteristic(value); - return this; - } - /** - * .BluetoothCharacteristic characteristic = 2; - */ - public Builder clearCharacteristic() { copyOnWrite(); - instance.clearCharacteristic(); - return this; - } - - // @@protoc_insertion_point(builder_scope:OnCharacteristicChanged) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "characteristic_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\t" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:OnCharacteristicChanged) - private static final com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged DEFAULT_INSTANCE; - static { - OnCharacteristicChanged defaultInstance = new OnCharacteristicChanged(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - OnCharacteristicChanged.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.OnCharacteristicChanged getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface DeviceStateResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:DeviceStateResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The enum numeric value on the wire for state. - */ - int getStateValue(); - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The state. - */ - com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState getState(); - } - /** - * Protobuf type {@code DeviceStateResponse} - */ - public static final class DeviceStateResponse extends - com.google.protobuf.GeneratedMessageLite< - DeviceStateResponse, DeviceStateResponse.Builder> implements - // @@protoc_insertion_point(message_implements:DeviceStateResponse) - DeviceStateResponseOrBuilder { - private DeviceStateResponse() { - remoteId_ = ""; - } - /** - * Protobuf enum {@code DeviceStateResponse.BluetoothDeviceState} - */ - public enum BluetoothDeviceState - implements com.google.protobuf.Internal.EnumLite { - /** - * DISCONNECTED = 0; - */ - DISCONNECTED(0), - /** - * CONNECTING = 1; - */ - CONNECTING(1), - /** - * CONNECTED = 2; - */ - CONNECTED(2), - /** - * DISCONNECTING = 3; - */ - DISCONNECTING(3), - UNRECOGNIZED(-1), - ; - - /** - * DISCONNECTED = 0; - */ - public static final int DISCONNECTED_VALUE = 0; - /** - * CONNECTING = 1; - */ - public static final int CONNECTING_VALUE = 1; - /** - * CONNECTED = 2; - */ - public static final int CONNECTED_VALUE = 2; - /** - * DISCONNECTING = 3; - */ - public static final int DISCONNECTING_VALUE = 3; - - - @java.lang.Override - public final int getNumber() { - if (this == UNRECOGNIZED) { - throw new java.lang.IllegalArgumentException( - "Can't get the number of an unknown enum value."); - } - return value; - } - - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static BluetoothDeviceState valueOf(int value) { - return forNumber(value); - } - - public static BluetoothDeviceState forNumber(int value) { - switch (value) { - case 0: return DISCONNECTED; - case 1: return CONNECTING; - case 2: return CONNECTED; - case 3: return DISCONNECTING; - default: return null; - } - } - - public static com.google.protobuf.Internal.EnumLiteMap - internalGetValueMap() { - return internalValueMap; - } - private static final com.google.protobuf.Internal.EnumLiteMap< - BluetoothDeviceState> internalValueMap = - new com.google.protobuf.Internal.EnumLiteMap() { - @java.lang.Override - public BluetoothDeviceState findValueByNumber(int number) { - return BluetoothDeviceState.forNumber(number); - } - }; - - public static com.google.protobuf.Internal.EnumVerifier - internalGetVerifier() { - return BluetoothDeviceStateVerifier.INSTANCE; - } - - private static final class BluetoothDeviceStateVerifier implements - com.google.protobuf.Internal.EnumVerifier { - static final com.google.protobuf.Internal.EnumVerifier INSTANCE = new BluetoothDeviceStateVerifier(); - @java.lang.Override - public boolean isInRange(int number) { - return BluetoothDeviceState.forNumber(number) != null; - } - }; - - private final int value; - - private BluetoothDeviceState(int value) { - this.value = value; - } - - // @@protoc_insertion_point(enum_scope:DeviceStateResponse.BluetoothDeviceState) - } - - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int STATE_FIELD_NUMBER = 2; - private int state_; - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The enum numeric value on the wire for state. - */ - @java.lang.Override - public int getStateValue() { - return state_; - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The state. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState getState() { - com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState result = com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState.forNumber(state_); - return result == null ? com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState.UNRECOGNIZED : result; - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @param value The enum numeric value on the wire for state to set. - */ - private void setStateValue(int value) { - state_ = value; - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @param value The state to set. - */ - private void setState(com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState value) { - state_ = value.getNumber(); - - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - */ - private void clearState() { - - state_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.DeviceStateResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code DeviceStateResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.DeviceStateResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:DeviceStateResponse) - com.pauldemarco.flutter_blue.Protos.DeviceStateResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The enum numeric value on the wire for state. - */ - @java.lang.Override - public int getStateValue() { - return instance.getStateValue(); - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @param value The state to set. - * @return This builder for chaining. - */ - public Builder setStateValue(int value) { - copyOnWrite(); - instance.setStateValue(value); - return this; - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return The state. - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState getState() { - return instance.getState(); - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @param value The enum numeric value on the wire for state to set. - * @return This builder for chaining. - */ - public Builder setState(com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.BluetoothDeviceState value) { - copyOnWrite(); - instance.setState(value); - return this; - } - /** - * .DeviceStateResponse.BluetoothDeviceState state = 2; - * @return This builder for chaining. - */ - public Builder clearState() { - copyOnWrite(); - instance.clearState(); - return this; - } - - // @@protoc_insertion_point(builder_scope:DeviceStateResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.DeviceStateResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "state_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\f" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.DeviceStateResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:DeviceStateResponse) - private static final com.pauldemarco.flutter_blue.Protos.DeviceStateResponse DEFAULT_INSTANCE; - static { - DeviceStateResponse defaultInstance = new DeviceStateResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - DeviceStateResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.DeviceStateResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface ConnectedDevicesResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:ConnectedDevicesResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * repeated .BluetoothDevice devices = 1; - */ - java.util.List - getDevicesList(); - /** - * repeated .BluetoothDevice devices = 1; - */ - com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevices(int index); - /** - * repeated .BluetoothDevice devices = 1; - */ - int getDevicesCount(); - } - /** - * Protobuf type {@code ConnectedDevicesResponse} - */ - public static final class ConnectedDevicesResponse extends - com.google.protobuf.GeneratedMessageLite< - ConnectedDevicesResponse, ConnectedDevicesResponse.Builder> implements - // @@protoc_insertion_point(message_implements:ConnectedDevicesResponse) - ConnectedDevicesResponseOrBuilder { - private ConnectedDevicesResponse() { - devices_ = emptyProtobufList(); - } - public static final int DEVICES_FIELD_NUMBER = 1; - private com.google.protobuf.Internal.ProtobufList devices_; - /** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public java.util.List getDevicesList() { - return devices_; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public java.util.List - getDevicesOrBuilderList() { - return devices_; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public int getDevicesCount() { - return devices_.size(); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevices(int index) { - return devices_.get(index); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public com.pauldemarco.flutter_blue.Protos.BluetoothDeviceOrBuilder getDevicesOrBuilder( - int index) { - return devices_.get(index); - } - private void ensureDevicesIsMutable() { - if (!devices_.isModifiable()) { - devices_ = - com.google.protobuf.GeneratedMessageLite.mutableCopy(devices_); - } - } - - /** - * repeated .BluetoothDevice devices = 1; - */ - private void setDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - value.getClass(); - ensureDevicesIsMutable(); - devices_.set(index, value); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - private void addDevices(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - value.getClass(); - ensureDevicesIsMutable(); - devices_.add(value); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - private void addDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - value.getClass(); - ensureDevicesIsMutable(); - devices_.add(index, value); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - private void addAllDevices( - java.lang.Iterable values) { - ensureDevicesIsMutable(); - com.google.protobuf.AbstractMessageLite.addAll( - values, devices_); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - private void clearDevices() { - devices_ = emptyProtobufList(); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - private void removeDevices(int index) { - ensureDevicesIsMutable(); - devices_.remove(index); - } - - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code ConnectedDevicesResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:ConnectedDevicesResponse) - com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public java.util.List getDevicesList() { - return java.util.Collections.unmodifiableList( - instance.getDevicesList()); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public int getDevicesCount() { - return instance.getDevicesCount(); - }/** - * repeated .BluetoothDevice devices = 1; - */ - @java.lang.Override - public com.pauldemarco.flutter_blue.Protos.BluetoothDevice getDevices(int index) { - return instance.getDevices(index); - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder setDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - copyOnWrite(); - instance.setDevices(index, value); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder setDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Builder builderForValue) { - copyOnWrite(); - instance.setDevices(index, - builderForValue.build()); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder addDevices(com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - copyOnWrite(); - instance.addDevices(value); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder addDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice value) { - copyOnWrite(); - instance.addDevices(index, value); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder addDevices( - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Builder builderForValue) { - copyOnWrite(); - instance.addDevices(builderForValue.build()); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder addDevices( - int index, com.pauldemarco.flutter_blue.Protos.BluetoothDevice.Builder builderForValue) { - copyOnWrite(); - instance.addDevices(index, - builderForValue.build()); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder addAllDevices( - java.lang.Iterable values) { - copyOnWrite(); - instance.addAllDevices(values); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder clearDevices() { - copyOnWrite(); - instance.clearDevices(); - return this; - } - /** - * repeated .BluetoothDevice devices = 1; - */ - public Builder removeDevices(int index) { - copyOnWrite(); - instance.removeDevices(index); - return this; - } - - // @@protoc_insertion_point(builder_scope:ConnectedDevicesResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "devices_", - com.pauldemarco.flutter_blue.Protos.BluetoothDevice.class, - }; - java.lang.String info = - "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0001\u0000\u0001\u001b"; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:ConnectedDevicesResponse) - private static final com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse DEFAULT_INSTANCE; - static { - ConnectedDevicesResponse defaultInstance = new ConnectedDevicesResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - ConnectedDevicesResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.ConnectedDevicesResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface MtuSizeRequestOrBuilder extends - // @@protoc_insertion_point(interface_extends:MtuSizeRequest) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * uint32 mtu = 2; - * @return The mtu. - */ - int getMtu(); - } - /** - * Protobuf type {@code MtuSizeRequest} - */ - public static final class MtuSizeRequest extends - com.google.protobuf.GeneratedMessageLite< - MtuSizeRequest, MtuSizeRequest.Builder> implements - // @@protoc_insertion_point(message_implements:MtuSizeRequest) - MtuSizeRequestOrBuilder { - private MtuSizeRequest() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int MTU_FIELD_NUMBER = 2; - private int mtu_; - /** - * uint32 mtu = 2; - * @return The mtu. - */ - @java.lang.Override - public int getMtu() { - return mtu_; - } - /** - * uint32 mtu = 2; - * @param value The mtu to set. - */ - private void setMtu(int value) { - - mtu_ = value; - } - /** - * uint32 mtu = 2; - */ - private void clearMtu() { - - mtu_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.MtuSizeRequest prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code MtuSizeRequest} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.MtuSizeRequest, Builder> implements - // @@protoc_insertion_point(builder_implements:MtuSizeRequest) - com.pauldemarco.flutter_blue.Protos.MtuSizeRequestOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.MtuSizeRequest.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * uint32 mtu = 2; - * @return The mtu. - */ - @java.lang.Override - public int getMtu() { - return instance.getMtu(); - } - /** - * uint32 mtu = 2; - * @param value The mtu to set. - * @return This builder for chaining. - */ - public Builder setMtu(int value) { - copyOnWrite(); - instance.setMtu(value); - return this; - } - /** - * uint32 mtu = 2; - * @return This builder for chaining. - */ - public Builder clearMtu() { - copyOnWrite(); - instance.clearMtu(); - return this; - } - - // @@protoc_insertion_point(builder_scope:MtuSizeRequest) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.MtuSizeRequest(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "mtu_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\u000b" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.MtuSizeRequest.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:MtuSizeRequest) - private static final com.pauldemarco.flutter_blue.Protos.MtuSizeRequest DEFAULT_INSTANCE; - static { - MtuSizeRequest defaultInstance = new MtuSizeRequest(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - MtuSizeRequest.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.MtuSizeRequest getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - public interface MtuSizeResponseOrBuilder extends - // @@protoc_insertion_point(interface_extends:MtuSizeResponse) - com.google.protobuf.MessageLiteOrBuilder { - - /** - * string remote_id = 1; - * @return The remoteId. - */ - java.lang.String getRemoteId(); - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - com.google.protobuf.ByteString - getRemoteIdBytes(); - - /** - * uint32 mtu = 2; - * @return The mtu. - */ - int getMtu(); - } - /** - * Protobuf type {@code MtuSizeResponse} - */ - public static final class MtuSizeResponse extends - com.google.protobuf.GeneratedMessageLite< - MtuSizeResponse, MtuSizeResponse.Builder> implements - // @@protoc_insertion_point(message_implements:MtuSizeResponse) - MtuSizeResponseOrBuilder { - private MtuSizeResponse() { - remoteId_ = ""; - } - public static final int REMOTE_ID_FIELD_NUMBER = 1; - private java.lang.String remoteId_; - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return remoteId_; - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return com.google.protobuf.ByteString.copyFromUtf8(remoteId_); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - */ - private void setRemoteId( - java.lang.String value) { - value.getClass(); - - remoteId_ = value; - } - /** - * string remote_id = 1; - */ - private void clearRemoteId() { - - remoteId_ = getDefaultInstance().getRemoteId(); - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - */ - private void setRemoteIdBytes( - com.google.protobuf.ByteString value) { - checkByteStringIsUtf8(value); - remoteId_ = value.toStringUtf8(); - - } - - public static final int MTU_FIELD_NUMBER = 2; - private int mtu_; - /** - * uint32 mtu = 2; - * @return The mtu. - */ - @java.lang.Override - public int getMtu() { - return mtu_; - } - /** - * uint32 mtu = 2; - * @param value The mtu to set. - */ - private void setMtu(int value) { - - mtu_ = value; - } - /** - * uint32 mtu = 2; - */ - private void clearMtu() { - - mtu_ = 0; - } - - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - java.nio.ByteBuffer data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - java.nio.ByteBuffer data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - com.google.protobuf.ByteString data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - com.google.protobuf.ByteString data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom(byte[] data) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - byte[] data, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws com.google.protobuf.InvalidProtocolBufferException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, data, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom(java.io.InputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseDelimitedFrom(java.io.InputStream input) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseDelimitedFrom( - java.io.InputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - com.google.protobuf.CodedInputStream input) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input); - } - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse parseFrom( - com.google.protobuf.CodedInputStream input, - com.google.protobuf.ExtensionRegistryLite extensionRegistry) - throws java.io.IOException { - return com.google.protobuf.GeneratedMessageLite.parseFrom( - DEFAULT_INSTANCE, input, extensionRegistry); - } - - public static Builder newBuilder() { - return (Builder) DEFAULT_INSTANCE.createBuilder(); - } - public static Builder newBuilder(com.pauldemarco.flutter_blue.Protos.MtuSizeResponse prototype) { - return (Builder) DEFAULT_INSTANCE.createBuilder(prototype); - } - - /** - * Protobuf type {@code MtuSizeResponse} - */ - public static final class Builder extends - com.google.protobuf.GeneratedMessageLite.Builder< - com.pauldemarco.flutter_blue.Protos.MtuSizeResponse, Builder> implements - // @@protoc_insertion_point(builder_implements:MtuSizeResponse) - com.pauldemarco.flutter_blue.Protos.MtuSizeResponseOrBuilder { - // Construct using com.pauldemarco.flutter_blue.Protos.MtuSizeResponse.newBuilder() - private Builder() { - super(DEFAULT_INSTANCE); - } - - - /** - * string remote_id = 1; - * @return The remoteId. - */ - @java.lang.Override - public java.lang.String getRemoteId() { - return instance.getRemoteId(); - } - /** - * string remote_id = 1; - * @return The bytes for remoteId. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getRemoteIdBytes() { - return instance.getRemoteIdBytes(); - } - /** - * string remote_id = 1; - * @param value The remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteId( - java.lang.String value) { - copyOnWrite(); - instance.setRemoteId(value); - return this; - } - /** - * string remote_id = 1; - * @return This builder for chaining. - */ - public Builder clearRemoteId() { - copyOnWrite(); - instance.clearRemoteId(); - return this; - } - /** - * string remote_id = 1; - * @param value The bytes for remoteId to set. - * @return This builder for chaining. - */ - public Builder setRemoteIdBytes( - com.google.protobuf.ByteString value) { - copyOnWrite(); - instance.setRemoteIdBytes(value); - return this; - } - - /** - * uint32 mtu = 2; - * @return The mtu. - */ - @java.lang.Override - public int getMtu() { - return instance.getMtu(); - } - /** - * uint32 mtu = 2; - * @param value The mtu to set. - * @return This builder for chaining. - */ - public Builder setMtu(int value) { - copyOnWrite(); - instance.setMtu(value); - return this; - } - /** - * uint32 mtu = 2; - * @return This builder for chaining. - */ - public Builder clearMtu() { - copyOnWrite(); - instance.clearMtu(); - return this; - } - - // @@protoc_insertion_point(builder_scope:MtuSizeResponse) - } - @java.lang.Override - @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) - protected final java.lang.Object dynamicMethod( - com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, - java.lang.Object arg0, java.lang.Object arg1) { - switch (method) { - case NEW_MUTABLE_INSTANCE: { - return new com.pauldemarco.flutter_blue.Protos.MtuSizeResponse(); - } - case NEW_BUILDER: { - return new Builder(); - } - case BUILD_MESSAGE_INFO: { - java.lang.Object[] objects = new java.lang.Object[] { - "remoteId_", - "mtu_", - }; - java.lang.String info = - "\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u0208\u0002\u000b" + - ""; - return newMessageInfo(DEFAULT_INSTANCE, info, objects); - } - // fall through - case GET_DEFAULT_INSTANCE: { - return DEFAULT_INSTANCE; - } - case GET_PARSER: { - com.google.protobuf.Parser parser = PARSER; - if (parser == null) { - synchronized (com.pauldemarco.flutter_blue.Protos.MtuSizeResponse.class) { - parser = PARSER; - if (parser == null) { - parser = - new DefaultInstanceBasedParser( - DEFAULT_INSTANCE); - PARSER = parser; - } - } - } - return parser; - } - case GET_MEMOIZED_IS_INITIALIZED: { - return (byte) 1; - } - case SET_MEMOIZED_IS_INITIALIZED: { - return null; - } - } - throw new UnsupportedOperationException(); - } - - - // @@protoc_insertion_point(class_scope:MtuSizeResponse) - private static final com.pauldemarco.flutter_blue.Protos.MtuSizeResponse DEFAULT_INSTANCE; - static { - MtuSizeResponse defaultInstance = new MtuSizeResponse(); - // New instances are implicitly immutable so no need to make - // immutable. - DEFAULT_INSTANCE = defaultInstance; - com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( - MtuSizeResponse.class, defaultInstance); - } - - public static com.pauldemarco.flutter_blue.Protos.MtuSizeResponse getDefaultInstance() { - return DEFAULT_INSTANCE; - } - - private static volatile com.google.protobuf.Parser PARSER; - - public static com.google.protobuf.Parser parser() { - return DEFAULT_INSTANCE.getParserForType(); - } - } - - - static { - } - - // @@protoc_insertion_point(outer_class_scope) -} diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml deleted file mode 100644 index c080781c..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json deleted file mode 100644 index 50cdefd9..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "com.pauldemarco.flutter_blue", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "outputFile": "AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/aar_main_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/aar_main_jar/debug/classes.jar deleted file mode 100644 index 29620bb2..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/aar_main_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/aar_metadata/debug/aar-metadata.properties b/Tracking/rudra_app/build/flutter_blue/intermediates/aar_metadata/debug/aar-metadata.properties deleted file mode 100644 index d8560bd4..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/aar_metadata/debug/aar-metadata.properties +++ /dev/null @@ -1,2 +0,0 @@ -aarFormatVersion=1.0 -aarMetadataVersion=1.0 diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/annotation_processor_list/debug/annotationProcessors.json b/Tracking/rudra_app/build/flutter_blue/intermediates/annotation_processor_list/debug/annotationProcessors.json deleted file mode 100644 index 9e26dfee..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/annotation_processor_list/debug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/annotations_typedef_file/debug/typedefs.txt b/Tracking/rudra_app/build/flutter_blue/intermediates/annotations_typedef_file/debug/typedefs.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_library_classes_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/compile_library_classes_jar/debug/classes.jar deleted file mode 100644 index 3eb2b78e..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_library_classes_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_r_class_jar/debug/R.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/compile_r_class_jar/debug/R.jar deleted file mode 100644 index 651d6ee5..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_r_class_jar/debug/R.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_symbol_list/debug/R.txt b/Tracking/rudra_app/build/flutter_blue/intermediates/compile_symbol_list/debug/R.txt deleted file mode 100644 index 4297fd58..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/compile_symbol_list/debug/R.txt +++ /dev/null @@ -1,227 +0,0 @@ -int attr activityAction 0x0 -int attr activityName 0x0 -int attr alpha 0x0 -int attr alwaysExpand 0x0 -int attr clearTop 0x0 -int attr finishPrimaryWithSecondary 0x0 -int attr finishSecondaryWithPrimary 0x0 -int attr font 0x0 -int attr fontProviderAuthority 0x0 -int attr fontProviderCerts 0x0 -int attr fontProviderFetchStrategy 0x0 -int attr fontProviderFetchTimeout 0x0 -int attr fontProviderPackage 0x0 -int attr fontProviderQuery 0x0 -int attr fontProviderSystemFontFamily 0x0 -int attr fontStyle 0x0 -int attr fontVariationSettings 0x0 -int attr fontWeight 0x0 -int attr nestedScrollViewStyle 0x0 -int attr placeholderActivityName 0x0 -int attr primaryActivityName 0x0 -int attr queryPatterns 0x0 -int attr secondaryActivityAction 0x0 -int attr secondaryActivityName 0x0 -int attr shortcutMatchRequired 0x0 -int attr splitLayoutDirection 0x0 -int attr splitMinSmallestWidth 0x0 -int attr splitMinWidth 0x0 -int attr splitRatio 0x0 -int attr ttcIndex 0x0 -int color androidx_core_ripple_material_light 0x0 -int color androidx_core_secondary_text_default_material_light 0x0 -int color notification_action_color_filter 0x0 -int color notification_icon_bg_color 0x0 -int color ripple_material_light 0x0 -int color secondary_text_default_material_light 0x0 -int dimen compat_button_inset_horizontal_material 0x0 -int dimen compat_button_inset_vertical_material 0x0 -int dimen compat_button_padding_horizontal_material 0x0 -int dimen compat_button_padding_vertical_material 0x0 -int dimen compat_control_corner_material 0x0 -int dimen compat_notification_large_icon_max_height 0x0 -int dimen compat_notification_large_icon_max_width 0x0 -int dimen notification_action_icon_size 0x0 -int dimen notification_action_text_size 0x0 -int dimen notification_big_circle_margin 0x0 -int dimen notification_content_margin_start 0x0 -int dimen notification_large_icon_height 0x0 -int dimen notification_large_icon_width 0x0 -int dimen notification_main_column_padding_top 0x0 -int dimen notification_media_narrow_margin 0x0 -int dimen notification_right_icon_size 0x0 -int dimen notification_right_side_padding_top 0x0 -int dimen notification_small_icon_background_padding 0x0 -int dimen notification_small_icon_size_as_large 0x0 -int dimen notification_subtext_size 0x0 -int dimen notification_top_pad 0x0 -int dimen notification_top_pad_large_text 0x0 -int drawable notification_action_background 0x0 -int drawable notification_bg 0x0 -int drawable notification_bg_low 0x0 -int drawable notification_bg_low_normal 0x0 -int drawable notification_bg_low_pressed 0x0 -int drawable notification_bg_normal 0x0 -int drawable notification_bg_normal_pressed 0x0 -int drawable notification_icon_background 0x0 -int drawable notification_template_icon_bg 0x0 -int drawable notification_template_icon_low_bg 0x0 -int drawable notification_tile_bg 0x0 -int drawable notify_panel_notification_icon_bg 0x0 -int id accessibility_action_clickable_span 0x0 -int id accessibility_custom_action_0 0x0 -int id accessibility_custom_action_1 0x0 -int id accessibility_custom_action_10 0x0 -int id accessibility_custom_action_11 0x0 -int id accessibility_custom_action_12 0x0 -int id accessibility_custom_action_13 0x0 -int id accessibility_custom_action_14 0x0 -int id accessibility_custom_action_15 0x0 -int id accessibility_custom_action_16 0x0 -int id accessibility_custom_action_17 0x0 -int id accessibility_custom_action_18 0x0 -int id accessibility_custom_action_19 0x0 -int id accessibility_custom_action_2 0x0 -int id accessibility_custom_action_20 0x0 -int id accessibility_custom_action_21 0x0 -int id accessibility_custom_action_22 0x0 -int id accessibility_custom_action_23 0x0 -int id accessibility_custom_action_24 0x0 -int id accessibility_custom_action_25 0x0 -int id accessibility_custom_action_26 0x0 -int id accessibility_custom_action_27 0x0 -int id accessibility_custom_action_28 0x0 -int id accessibility_custom_action_29 0x0 -int id accessibility_custom_action_3 0x0 -int id accessibility_custom_action_30 0x0 -int id accessibility_custom_action_31 0x0 -int id accessibility_custom_action_4 0x0 -int id accessibility_custom_action_5 0x0 -int id accessibility_custom_action_6 0x0 -int id accessibility_custom_action_7 0x0 -int id accessibility_custom_action_8 0x0 -int id accessibility_custom_action_9 0x0 -int id action_container 0x0 -int id action_divider 0x0 -int id action_image 0x0 -int id action_text 0x0 -int id actions 0x0 -int id androidx_window_activity_scope 0x0 -int id async 0x0 -int id blocking 0x0 -int id chronometer 0x0 -int id dialog_button 0x0 -int id forever 0x0 -int id icon 0x0 -int id icon_group 0x0 -int id info 0x0 -int id italic 0x0 -int id line1 0x0 -int id line3 0x0 -int id locale 0x0 -int id ltr 0x0 -int id normal 0x0 -int id notification_background 0x0 -int id notification_main_column 0x0 -int id notification_main_column_container 0x0 -int id right_icon 0x0 -int id right_side 0x0 -int id rtl 0x0 -int id tag_accessibility_actions 0x0 -int id tag_accessibility_clickable_spans 0x0 -int id tag_accessibility_heading 0x0 -int id tag_accessibility_pane_title 0x0 -int id tag_on_apply_window_listener 0x0 -int id tag_on_receive_content_listener 0x0 -int id tag_on_receive_content_mime_types 0x0 -int id tag_screen_reader_focusable 0x0 -int id tag_state_description 0x0 -int id tag_transition_group 0x0 -int id tag_unhandled_key_event_manager 0x0 -int id tag_unhandled_key_listeners 0x0 -int id tag_window_insets_animation_callback 0x0 -int id text 0x0 -int id text2 0x0 -int id time 0x0 -int id title 0x0 -int integer status_bar_notification_info_maxnum 0x0 -int layout custom_dialog 0x0 -int layout notification_action 0x0 -int layout notification_action_tombstone 0x0 -int layout notification_template_custom_big 0x0 -int layout notification_template_icon_group 0x0 -int layout notification_template_part_chronometer 0x0 -int layout notification_template_part_time 0x0 -int string status_bar_notification_info_overflow 0x0 -int style TextAppearance_Compat_Notification 0x0 -int style TextAppearance_Compat_Notification_Info 0x0 -int style TextAppearance_Compat_Notification_Line2 0x0 -int style TextAppearance_Compat_Notification_Time 0x0 -int style TextAppearance_Compat_Notification_Title 0x0 -int style Widget_Compat_NotificationActionContainer 0x0 -int style Widget_Compat_NotificationActionText 0x0 -int[] styleable ActivityFilter { 0x0, 0x0 } -int styleable ActivityFilter_activityAction 0 -int styleable ActivityFilter_activityName 1 -int[] styleable ActivityRule { 0x0 } -int styleable ActivityRule_alwaysExpand 0 -int[] styleable Capability { 0x0, 0x0 } -int styleable Capability_queryPatterns 0 -int styleable Capability_shortcutMatchRequired 1 -int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } -int styleable ColorStateListItem_alpha 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_android_color 2 -int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int styleable FontFamily_fontProviderSystemFontFamily 6 -int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable FontFamilyFont_android_font 0 -int styleable FontFamilyFont_android_fontStyle 1 -int styleable FontFamilyFont_android_fontVariationSettings 2 -int styleable FontFamilyFont_android_fontWeight 3 -int styleable FontFamilyFont_android_ttcIndex 4 -int styleable FontFamilyFont_font 5 -int styleable FontFamilyFont_fontStyle 6 -int styleable FontFamilyFont_fontVariationSettings 7 -int styleable FontFamilyFont_fontWeight 8 -int styleable FontFamilyFont_ttcIndex 9 -int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -int styleable GradientColor_android_centerColor 0 -int styleable GradientColor_android_centerX 1 -int styleable GradientColor_android_centerY 2 -int styleable GradientColor_android_endColor 3 -int styleable GradientColor_android_endX 4 -int styleable GradientColor_android_endY 5 -int styleable GradientColor_android_gradientRadius 6 -int styleable GradientColor_android_startColor 7 -int styleable GradientColor_android_startX 8 -int styleable GradientColor_android_startY 9 -int styleable GradientColor_android_tileMode 10 -int styleable GradientColor_android_type 11 -int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -int styleable GradientColorItem_android_color 0 -int styleable GradientColorItem_android_offset 1 -int[] styleable SplitPairFilter { 0x0, 0x0, 0x0 } -int styleable SplitPairFilter_primaryActivityName 0 -int styleable SplitPairFilter_secondaryActivityAction 1 -int styleable SplitPairFilter_secondaryActivityName 2 -int[] styleable SplitPairRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SplitPairRule_clearTop 0 -int styleable SplitPairRule_finishPrimaryWithSecondary 1 -int styleable SplitPairRule_finishSecondaryWithPrimary 2 -int styleable SplitPairRule_splitLayoutDirection 3 -int styleable SplitPairRule_splitMinSmallestWidth 4 -int styleable SplitPairRule_splitMinWidth 5 -int styleable SplitPairRule_splitRatio 6 -int[] styleable SplitPlaceholderRule { 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SplitPlaceholderRule_placeholderActivityName 0 -int styleable SplitPlaceholderRule_splitLayoutDirection 1 -int styleable SplitPlaceholderRule_splitMinSmallestWidth 2 -int styleable SplitPlaceholderRule_splitMinWidth 3 -int styleable SplitPlaceholderRule_splitRatio 4 diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/debug-mergeJavaRes/merge-state b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/debug-mergeJavaRes/merge-state deleted file mode 100644 index b400972a..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/debug-mergeJavaRes/merge-state and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index 62d5895d..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugShaders/merger.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index 722a987b..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugAssets/merger.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugAssets/merger.xml deleted file mode 100644 index 48df9b72..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/compile-file-map.properties b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/compile-file-map.properties deleted file mode 100644 index 6512a1e4..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/compile-file-map.properties +++ /dev/null @@ -1 +0,0 @@ -#Sat May 28 11:49:27 IST 2022 diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/merger.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/merger.xml deleted file mode 100644 index 1fee171c..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/incremental/packageDebugResources/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/java_res/debug/out/flutterblue.proto b/Tracking/rudra_app/build/flutter_blue/intermediates/java_res/debug/out/flutterblue.proto deleted file mode 100644 index a30cb7a0..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/java_res/debug/out/flutterblue.proto +++ /dev/null @@ -1,214 +0,0 @@ -// Copyright 2017, Paul DeMarco. -// All rights reserved. Use of this source code is governed by a -// BSD-style license that can be found in the LICENSE file. - -syntax = "proto3"; - -option java_package = "com.pauldemarco.flutter_blue"; -option java_outer_classname = "Protos"; -option objc_class_prefix = "Protos"; - -// Wrapper message for `int32`. -// -// Allows for nullability of fields in messages -message Int32Value { - // The int32 value. - int32 value = 1; -} - -message BluetoothState { - enum State { - UNKNOWN = 0; - UNAVAILABLE = 1; - UNAUTHORIZED = 2; - TURNING_ON = 3; - ON = 4; - TURNING_OFF = 5; - OFF = 6; - }; - State state = 1; -} - -message AdvertisementData { - string local_name = 1; - Int32Value tx_power_level = 2; - bool connectable = 3; - map manufacturer_data = 4; // Map of manufacturers to their data - map service_data = 5; // Map of service UUIDs to their data. - repeated string service_uuids = 6; -} - -message ScanSettings { - int32 android_scan_mode = 1; - repeated string service_uuids = 2; - bool allow_duplicates = 3; -} - -message ScanResult { - BluetoothDevice device = 1; // The received peer's ID. - AdvertisementData advertisement_data = 2; - int32 rssi = 3; -} - -message ConnectRequest { - string remote_id = 1; - bool android_auto_connect = 2; -} - -message BluetoothDevice { - enum Type { - UNKNOWN = 0; - CLASSIC = 1; - LE = 2; - DUAL = 3; - }; - - string remote_id = 1; - string name = 2; - Type type = 3; -} - -message BluetoothService { - string uuid = 1; - string remote_id = 2; - bool is_primary = 3; // Indicates whether the type of service is primary or secondary. - repeated BluetoothCharacteristic characteristics = 4; // A list of characteristics that have been discovered in this service. - repeated BluetoothService included_services = 5; // A list of included services that have been discovered in this service. -} - -message BluetoothCharacteristic { - string uuid = 1; - string remote_id = 2; - string serviceUuid = 3; // The service that this characteristic belongs to. - string secondaryServiceUuid = 4; // The secondary service if nested - repeated BluetoothDescriptor descriptors = 5; // A list of descriptors that have been discovered in this characteristic. - CharacteristicProperties properties = 6; // The properties of the characteristic. - bytes value = 7; -} - -message BluetoothDescriptor { - string uuid = 1; - string remote_id = 2; - string serviceUuid = 3; // The service that this descriptor belongs to. - string characteristicUuid = 4; // The characteristic that this descriptor belongs to. - bytes value = 5; -} - -message CharacteristicProperties { - bool broadcast = 1; - bool read = 2; - bool write_without_response = 3; - bool write = 4; - bool notify = 5; - bool indicate = 6; - bool authenticated_signed_writes = 7; - bool extended_properties = 8; - bool notify_encryption_required = 9; - bool indicate_encryption_required = 10; -} - -message DiscoverServicesResult { - string remote_id = 1; - repeated BluetoothService services = 2; -} - -message ReadCharacteristicRequest { - string remote_id = 1; - string characteristic_uuid = 2; - string service_uuid = 3; - string secondary_service_uuid = 4; -} - -message ReadCharacteristicResponse { - string remote_id = 1; - BluetoothCharacteristic characteristic = 2; -} - -message ReadDescriptorRequest { - string remote_id = 1; - string descriptor_uuid = 2; - string service_uuid = 3; - string secondary_service_uuid = 4; - string characteristic_uuid = 5; -} - -message ReadDescriptorResponse { - ReadDescriptorRequest request = 1; - bytes value = 2; -} - -message WriteCharacteristicRequest { - enum WriteType { - WITH_RESPONSE = 0; - WITHOUT_RESPONSE = 1; - } - string remote_id = 1; - string characteristic_uuid = 2; - string service_uuid = 3; - string secondary_service_uuid = 4; - WriteType write_type = 5; - bytes value = 6; -} - -message WriteCharacteristicResponse { - WriteCharacteristicRequest request = 1; - bool success = 2; -} - -message WriteDescriptorRequest { - string remote_id = 1; - string descriptor_uuid = 2; - string service_uuid = 3; - string secondary_service_uuid = 4; - string characteristic_uuid = 5; - bytes value = 6; -} - -message WriteDescriptorResponse { - WriteDescriptorRequest request = 1; - bool success = 2; -} - -message SetNotificationRequest { - string remote_id = 1; - string service_uuid = 2; - string secondary_service_uuid = 3; - string characteristic_uuid = 4; - bool enable = 5; -} - -message SetNotificationResponse { - string remote_id = 1; - BluetoothCharacteristic characteristic = 2; - bool success = 3; -} - -message OnCharacteristicChanged { - string remote_id = 1; - BluetoothCharacteristic characteristic = 2; -} - -message DeviceStateResponse { - enum BluetoothDeviceState { - DISCONNECTED = 0; - CONNECTING = 1; - CONNECTED = 2; - DISCONNECTING = 3; - } - string remote_id = 1; - BluetoothDeviceState state = 2; -} - -message ConnectedDevicesResponse { - repeated BluetoothDevice devices = 1; -} - -message MtuSizeRequest { - string remote_id = 1; - uint32 mtu = 2; -} - -message MtuSizeResponse { - string remote_id = 1; - uint32 mtu = 2; -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/library_java_res/debug/res.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/library_java_res/debug/res.jar deleted file mode 100644 index f1530dee..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/library_java_res/debug/res.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/library_manifest/debug/AndroidManifest.xml b/Tracking/rudra_app/build/flutter_blue/intermediates/library_manifest/debug/AndroidManifest.xml deleted file mode 100644 index c080781c..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/library_manifest/debug/AndroidManifest.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/local_only_symbol_list/debug/R-def.txt b/Tracking/rudra_app/build/flutter_blue/intermediates/local_only_symbol_list/debug/R-def.txt deleted file mode 100644 index 78ac5b8b..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/local_only_symbol_list/debug/R-def.txt +++ /dev/null @@ -1,2 +0,0 @@ -R_DEF: Internal format may change without notice -local diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/Tracking/rudra_app/build/flutter_blue/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt deleted file mode 100644 index 9fb3ab80..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,18 +0,0 @@ -1 -2 -4 -5 -5-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml -6 -7 -7-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:3:5-68 -7-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:3:22-65 -8 -8-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:4:5-74 -8-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:4:22-71 -9 -9-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:5:5-78 -9-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:5:22-76 -10 -11 diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/merged_java_res/debug/out.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/merged_java_res/debug/out.jar deleted file mode 100644 index 0451a95f..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/merged_java_res/debug/out.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/navigation_json/debug/navigation.json b/Tracking/rudra_app/build/flutter_blue/intermediates/navigation_json/debug/navigation.json deleted file mode 100644 index 0637a088..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/navigation_json/debug/navigation.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/packaged_manifests/debug/output-metadata.json b/Tracking/rudra_app/build/flutter_blue/intermediates/packaged_manifests/debug/output-metadata.json deleted file mode 100644 index 0d06cde8..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/packaged_manifests/debug/output-metadata.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "PACKAGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "com.pauldemarco.flutter_blue", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "outputFile": "../../library_manifest/debug/AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/runtime_library_classes_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_blue/intermediates/runtime_library_classes_jar/debug/classes.jar deleted file mode 100644 index 6f083895..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/intermediates/runtime_library_classes_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/Tracking/rudra_app/build/flutter_blue/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt deleted file mode 100644 index 3e90b81b..00000000 --- a/Tracking/rudra_app/build/flutter_blue/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +++ /dev/null @@ -1,174 +0,0 @@ -com.pauldemarco.flutter_blue -attr activityAction -attr activityName -attr alpha -attr alwaysExpand -attr clearTop -attr finishPrimaryWithSecondary -attr finishSecondaryWithPrimary -attr font -attr fontProviderAuthority -attr fontProviderCerts -attr fontProviderFetchStrategy -attr fontProviderFetchTimeout -attr fontProviderPackage -attr fontProviderQuery -attr fontProviderSystemFontFamily -attr fontStyle -attr fontVariationSettings -attr fontWeight -attr nestedScrollViewStyle -attr placeholderActivityName -attr primaryActivityName -attr queryPatterns -attr secondaryActivityAction -attr secondaryActivityName -attr shortcutMatchRequired -attr splitLayoutDirection -attr splitMinSmallestWidth -attr splitMinWidth -attr splitRatio -attr ttcIndex -color androidx_core_ripple_material_light -color androidx_core_secondary_text_default_material_light -color notification_action_color_filter -color notification_icon_bg_color -color ripple_material_light -color secondary_text_default_material_light -dimen compat_button_inset_horizontal_material -dimen compat_button_inset_vertical_material -dimen compat_button_padding_horizontal_material -dimen compat_button_padding_vertical_material -dimen compat_control_corner_material -dimen compat_notification_large_icon_max_height -dimen compat_notification_large_icon_max_width -dimen notification_action_icon_size -dimen notification_action_text_size -dimen notification_big_circle_margin -dimen notification_content_margin_start -dimen notification_large_icon_height -dimen notification_large_icon_width -dimen notification_main_column_padding_top -dimen notification_media_narrow_margin -dimen notification_right_icon_size -dimen notification_right_side_padding_top -dimen notification_small_icon_background_padding -dimen notification_small_icon_size_as_large -dimen notification_subtext_size -dimen notification_top_pad -dimen notification_top_pad_large_text -drawable notification_action_background -drawable notification_bg -drawable notification_bg_low -drawable notification_bg_low_normal -drawable notification_bg_low_pressed -drawable notification_bg_normal -drawable notification_bg_normal_pressed -drawable notification_icon_background -drawable notification_template_icon_bg -drawable notification_template_icon_low_bg -drawable notification_tile_bg -drawable notify_panel_notification_icon_bg -id accessibility_action_clickable_span -id accessibility_custom_action_0 -id accessibility_custom_action_1 -id accessibility_custom_action_10 -id accessibility_custom_action_11 -id accessibility_custom_action_12 -id accessibility_custom_action_13 -id accessibility_custom_action_14 -id accessibility_custom_action_15 -id accessibility_custom_action_16 -id accessibility_custom_action_17 -id accessibility_custom_action_18 -id accessibility_custom_action_19 -id accessibility_custom_action_2 -id accessibility_custom_action_20 -id accessibility_custom_action_21 -id accessibility_custom_action_22 -id accessibility_custom_action_23 -id accessibility_custom_action_24 -id accessibility_custom_action_25 -id accessibility_custom_action_26 -id accessibility_custom_action_27 -id accessibility_custom_action_28 -id accessibility_custom_action_29 -id accessibility_custom_action_3 -id accessibility_custom_action_30 -id accessibility_custom_action_31 -id accessibility_custom_action_4 -id accessibility_custom_action_5 -id accessibility_custom_action_6 -id accessibility_custom_action_7 -id accessibility_custom_action_8 -id accessibility_custom_action_9 -id action_container -id action_divider -id action_image -id action_text -id actions -id androidx_window_activity_scope -id async -id blocking -id chronometer -id dialog_button -id forever -id icon -id icon_group -id info -id italic -id line1 -id line3 -id locale -id ltr -id normal -id notification_background -id notification_main_column -id notification_main_column_container -id right_icon -id right_side -id rtl -id tag_accessibility_actions -id tag_accessibility_clickable_spans -id tag_accessibility_heading -id tag_accessibility_pane_title -id tag_on_apply_window_listener -id tag_on_receive_content_listener -id tag_on_receive_content_mime_types -id tag_screen_reader_focusable -id tag_state_description -id tag_transition_group -id tag_unhandled_key_event_manager -id tag_unhandled_key_listeners -id tag_window_insets_animation_callback -id text -id text2 -id time -id title -integer status_bar_notification_info_maxnum -layout custom_dialog -layout notification_action -layout notification_action_tombstone -layout notification_template_custom_big -layout notification_template_icon_group -layout notification_template_part_chronometer -layout notification_template_part_time -string status_bar_notification_info_overflow -style TextAppearance_Compat_Notification -style TextAppearance_Compat_Notification_Info -style TextAppearance_Compat_Notification_Line2 -style TextAppearance_Compat_Notification_Time -style TextAppearance_Compat_Notification_Title -style Widget_Compat_NotificationActionContainer -style Widget_Compat_NotificationActionText -styleable ActivityFilter activityAction activityName -styleable ActivityRule alwaysExpand -styleable Capability queryPatterns shortcutMatchRequired -styleable ColorStateListItem alpha android_alpha android_color -styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -styleable GradientColorItem android_color android_offset -styleable SplitPairFilter primaryActivityName secondaryActivityAction secondaryActivityName -styleable SplitPairRule clearTop finishPrimaryWithSecondary finishSecondaryWithPrimary splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio -styleable SplitPlaceholderRule placeholderActivityName splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio diff --git a/Tracking/rudra_app/build/flutter_blue/outputs/aar/flutter_blue-debug.aar b/Tracking/rudra_app/build/flutter_blue/outputs/aar/flutter_blue-debug.aar deleted file mode 100644 index a2df4afe..00000000 Binary files a/Tracking/rudra_app/build/flutter_blue/outputs/aar/flutter_blue-debug.aar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_blue/outputs/logs/manifest-merger-debug-report.txt b/Tracking/rudra_app/build/flutter_blue/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index b7058150..00000000 --- a/Tracking/rudra_app/build/flutter_blue/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,31 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:1:1-6:12 -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:1:1-6:12 -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:1:1-6:12 - package - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:2:3-41 - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml - xmlns:android - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.BLUETOOTH -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:3:5-68 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:3:22-65 -uses-permission#android.permission.BLUETOOTH_ADMIN -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:4:5-74 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:4:22-71 -uses-permission#android.permission.ACCESS_FINE_LOCATION -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:5:5-78 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml:5:22-76 -uses-sdk -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml - android:minSdkVersion - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_blue-0.8.0\android\src\main\AndroidManifest.xml diff --git a/Tracking/rudra_app/build/flutter_blue/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt b/Tracking/rudra_app/build/flutter_blue/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt deleted file mode 100644 index 85f858b9..00000000 --- a/Tracking/rudra_app/build/flutter_blue/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +++ /dev/null @@ -1,114 +0,0 @@ -com/pauldemarco/flutter_blue/Protos.java - com.pauldemarco.flutter_blue.Protos - com.pauldemarco.flutter_blue.Protos$1 - com.pauldemarco.flutter_blue.Protos$AdvertisementData - com.pauldemarco.flutter_blue.Protos$AdvertisementData$Builder - com.pauldemarco.flutter_blue.Protos$AdvertisementData$ManufacturerDataDefaultEntryHolder - com.pauldemarco.flutter_blue.Protos$AdvertisementData$ServiceDataDefaultEntryHolder - com.pauldemarco.flutter_blue.Protos$AdvertisementDataOrBuilder - com.pauldemarco.flutter_blue.Protos$BluetoothCharacteristic - com.pauldemarco.flutter_blue.Protos$BluetoothCharacteristic$Builder - com.pauldemarco.flutter_blue.Protos$BluetoothCharacteristicOrBuilder - com.pauldemarco.flutter_blue.Protos$BluetoothDescriptor - com.pauldemarco.flutter_blue.Protos$BluetoothDescriptor$Builder - com.pauldemarco.flutter_blue.Protos$BluetoothDescriptorOrBuilder - com.pauldemarco.flutter_blue.Protos$BluetoothDevice - com.pauldemarco.flutter_blue.Protos$BluetoothDevice$Builder - com.pauldemarco.flutter_blue.Protos$BluetoothDevice$Type - com.pauldemarco.flutter_blue.Protos$BluetoothDevice$Type$1 - com.pauldemarco.flutter_blue.Protos$BluetoothDevice$Type$TypeVerifier - com.pauldemarco.flutter_blue.Protos$BluetoothDeviceOrBuilder - com.pauldemarco.flutter_blue.Protos$BluetoothService - com.pauldemarco.flutter_blue.Protos$BluetoothService$Builder - com.pauldemarco.flutter_blue.Protos$BluetoothServiceOrBuilder - com.pauldemarco.flutter_blue.Protos$BluetoothState - com.pauldemarco.flutter_blue.Protos$BluetoothState$Builder - com.pauldemarco.flutter_blue.Protos$BluetoothState$State - com.pauldemarco.flutter_blue.Protos$BluetoothState$State$1 - com.pauldemarco.flutter_blue.Protos$BluetoothState$State$StateVerifier - com.pauldemarco.flutter_blue.Protos$BluetoothStateOrBuilder - com.pauldemarco.flutter_blue.Protos$CharacteristicProperties - com.pauldemarco.flutter_blue.Protos$CharacteristicProperties$Builder - com.pauldemarco.flutter_blue.Protos$CharacteristicPropertiesOrBuilder - com.pauldemarco.flutter_blue.Protos$ConnectRequest - com.pauldemarco.flutter_blue.Protos$ConnectRequest$Builder - com.pauldemarco.flutter_blue.Protos$ConnectRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$ConnectedDevicesResponse - com.pauldemarco.flutter_blue.Protos$ConnectedDevicesResponse$Builder - com.pauldemarco.flutter_blue.Protos$ConnectedDevicesResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$DeviceStateResponse - com.pauldemarco.flutter_blue.Protos$DeviceStateResponse$BluetoothDeviceState - com.pauldemarco.flutter_blue.Protos$DeviceStateResponse$BluetoothDeviceState$1 - com.pauldemarco.flutter_blue.Protos$DeviceStateResponse$BluetoothDeviceState$BluetoothDeviceStateVerifier - com.pauldemarco.flutter_blue.Protos$DeviceStateResponse$Builder - com.pauldemarco.flutter_blue.Protos$DeviceStateResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$DiscoverServicesResult - com.pauldemarco.flutter_blue.Protos$DiscoverServicesResult$Builder - com.pauldemarco.flutter_blue.Protos$DiscoverServicesResultOrBuilder - com.pauldemarco.flutter_blue.Protos$Int32Value - com.pauldemarco.flutter_blue.Protos$Int32Value$Builder - com.pauldemarco.flutter_blue.Protos$Int32ValueOrBuilder - com.pauldemarco.flutter_blue.Protos$MtuSizeRequest - com.pauldemarco.flutter_blue.Protos$MtuSizeRequest$Builder - com.pauldemarco.flutter_blue.Protos$MtuSizeRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$MtuSizeResponse - com.pauldemarco.flutter_blue.Protos$MtuSizeResponse$Builder - com.pauldemarco.flutter_blue.Protos$MtuSizeResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$OnCharacteristicChanged - com.pauldemarco.flutter_blue.Protos$OnCharacteristicChanged$Builder - com.pauldemarco.flutter_blue.Protos$OnCharacteristicChangedOrBuilder - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicRequest - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicRequest$Builder - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicResponse - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicResponse$Builder - com.pauldemarco.flutter_blue.Protos$ReadCharacteristicResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$ReadDescriptorRequest - com.pauldemarco.flutter_blue.Protos$ReadDescriptorRequest$Builder - com.pauldemarco.flutter_blue.Protos$ReadDescriptorRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$ReadDescriptorResponse - com.pauldemarco.flutter_blue.Protos$ReadDescriptorResponse$Builder - com.pauldemarco.flutter_blue.Protos$ReadDescriptorResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$ScanResult - com.pauldemarco.flutter_blue.Protos$ScanResult$Builder - com.pauldemarco.flutter_blue.Protos$ScanResultOrBuilder - com.pauldemarco.flutter_blue.Protos$ScanSettings - com.pauldemarco.flutter_blue.Protos$ScanSettings$Builder - com.pauldemarco.flutter_blue.Protos$ScanSettingsOrBuilder - com.pauldemarco.flutter_blue.Protos$SetNotificationRequest - com.pauldemarco.flutter_blue.Protos$SetNotificationRequest$Builder - com.pauldemarco.flutter_blue.Protos$SetNotificationRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$SetNotificationResponse - com.pauldemarco.flutter_blue.Protos$SetNotificationResponse$Builder - com.pauldemarco.flutter_blue.Protos$SetNotificationResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequest - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequest$Builder - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequest$WriteType - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequest$WriteType$1 - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequest$WriteType$WriteTypeVerifier - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicResponse - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicResponse$Builder - com.pauldemarco.flutter_blue.Protos$WriteCharacteristicResponseOrBuilder - com.pauldemarco.flutter_blue.Protos$WriteDescriptorRequest - com.pauldemarco.flutter_blue.Protos$WriteDescriptorRequest$Builder - com.pauldemarco.flutter_blue.Protos$WriteDescriptorRequestOrBuilder - com.pauldemarco.flutter_blue.Protos$WriteDescriptorResponse - com.pauldemarco.flutter_blue.Protos$WriteDescriptorResponse$Builder - com.pauldemarco.flutter_blue.Protos$WriteDescriptorResponseOrBuilder -com/pauldemarco/flutter_blue/ProtoMaker.java - com.pauldemarco.flutter_blue.ProtoMaker -com/pauldemarco/flutter_blue/AdvertisementParser.java - com.pauldemarco.flutter_blue.AdvertisementParser -com/pauldemarco/flutter_blue/FlutterBluePlugin.java - com.pauldemarco.flutter_blue.FlutterBluePlugin - com.pauldemarco.flutter_blue.FlutterBluePlugin$1 - com.pauldemarco.flutter_blue.FlutterBluePlugin$1$1 - com.pauldemarco.flutter_blue.FlutterBluePlugin$2 - com.pauldemarco.flutter_blue.FlutterBluePlugin$3 - com.pauldemarco.flutter_blue.FlutterBluePlugin$4 - com.pauldemarco.flutter_blue.FlutterBluePlugin$5 - com.pauldemarco.flutter_blue.FlutterBluePlugin$BluetoothDeviceCache - com.pauldemarco.flutter_blue.FlutterBluePlugin$LogLevel -com/pauldemarco/flutter_blue/BuildConfig.java - com.pauldemarco.flutter_blue.BuildConfig diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7.bin b/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7.bin deleted file mode 100644 index 0d259ddc..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7/classes/classes.dex b/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7/classes/classes.dex deleted file mode 100644 index 12ed07d9..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/16c7b227e4d883fcd18caf30140964b7/classes/classes.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f.bin b/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f.bin deleted file mode 100644 index 0d259ddc..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f/classes/classes.dex b/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f/classes/classes.dex deleted file mode 100644 index 12ed07d9..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/.transforms/628fa8e1d4734333255e884cabe9754f/classes/classes.dex and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/generated/source/buildConfig/debug/io/github/edufolly/flutterbluetoothserial/BuildConfig.java b/Tracking/rudra_app/build/flutter_bluetooth_serial/generated/source/buildConfig/debug/io/github/edufolly/flutterbluetoothserial/BuildConfig.java deleted file mode 100644 index 3c90620b..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/generated/source/buildConfig/debug/io/github/edufolly/flutterbluetoothserial/BuildConfig.java +++ /dev/null @@ -1,10 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package io.github.edufolly.flutterbluetoothserial; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "io.github.edufolly.flutterbluetoothserial"; - public static final String BUILD_TYPE = "debug"; -} diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml deleted file mode 100644 index 0bfc667f..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json deleted file mode 100644 index 170cdb01..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "io.github.edufolly.flutterbluetoothserial", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "outputFile": "AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_main_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_main_jar/debug/classes.jar deleted file mode 100644 index dac03ab2..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_main_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_metadata/debug/aar-metadata.properties b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_metadata/debug/aar-metadata.properties deleted file mode 100644 index d8560bd4..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/aar_metadata/debug/aar-metadata.properties +++ /dev/null @@ -1,2 +0,0 @@ -aarFormatVersion=1.0 -aarMetadataVersion=1.0 diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/annotation_processor_list/debug/annotationProcessors.json b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/annotation_processor_list/debug/annotationProcessors.json deleted file mode 100644 index 9e26dfee..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/annotation_processor_list/debug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/annotations_typedef_file/debug/typedefs.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/annotations_typedef_file/debug/typedefs.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_library_classes_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_library_classes_jar/debug/classes.jar deleted file mode 100644 index b33c094a..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_library_classes_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_r_class_jar/debug/R.jar b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_r_class_jar/debug/R.jar deleted file mode 100644 index d622b841..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_r_class_jar/debug/R.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_symbol_list/debug/R.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_symbol_list/debug/R.txt deleted file mode 100644 index 3db814de..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/compile_symbol_list/debug/R.txt +++ /dev/null @@ -1,1729 +0,0 @@ -int anim abc_fade_in 0x0 -int anim abc_fade_out 0x0 -int anim abc_grow_fade_in_from_bottom 0x0 -int anim abc_popup_enter 0x0 -int anim abc_popup_exit 0x0 -int anim abc_shrink_fade_out_from_bottom 0x0 -int anim abc_slide_in_bottom 0x0 -int anim abc_slide_in_top 0x0 -int anim abc_slide_out_bottom 0x0 -int anim abc_slide_out_top 0x0 -int anim abc_tooltip_enter 0x0 -int anim abc_tooltip_exit 0x0 -int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0 -int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0 -int anim btn_checkbox_to_checked_icon_null_animation 0x0 -int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0 -int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0 -int anim btn_checkbox_to_unchecked_icon_null_animation 0x0 -int anim btn_radio_to_off_mtrl_dot_group_animation 0x0 -int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0 -int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0 -int anim btn_radio_to_on_mtrl_dot_group_animation 0x0 -int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0 -int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0 -int anim fragment_fast_out_extra_slow_in 0x0 -int animator fragment_close_enter 0x0 -int animator fragment_close_exit 0x0 -int animator fragment_fade_enter 0x0 -int animator fragment_fade_exit 0x0 -int animator fragment_open_enter 0x0 -int animator fragment_open_exit 0x0 -int attr actionBarDivider 0x0 -int attr actionBarItemBackground 0x0 -int attr actionBarPopupTheme 0x0 -int attr actionBarSize 0x0 -int attr actionBarSplitStyle 0x0 -int attr actionBarStyle 0x0 -int attr actionBarTabBarStyle 0x0 -int attr actionBarTabStyle 0x0 -int attr actionBarTabTextStyle 0x0 -int attr actionBarTheme 0x0 -int attr actionBarWidgetTheme 0x0 -int attr actionButtonStyle 0x0 -int attr actionDropDownStyle 0x0 -int attr actionLayout 0x0 -int attr actionMenuTextAppearance 0x0 -int attr actionMenuTextColor 0x0 -int attr actionModeBackground 0x0 -int attr actionModeCloseButtonStyle 0x0 -int attr actionModeCloseContentDescription 0x0 -int attr actionModeCloseDrawable 0x0 -int attr actionModeCopyDrawable 0x0 -int attr actionModeCutDrawable 0x0 -int attr actionModeFindDrawable 0x0 -int attr actionModePasteDrawable 0x0 -int attr actionModePopupWindowStyle 0x0 -int attr actionModeSelectAllDrawable 0x0 -int attr actionModeShareDrawable 0x0 -int attr actionModeSplitBackground 0x0 -int attr actionModeStyle 0x0 -int attr actionModeTheme 0x0 -int attr actionModeWebSearchDrawable 0x0 -int attr actionOverflowButtonStyle 0x0 -int attr actionOverflowMenuStyle 0x0 -int attr actionProviderClass 0x0 -int attr actionViewClass 0x0 -int attr activityAction 0x0 -int attr activityChooserViewStyle 0x0 -int attr activityName 0x0 -int attr alertDialogButtonGroupStyle 0x0 -int attr alertDialogCenterButtons 0x0 -int attr alertDialogStyle 0x0 -int attr alertDialogTheme 0x0 -int attr allowStacking 0x0 -int attr alpha 0x0 -int attr alphabeticModifiers 0x0 -int attr alwaysExpand 0x0 -int attr arrowHeadLength 0x0 -int attr arrowShaftLength 0x0 -int attr autoCompleteTextViewStyle 0x0 -int attr autoSizeMaxTextSize 0x0 -int attr autoSizeMinTextSize 0x0 -int attr autoSizePresetSizes 0x0 -int attr autoSizeStepGranularity 0x0 -int attr autoSizeTextType 0x0 -int attr background 0x0 -int attr backgroundSplit 0x0 -int attr backgroundStacked 0x0 -int attr backgroundTint 0x0 -int attr backgroundTintMode 0x0 -int attr barLength 0x0 -int attr borderlessButtonStyle 0x0 -int attr buttonBarButtonStyle 0x0 -int attr buttonBarNegativeButtonStyle 0x0 -int attr buttonBarNeutralButtonStyle 0x0 -int attr buttonBarPositiveButtonStyle 0x0 -int attr buttonBarStyle 0x0 -int attr buttonCompat 0x0 -int attr buttonGravity 0x0 -int attr buttonIconDimen 0x0 -int attr buttonPanelSideLayout 0x0 -int attr buttonStyle 0x0 -int attr buttonStyleSmall 0x0 -int attr buttonTint 0x0 -int attr buttonTintMode 0x0 -int attr checkboxStyle 0x0 -int attr checkedTextViewStyle 0x0 -int attr clearTop 0x0 -int attr closeIcon 0x0 -int attr closeItemLayout 0x0 -int attr collapseContentDescription 0x0 -int attr collapseIcon 0x0 -int attr color 0x0 -int attr colorAccent 0x0 -int attr colorBackgroundFloating 0x0 -int attr colorButtonNormal 0x0 -int attr colorControlActivated 0x0 -int attr colorControlHighlight 0x0 -int attr colorControlNormal 0x0 -int attr colorError 0x0 -int attr colorPrimary 0x0 -int attr colorPrimaryDark 0x0 -int attr colorSwitchThumbNormal 0x0 -int attr commitIcon 0x0 -int attr contentDescription 0x0 -int attr contentInsetEnd 0x0 -int attr contentInsetEndWithActions 0x0 -int attr contentInsetLeft 0x0 -int attr contentInsetRight 0x0 -int attr contentInsetStart 0x0 -int attr contentInsetStartWithNavigation 0x0 -int attr controlBackground 0x0 -int attr customNavigationLayout 0x0 -int attr defaultQueryHint 0x0 -int attr dialogCornerRadius 0x0 -int attr dialogPreferredPadding 0x0 -int attr dialogTheme 0x0 -int attr displayOptions 0x0 -int attr divider 0x0 -int attr dividerHorizontal 0x0 -int attr dividerPadding 0x0 -int attr dividerVertical 0x0 -int attr drawableBottomCompat 0x0 -int attr drawableEndCompat 0x0 -int attr drawableLeftCompat 0x0 -int attr drawableRightCompat 0x0 -int attr drawableSize 0x0 -int attr drawableStartCompat 0x0 -int attr drawableTint 0x0 -int attr drawableTintMode 0x0 -int attr drawableTopCompat 0x0 -int attr drawerArrowStyle 0x0 -int attr dropDownListViewStyle 0x0 -int attr dropdownListPreferredItemHeight 0x0 -int attr editTextBackground 0x0 -int attr editTextColor 0x0 -int attr editTextStyle 0x0 -int attr elevation 0x0 -int attr expandActivityOverflowButtonDrawable 0x0 -int attr finishPrimaryWithSecondary 0x0 -int attr finishSecondaryWithPrimary 0x0 -int attr firstBaselineToTopHeight 0x0 -int attr font 0x0 -int attr fontFamily 0x0 -int attr fontProviderAuthority 0x0 -int attr fontProviderCerts 0x0 -int attr fontProviderFetchStrategy 0x0 -int attr fontProviderFetchTimeout 0x0 -int attr fontProviderPackage 0x0 -int attr fontProviderQuery 0x0 -int attr fontProviderSystemFontFamily 0x0 -int attr fontStyle 0x0 -int attr fontVariationSettings 0x0 -int attr fontWeight 0x0 -int attr gapBetweenBars 0x0 -int attr goIcon 0x0 -int attr height 0x0 -int attr hideOnContentScroll 0x0 -int attr homeAsUpIndicator 0x0 -int attr homeLayout 0x0 -int attr icon 0x0 -int attr iconTint 0x0 -int attr iconTintMode 0x0 -int attr iconifiedByDefault 0x0 -int attr imageButtonStyle 0x0 -int attr indeterminateProgressStyle 0x0 -int attr initialActivityCount 0x0 -int attr isLightTheme 0x0 -int attr itemPadding 0x0 -int attr lastBaselineToBottomHeight 0x0 -int attr layout 0x0 -int attr lineHeight 0x0 -int attr listChoiceBackgroundIndicator 0x0 -int attr listChoiceIndicatorMultipleAnimated 0x0 -int attr listChoiceIndicatorSingleAnimated 0x0 -int attr listDividerAlertDialog 0x0 -int attr listItemLayout 0x0 -int attr listLayout 0x0 -int attr listMenuViewStyle 0x0 -int attr listPopupWindowStyle 0x0 -int attr listPreferredItemHeight 0x0 -int attr listPreferredItemHeightLarge 0x0 -int attr listPreferredItemHeightSmall 0x0 -int attr listPreferredItemPaddingEnd 0x0 -int attr listPreferredItemPaddingLeft 0x0 -int attr listPreferredItemPaddingRight 0x0 -int attr listPreferredItemPaddingStart 0x0 -int attr logo 0x0 -int attr logoDescription 0x0 -int attr maxButtonHeight 0x0 -int attr measureWithLargestChild 0x0 -int attr menu 0x0 -int attr multiChoiceItemLayout 0x0 -int attr navigationContentDescription 0x0 -int attr navigationIcon 0x0 -int attr navigationMode 0x0 -int attr nestedScrollViewStyle 0x0 -int attr numericModifiers 0x0 -int attr overlapAnchor 0x0 -int attr paddingBottomNoButtons 0x0 -int attr paddingEnd 0x0 -int attr paddingStart 0x0 -int attr paddingTopNoTitle 0x0 -int attr panelBackground 0x0 -int attr panelMenuListTheme 0x0 -int attr panelMenuListWidth 0x0 -int attr placeholderActivityName 0x0 -int attr popupMenuStyle 0x0 -int attr popupTheme 0x0 -int attr popupWindowStyle 0x0 -int attr preserveIconSpacing 0x0 -int attr primaryActivityName 0x0 -int attr progressBarPadding 0x0 -int attr progressBarStyle 0x0 -int attr queryBackground 0x0 -int attr queryHint 0x0 -int attr queryPatterns 0x0 -int attr radioButtonStyle 0x0 -int attr ratingBarStyle 0x0 -int attr ratingBarStyleIndicator 0x0 -int attr ratingBarStyleSmall 0x0 -int attr searchHintIcon 0x0 -int attr searchIcon 0x0 -int attr searchViewStyle 0x0 -int attr secondaryActivityAction 0x0 -int attr secondaryActivityName 0x0 -int attr seekBarStyle 0x0 -int attr selectableItemBackground 0x0 -int attr selectableItemBackgroundBorderless 0x0 -int attr shortcutMatchRequired 0x0 -int attr showAsAction 0x0 -int attr showDividers 0x0 -int attr showText 0x0 -int attr showTitle 0x0 -int attr singleChoiceItemLayout 0x0 -int attr spinBars 0x0 -int attr spinnerDropDownItemStyle 0x0 -int attr spinnerStyle 0x0 -int attr splitLayoutDirection 0x0 -int attr splitMinSmallestWidth 0x0 -int attr splitMinWidth 0x0 -int attr splitRatio 0x0 -int attr splitTrack 0x0 -int attr srcCompat 0x0 -int attr state_above_anchor 0x0 -int attr subMenuArrow 0x0 -int attr submitBackground 0x0 -int attr subtitle 0x0 -int attr subtitleTextAppearance 0x0 -int attr subtitleTextColor 0x0 -int attr subtitleTextStyle 0x0 -int attr suggestionRowLayout 0x0 -int attr switchMinWidth 0x0 -int attr switchPadding 0x0 -int attr switchStyle 0x0 -int attr switchTextAppearance 0x0 -int attr textAllCaps 0x0 -int attr textAppearanceLargePopupMenu 0x0 -int attr textAppearanceListItem 0x0 -int attr textAppearanceListItemSecondary 0x0 -int attr textAppearanceListItemSmall 0x0 -int attr textAppearancePopupMenuHeader 0x0 -int attr textAppearanceSearchResultSubtitle 0x0 -int attr textAppearanceSearchResultTitle 0x0 -int attr textAppearanceSmallPopupMenu 0x0 -int attr textColorAlertDialogListItem 0x0 -int attr textColorSearchUrl 0x0 -int attr textLocale 0x0 -int attr theme 0x0 -int attr thickness 0x0 -int attr thumbTextPadding 0x0 -int attr thumbTint 0x0 -int attr thumbTintMode 0x0 -int attr tickMark 0x0 -int attr tickMarkTint 0x0 -int attr tickMarkTintMode 0x0 -int attr tint 0x0 -int attr tintMode 0x0 -int attr title 0x0 -int attr titleMargin 0x0 -int attr titleMarginBottom 0x0 -int attr titleMarginEnd 0x0 -int attr titleMarginStart 0x0 -int attr titleMarginTop 0x0 -int attr titleMargins 0x0 -int attr titleTextAppearance 0x0 -int attr titleTextColor 0x0 -int attr titleTextStyle 0x0 -int attr toolbarNavigationButtonStyle 0x0 -int attr toolbarStyle 0x0 -int attr tooltipForegroundColor 0x0 -int attr tooltipFrameBackground 0x0 -int attr tooltipText 0x0 -int attr track 0x0 -int attr trackTint 0x0 -int attr trackTintMode 0x0 -int attr ttcIndex 0x0 -int attr viewInflaterClass 0x0 -int attr voiceIcon 0x0 -int attr windowActionBar 0x0 -int attr windowActionBarOverlay 0x0 -int attr windowActionModeOverlay 0x0 -int attr windowFixedHeightMajor 0x0 -int attr windowFixedHeightMinor 0x0 -int attr windowFixedWidthMajor 0x0 -int attr windowFixedWidthMinor 0x0 -int attr windowMinWidthMajor 0x0 -int attr windowMinWidthMinor 0x0 -int attr windowNoTitle 0x0 -int bool abc_action_bar_embed_tabs 0x0 -int bool abc_config_actionMenuItemAllCaps 0x0 -int color abc_background_cache_hint_selector_material_dark 0x0 -int color abc_background_cache_hint_selector_material_light 0x0 -int color abc_btn_colored_borderless_text_material 0x0 -int color abc_btn_colored_text_material 0x0 -int color abc_color_highlight_material 0x0 -int color abc_decor_view_status_guard 0x0 -int color abc_decor_view_status_guard_light 0x0 -int color abc_hint_foreground_material_dark 0x0 -int color abc_hint_foreground_material_light 0x0 -int color abc_primary_text_disable_only_material_dark 0x0 -int color abc_primary_text_disable_only_material_light 0x0 -int color abc_primary_text_material_dark 0x0 -int color abc_primary_text_material_light 0x0 -int color abc_search_url_text 0x0 -int color abc_search_url_text_normal 0x0 -int color abc_search_url_text_pressed 0x0 -int color abc_search_url_text_selected 0x0 -int color abc_secondary_text_material_dark 0x0 -int color abc_secondary_text_material_light 0x0 -int color abc_tint_btn_checkable 0x0 -int color abc_tint_default 0x0 -int color abc_tint_edittext 0x0 -int color abc_tint_seek_thumb 0x0 -int color abc_tint_spinner 0x0 -int color abc_tint_switch_track 0x0 -int color accent_material_dark 0x0 -int color accent_material_light 0x0 -int color androidx_core_ripple_material_light 0x0 -int color androidx_core_secondary_text_default_material_light 0x0 -int color background_floating_material_dark 0x0 -int color background_floating_material_light 0x0 -int color background_material_dark 0x0 -int color background_material_light 0x0 -int color bright_foreground_disabled_material_dark 0x0 -int color bright_foreground_disabled_material_light 0x0 -int color bright_foreground_inverse_material_dark 0x0 -int color bright_foreground_inverse_material_light 0x0 -int color bright_foreground_material_dark 0x0 -int color bright_foreground_material_light 0x0 -int color button_material_dark 0x0 -int color button_material_light 0x0 -int color dim_foreground_disabled_material_dark 0x0 -int color dim_foreground_disabled_material_light 0x0 -int color dim_foreground_material_dark 0x0 -int color dim_foreground_material_light 0x0 -int color error_color_material_dark 0x0 -int color error_color_material_light 0x0 -int color foreground_material_dark 0x0 -int color foreground_material_light 0x0 -int color highlighted_text_material_dark 0x0 -int color highlighted_text_material_light 0x0 -int color material_blue_grey_800 0x0 -int color material_blue_grey_900 0x0 -int color material_blue_grey_950 0x0 -int color material_deep_teal_200 0x0 -int color material_deep_teal_500 0x0 -int color material_grey_100 0x0 -int color material_grey_300 0x0 -int color material_grey_50 0x0 -int color material_grey_600 0x0 -int color material_grey_800 0x0 -int color material_grey_850 0x0 -int color material_grey_900 0x0 -int color notification_action_color_filter 0x0 -int color notification_icon_bg_color 0x0 -int color primary_dark_material_dark 0x0 -int color primary_dark_material_light 0x0 -int color primary_material_dark 0x0 -int color primary_material_light 0x0 -int color primary_text_default_material_dark 0x0 -int color primary_text_default_material_light 0x0 -int color primary_text_disabled_material_dark 0x0 -int color primary_text_disabled_material_light 0x0 -int color ripple_material_dark 0x0 -int color ripple_material_light 0x0 -int color secondary_text_default_material_dark 0x0 -int color secondary_text_default_material_light 0x0 -int color secondary_text_disabled_material_dark 0x0 -int color secondary_text_disabled_material_light 0x0 -int color switch_thumb_disabled_material_dark 0x0 -int color switch_thumb_disabled_material_light 0x0 -int color switch_thumb_material_dark 0x0 -int color switch_thumb_material_light 0x0 -int color switch_thumb_normal_material_dark 0x0 -int color switch_thumb_normal_material_light 0x0 -int color tooltip_background_dark 0x0 -int color tooltip_background_light 0x0 -int dimen abc_action_bar_content_inset_material 0x0 -int dimen abc_action_bar_content_inset_with_nav 0x0 -int dimen abc_action_bar_default_height_material 0x0 -int dimen abc_action_bar_default_padding_end_material 0x0 -int dimen abc_action_bar_default_padding_start_material 0x0 -int dimen abc_action_bar_elevation_material 0x0 -int dimen abc_action_bar_icon_vertical_padding_material 0x0 -int dimen abc_action_bar_overflow_padding_end_material 0x0 -int dimen abc_action_bar_overflow_padding_start_material 0x0 -int dimen abc_action_bar_stacked_max_height 0x0 -int dimen abc_action_bar_stacked_tab_max_width 0x0 -int dimen abc_action_bar_subtitle_bottom_margin_material 0x0 -int dimen abc_action_bar_subtitle_top_margin_material 0x0 -int dimen abc_action_button_min_height_material 0x0 -int dimen abc_action_button_min_width_material 0x0 -int dimen abc_action_button_min_width_overflow_material 0x0 -int dimen abc_alert_dialog_button_bar_height 0x0 -int dimen abc_alert_dialog_button_dimen 0x0 -int dimen abc_button_inset_horizontal_material 0x0 -int dimen abc_button_inset_vertical_material 0x0 -int dimen abc_button_padding_horizontal_material 0x0 -int dimen abc_button_padding_vertical_material 0x0 -int dimen abc_cascading_menus_min_smallest_width 0x0 -int dimen abc_config_prefDialogWidth 0x0 -int dimen abc_control_corner_material 0x0 -int dimen abc_control_inset_material 0x0 -int dimen abc_control_padding_material 0x0 -int dimen abc_dialog_corner_radius_material 0x0 -int dimen abc_dialog_fixed_height_major 0x0 -int dimen abc_dialog_fixed_height_minor 0x0 -int dimen abc_dialog_fixed_width_major 0x0 -int dimen abc_dialog_fixed_width_minor 0x0 -int dimen abc_dialog_list_padding_bottom_no_buttons 0x0 -int dimen abc_dialog_list_padding_top_no_title 0x0 -int dimen abc_dialog_min_width_major 0x0 -int dimen abc_dialog_min_width_minor 0x0 -int dimen abc_dialog_padding_material 0x0 -int dimen abc_dialog_padding_top_material 0x0 -int dimen abc_dialog_title_divider_material 0x0 -int dimen abc_disabled_alpha_material_dark 0x0 -int dimen abc_disabled_alpha_material_light 0x0 -int dimen abc_dropdownitem_icon_width 0x0 -int dimen abc_dropdownitem_text_padding_left 0x0 -int dimen abc_dropdownitem_text_padding_right 0x0 -int dimen abc_edit_text_inset_bottom_material 0x0 -int dimen abc_edit_text_inset_horizontal_material 0x0 -int dimen abc_edit_text_inset_top_material 0x0 -int dimen abc_floating_window_z 0x0 -int dimen abc_list_item_height_large_material 0x0 -int dimen abc_list_item_height_material 0x0 -int dimen abc_list_item_height_small_material 0x0 -int dimen abc_list_item_padding_horizontal_material 0x0 -int dimen abc_panel_menu_list_width 0x0 -int dimen abc_progress_bar_height_material 0x0 -int dimen abc_search_view_preferred_height 0x0 -int dimen abc_search_view_preferred_width 0x0 -int dimen abc_seekbar_track_background_height_material 0x0 -int dimen abc_seekbar_track_progress_height_material 0x0 -int dimen abc_select_dialog_padding_start_material 0x0 -int dimen abc_star_big 0x0 -int dimen abc_star_medium 0x0 -int dimen abc_star_small 0x0 -int dimen abc_switch_padding 0x0 -int dimen abc_text_size_body_1_material 0x0 -int dimen abc_text_size_body_2_material 0x0 -int dimen abc_text_size_button_material 0x0 -int dimen abc_text_size_caption_material 0x0 -int dimen abc_text_size_display_1_material 0x0 -int dimen abc_text_size_display_2_material 0x0 -int dimen abc_text_size_display_3_material 0x0 -int dimen abc_text_size_display_4_material 0x0 -int dimen abc_text_size_headline_material 0x0 -int dimen abc_text_size_large_material 0x0 -int dimen abc_text_size_medium_material 0x0 -int dimen abc_text_size_menu_header_material 0x0 -int dimen abc_text_size_menu_material 0x0 -int dimen abc_text_size_small_material 0x0 -int dimen abc_text_size_subhead_material 0x0 -int dimen abc_text_size_subtitle_material_toolbar 0x0 -int dimen abc_text_size_title_material 0x0 -int dimen abc_text_size_title_material_toolbar 0x0 -int dimen compat_button_inset_horizontal_material 0x0 -int dimen compat_button_inset_vertical_material 0x0 -int dimen compat_button_padding_horizontal_material 0x0 -int dimen compat_button_padding_vertical_material 0x0 -int dimen compat_control_corner_material 0x0 -int dimen compat_notification_large_icon_max_height 0x0 -int dimen compat_notification_large_icon_max_width 0x0 -int dimen disabled_alpha_material_dark 0x0 -int dimen disabled_alpha_material_light 0x0 -int dimen highlight_alpha_material_colored 0x0 -int dimen highlight_alpha_material_dark 0x0 -int dimen highlight_alpha_material_light 0x0 -int dimen hint_alpha_material_dark 0x0 -int dimen hint_alpha_material_light 0x0 -int dimen hint_pressed_alpha_material_dark 0x0 -int dimen hint_pressed_alpha_material_light 0x0 -int dimen notification_action_icon_size 0x0 -int dimen notification_action_text_size 0x0 -int dimen notification_big_circle_margin 0x0 -int dimen notification_content_margin_start 0x0 -int dimen notification_large_icon_height 0x0 -int dimen notification_large_icon_width 0x0 -int dimen notification_main_column_padding_top 0x0 -int dimen notification_media_narrow_margin 0x0 -int dimen notification_right_icon_size 0x0 -int dimen notification_right_side_padding_top 0x0 -int dimen notification_small_icon_background_padding 0x0 -int dimen notification_small_icon_size_as_large 0x0 -int dimen notification_subtext_size 0x0 -int dimen notification_top_pad 0x0 -int dimen notification_top_pad_large_text 0x0 -int dimen tooltip_corner_radius 0x0 -int dimen tooltip_horizontal_padding 0x0 -int dimen tooltip_margin 0x0 -int dimen tooltip_precise_anchor_extra_offset 0x0 -int dimen tooltip_precise_anchor_threshold 0x0 -int dimen tooltip_vertical_padding 0x0 -int dimen tooltip_y_offset_non_touch 0x0 -int dimen tooltip_y_offset_touch 0x0 -int drawable abc_ab_share_pack_mtrl_alpha 0x0 -int drawable abc_action_bar_item_background_material 0x0 -int drawable abc_btn_borderless_material 0x0 -int drawable abc_btn_check_material 0x0 -int drawable abc_btn_check_material_anim 0x0 -int drawable abc_btn_check_to_on_mtrl_000 0x0 -int drawable abc_btn_check_to_on_mtrl_015 0x0 -int drawable abc_btn_colored_material 0x0 -int drawable abc_btn_default_mtrl_shape 0x0 -int drawable abc_btn_radio_material 0x0 -int drawable abc_btn_radio_material_anim 0x0 -int drawable abc_btn_radio_to_on_mtrl_000 0x0 -int drawable abc_btn_radio_to_on_mtrl_015 0x0 -int drawable abc_btn_switch_to_on_mtrl_00001 0x0 -int drawable abc_btn_switch_to_on_mtrl_00012 0x0 -int drawable abc_cab_background_internal_bg 0x0 -int drawable abc_cab_background_top_material 0x0 -int drawable abc_cab_background_top_mtrl_alpha 0x0 -int drawable abc_control_background_material 0x0 -int drawable abc_dialog_material_background 0x0 -int drawable abc_edit_text_material 0x0 -int drawable abc_ic_ab_back_material 0x0 -int drawable abc_ic_arrow_drop_right_black_24dp 0x0 -int drawable abc_ic_clear_material 0x0 -int drawable abc_ic_commit_search_api_mtrl_alpha 0x0 -int drawable abc_ic_go_search_api_material 0x0 -int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0 -int drawable abc_ic_menu_cut_mtrl_alpha 0x0 -int drawable abc_ic_menu_overflow_material 0x0 -int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0 -int drawable abc_ic_menu_selectall_mtrl_alpha 0x0 -int drawable abc_ic_menu_share_mtrl_alpha 0x0 -int drawable abc_ic_search_api_material 0x0 -int drawable abc_ic_voice_search_api_material 0x0 -int drawable abc_item_background_holo_dark 0x0 -int drawable abc_item_background_holo_light 0x0 -int drawable abc_list_divider_material 0x0 -int drawable abc_list_divider_mtrl_alpha 0x0 -int drawable abc_list_focused_holo 0x0 -int drawable abc_list_longpressed_holo 0x0 -int drawable abc_list_pressed_holo_dark 0x0 -int drawable abc_list_pressed_holo_light 0x0 -int drawable abc_list_selector_background_transition_holo_dark 0x0 -int drawable abc_list_selector_background_transition_holo_light 0x0 -int drawable abc_list_selector_disabled_holo_dark 0x0 -int drawable abc_list_selector_disabled_holo_light 0x0 -int drawable abc_list_selector_holo_dark 0x0 -int drawable abc_list_selector_holo_light 0x0 -int drawable abc_menu_hardkey_panel_mtrl_mult 0x0 -int drawable abc_popup_background_mtrl_mult 0x0 -int drawable abc_ratingbar_indicator_material 0x0 -int drawable abc_ratingbar_material 0x0 -int drawable abc_ratingbar_small_material 0x0 -int drawable abc_scrubber_control_off_mtrl_alpha 0x0 -int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0 -int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0 -int drawable abc_scrubber_primary_mtrl_alpha 0x0 -int drawable abc_scrubber_track_mtrl_alpha 0x0 -int drawable abc_seekbar_thumb_material 0x0 -int drawable abc_seekbar_tick_mark_material 0x0 -int drawable abc_seekbar_track_material 0x0 -int drawable abc_spinner_mtrl_am_alpha 0x0 -int drawable abc_spinner_textfield_background_material 0x0 -int drawable abc_star_black_48dp 0x0 -int drawable abc_star_half_black_48dp 0x0 -int drawable abc_switch_thumb_material 0x0 -int drawable abc_switch_track_mtrl_alpha 0x0 -int drawable abc_tab_indicator_material 0x0 -int drawable abc_tab_indicator_mtrl_alpha 0x0 -int drawable abc_text_cursor_material 0x0 -int drawable abc_text_select_handle_left_mtrl 0x0 -int drawable abc_text_select_handle_middle_mtrl 0x0 -int drawable abc_text_select_handle_right_mtrl 0x0 -int drawable abc_textfield_activated_mtrl_alpha 0x0 -int drawable abc_textfield_default_mtrl_alpha 0x0 -int drawable abc_textfield_search_activated_mtrl_alpha 0x0 -int drawable abc_textfield_search_default_mtrl_alpha 0x0 -int drawable abc_textfield_search_material 0x0 -int drawable abc_vector_test 0x0 -int drawable btn_checkbox_checked_mtrl 0x0 -int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0 -int drawable btn_checkbox_unchecked_mtrl 0x0 -int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0 -int drawable btn_radio_off_mtrl 0x0 -int drawable btn_radio_off_to_on_mtrl_animation 0x0 -int drawable btn_radio_on_mtrl 0x0 -int drawable btn_radio_on_to_off_mtrl_animation 0x0 -int drawable notification_action_background 0x0 -int drawable notification_bg 0x0 -int drawable notification_bg_low 0x0 -int drawable notification_bg_low_normal 0x0 -int drawable notification_bg_low_pressed 0x0 -int drawable notification_bg_normal 0x0 -int drawable notification_bg_normal_pressed 0x0 -int drawable notification_icon_background 0x0 -int drawable notification_template_icon_bg 0x0 -int drawable notification_template_icon_low_bg 0x0 -int drawable notification_tile_bg 0x0 -int drawable notify_panel_notification_icon_bg 0x0 -int drawable tooltip_frame_dark 0x0 -int drawable tooltip_frame_light 0x0 -int id accessibility_action_clickable_span 0x0 -int id accessibility_custom_action_0 0x0 -int id accessibility_custom_action_1 0x0 -int id accessibility_custom_action_10 0x0 -int id accessibility_custom_action_11 0x0 -int id accessibility_custom_action_12 0x0 -int id accessibility_custom_action_13 0x0 -int id accessibility_custom_action_14 0x0 -int id accessibility_custom_action_15 0x0 -int id accessibility_custom_action_16 0x0 -int id accessibility_custom_action_17 0x0 -int id accessibility_custom_action_18 0x0 -int id accessibility_custom_action_19 0x0 -int id accessibility_custom_action_2 0x0 -int id accessibility_custom_action_20 0x0 -int id accessibility_custom_action_21 0x0 -int id accessibility_custom_action_22 0x0 -int id accessibility_custom_action_23 0x0 -int id accessibility_custom_action_24 0x0 -int id accessibility_custom_action_25 0x0 -int id accessibility_custom_action_26 0x0 -int id accessibility_custom_action_27 0x0 -int id accessibility_custom_action_28 0x0 -int id accessibility_custom_action_29 0x0 -int id accessibility_custom_action_3 0x0 -int id accessibility_custom_action_30 0x0 -int id accessibility_custom_action_31 0x0 -int id accessibility_custom_action_4 0x0 -int id accessibility_custom_action_5 0x0 -int id accessibility_custom_action_6 0x0 -int id accessibility_custom_action_7 0x0 -int id accessibility_custom_action_8 0x0 -int id accessibility_custom_action_9 0x0 -int id action_bar 0x0 -int id action_bar_activity_content 0x0 -int id action_bar_container 0x0 -int id action_bar_root 0x0 -int id action_bar_spinner 0x0 -int id action_bar_subtitle 0x0 -int id action_bar_title 0x0 -int id action_container 0x0 -int id action_context_bar 0x0 -int id action_divider 0x0 -int id action_image 0x0 -int id action_menu_divider 0x0 -int id action_menu_presenter 0x0 -int id action_mode_bar 0x0 -int id action_mode_bar_stub 0x0 -int id action_mode_close_button 0x0 -int id action_text 0x0 -int id actions 0x0 -int id activity_chooser_view_content 0x0 -int id add 0x0 -int id alertTitle 0x0 -int id androidx_window_activity_scope 0x0 -int id async 0x0 -int id blocking 0x0 -int id buttonPanel 0x0 -int id checkbox 0x0 -int id checked 0x0 -int id chronometer 0x0 -int id content 0x0 -int id contentPanel 0x0 -int id custom 0x0 -int id customPanel 0x0 -int id decor_content_parent 0x0 -int id default_activity_button 0x0 -int id dialog_button 0x0 -int id edit_query 0x0 -int id expand_activities_button 0x0 -int id expanded_menu 0x0 -int id forever 0x0 -int id fragment_container_view_tag 0x0 -int id group_divider 0x0 -int id home 0x0 -int id icon 0x0 -int id icon_group 0x0 -int id image 0x0 -int id info 0x0 -int id italic 0x0 -int id line1 0x0 -int id line3 0x0 -int id listMode 0x0 -int id list_item 0x0 -int id locale 0x0 -int id ltr 0x0 -int id message 0x0 -int id multiply 0x0 -int id none 0x0 -int id normal 0x0 -int id notification_background 0x0 -int id notification_main_column 0x0 -int id notification_main_column_container 0x0 -int id off 0x0 -int id on 0x0 -int id parentPanel 0x0 -int id progress_circular 0x0 -int id progress_horizontal 0x0 -int id radio 0x0 -int id right_icon 0x0 -int id right_side 0x0 -int id rtl 0x0 -int id screen 0x0 -int id scrollIndicatorDown 0x0 -int id scrollIndicatorUp 0x0 -int id scrollView 0x0 -int id search_badge 0x0 -int id search_bar 0x0 -int id search_button 0x0 -int id search_close_btn 0x0 -int id search_edit_frame 0x0 -int id search_go_btn 0x0 -int id search_mag_icon 0x0 -int id search_plate 0x0 -int id search_src_text 0x0 -int id search_voice_btn 0x0 -int id select_dialog_listview 0x0 -int id shortcut 0x0 -int id spacer 0x0 -int id special_effects_controller_view_tag 0x0 -int id split_action_bar 0x0 -int id src_atop 0x0 -int id src_in 0x0 -int id src_over 0x0 -int id submenuarrow 0x0 -int id submit_area 0x0 -int id tabMode 0x0 -int id tag_accessibility_actions 0x0 -int id tag_accessibility_clickable_spans 0x0 -int id tag_accessibility_heading 0x0 -int id tag_accessibility_pane_title 0x0 -int id tag_on_apply_window_listener 0x0 -int id tag_on_receive_content_listener 0x0 -int id tag_on_receive_content_mime_types 0x0 -int id tag_screen_reader_focusable 0x0 -int id tag_state_description 0x0 -int id tag_transition_group 0x0 -int id tag_unhandled_key_event_manager 0x0 -int id tag_unhandled_key_listeners 0x0 -int id tag_window_insets_animation_callback 0x0 -int id text 0x0 -int id text2 0x0 -int id textSpacerNoButtons 0x0 -int id textSpacerNoTitle 0x0 -int id time 0x0 -int id title 0x0 -int id titleDividerNoCustom 0x0 -int id title_template 0x0 -int id topPanel 0x0 -int id unchecked 0x0 -int id uniform 0x0 -int id up 0x0 -int id view_tree_lifecycle_owner 0x0 -int id view_tree_saved_state_registry_owner 0x0 -int id view_tree_view_model_store_owner 0x0 -int id visible_removing_fragment_view_tag 0x0 -int id wrap_content 0x0 -int integer abc_config_activityDefaultDur 0x0 -int integer abc_config_activityShortDur 0x0 -int integer cancel_button_image_alpha 0x0 -int integer config_tooltipAnimTime 0x0 -int integer status_bar_notification_info_maxnum 0x0 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0 -int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0 -int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0 -int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0 -int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0 -int interpolator fast_out_slow_in 0x0 -int layout abc_action_bar_title_item 0x0 -int layout abc_action_bar_up_container 0x0 -int layout abc_action_menu_item_layout 0x0 -int layout abc_action_menu_layout 0x0 -int layout abc_action_mode_bar 0x0 -int layout abc_action_mode_close_item_material 0x0 -int layout abc_activity_chooser_view 0x0 -int layout abc_activity_chooser_view_list_item 0x0 -int layout abc_alert_dialog_button_bar_material 0x0 -int layout abc_alert_dialog_material 0x0 -int layout abc_alert_dialog_title_material 0x0 -int layout abc_cascading_menu_item_layout 0x0 -int layout abc_dialog_title_material 0x0 -int layout abc_expanded_menu_layout 0x0 -int layout abc_list_menu_item_checkbox 0x0 -int layout abc_list_menu_item_icon 0x0 -int layout abc_list_menu_item_layout 0x0 -int layout abc_list_menu_item_radio 0x0 -int layout abc_popup_menu_header_item_layout 0x0 -int layout abc_popup_menu_item_layout 0x0 -int layout abc_screen_content_include 0x0 -int layout abc_screen_simple 0x0 -int layout abc_screen_simple_overlay_action_mode 0x0 -int layout abc_screen_toolbar 0x0 -int layout abc_search_dropdown_item_icons_2line 0x0 -int layout abc_search_view 0x0 -int layout abc_select_dialog_material 0x0 -int layout abc_tooltip 0x0 -int layout custom_dialog 0x0 -int layout notification_action 0x0 -int layout notification_action_tombstone 0x0 -int layout notification_template_custom_big 0x0 -int layout notification_template_icon_group 0x0 -int layout notification_template_part_chronometer 0x0 -int layout notification_template_part_time 0x0 -int layout select_dialog_item_material 0x0 -int layout select_dialog_multichoice_material 0x0 -int layout select_dialog_singlechoice_material 0x0 -int layout support_simple_spinner_dropdown_item 0x0 -int string abc_action_bar_home_description 0x0 -int string abc_action_bar_up_description 0x0 -int string abc_action_menu_overflow_description 0x0 -int string abc_action_mode_done 0x0 -int string abc_activity_chooser_view_see_all 0x0 -int string abc_activitychooserview_choose_application 0x0 -int string abc_capital_off 0x0 -int string abc_capital_on 0x0 -int string abc_menu_alt_shortcut_label 0x0 -int string abc_menu_ctrl_shortcut_label 0x0 -int string abc_menu_delete_shortcut_label 0x0 -int string abc_menu_enter_shortcut_label 0x0 -int string abc_menu_function_shortcut_label 0x0 -int string abc_menu_meta_shortcut_label 0x0 -int string abc_menu_shift_shortcut_label 0x0 -int string abc_menu_space_shortcut_label 0x0 -int string abc_menu_sym_shortcut_label 0x0 -int string abc_prepend_shortcut_label 0x0 -int string abc_search_hint 0x0 -int string abc_searchview_description_clear 0x0 -int string abc_searchview_description_query 0x0 -int string abc_searchview_description_search 0x0 -int string abc_searchview_description_submit 0x0 -int string abc_searchview_description_voice 0x0 -int string abc_shareactionprovider_share_with 0x0 -int string abc_shareactionprovider_share_with_application 0x0 -int string abc_toolbar_collapse_description 0x0 -int string search_menu_title 0x0 -int string status_bar_notification_info_overflow 0x0 -int style AlertDialog_AppCompat 0x0 -int style AlertDialog_AppCompat_Light 0x0 -int style Animation_AppCompat_Dialog 0x0 -int style Animation_AppCompat_DropDownUp 0x0 -int style Animation_AppCompat_Tooltip 0x0 -int style Base_AlertDialog_AppCompat 0x0 -int style Base_AlertDialog_AppCompat_Light 0x0 -int style Base_Animation_AppCompat_Dialog 0x0 -int style Base_Animation_AppCompat_DropDownUp 0x0 -int style Base_Animation_AppCompat_Tooltip 0x0 -int style Base_DialogWindowTitleBackground_AppCompat 0x0 -int style Base_DialogWindowTitle_AppCompat 0x0 -int style Base_TextAppearance_AppCompat 0x0 -int style Base_TextAppearance_AppCompat_Body1 0x0 -int style Base_TextAppearance_AppCompat_Body2 0x0 -int style Base_TextAppearance_AppCompat_Button 0x0 -int style Base_TextAppearance_AppCompat_Caption 0x0 -int style Base_TextAppearance_AppCompat_Display1 0x0 -int style Base_TextAppearance_AppCompat_Display2 0x0 -int style Base_TextAppearance_AppCompat_Display3 0x0 -int style Base_TextAppearance_AppCompat_Display4 0x0 -int style Base_TextAppearance_AppCompat_Headline 0x0 -int style Base_TextAppearance_AppCompat_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Large 0x0 -int style Base_TextAppearance_AppCompat_Large_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -int style Base_TextAppearance_AppCompat_Medium 0x0 -int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Menu 0x0 -int style Base_TextAppearance_AppCompat_SearchResult 0x0 -int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0 -int style Base_TextAppearance_AppCompat_Small 0x0 -int style Base_TextAppearance_AppCompat_Small_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Subhead 0x0 -int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Title 0x0 -int style Base_TextAppearance_AppCompat_Title_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Tooltip 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0 -int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -int style Base_TextAppearance_AppCompat_Widget_Switch 0x0 -int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -int style Base_ThemeOverlay_AppCompat 0x0 -int style Base_ThemeOverlay_AppCompat_ActionBar 0x0 -int style Base_ThemeOverlay_AppCompat_Dark 0x0 -int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -int style Base_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0 -int style Base_ThemeOverlay_AppCompat_Light 0x0 -int style Base_Theme_AppCompat 0x0 -int style Base_Theme_AppCompat_CompactMenu 0x0 -int style Base_Theme_AppCompat_Dialog 0x0 -int style Base_Theme_AppCompat_DialogWhenLarge 0x0 -int style Base_Theme_AppCompat_Dialog_Alert 0x0 -int style Base_Theme_AppCompat_Dialog_FixedSize 0x0 -int style Base_Theme_AppCompat_Dialog_MinWidth 0x0 -int style Base_Theme_AppCompat_Light 0x0 -int style Base_Theme_AppCompat_Light_DarkActionBar 0x0 -int style Base_Theme_AppCompat_Light_Dialog 0x0 -int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0 -int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0 -int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0 -int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0 -int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_V21_Theme_AppCompat 0x0 -int style Base_V21_Theme_AppCompat_Dialog 0x0 -int style Base_V21_Theme_AppCompat_Light 0x0 -int style Base_V21_Theme_AppCompat_Light_Dialog 0x0 -int style Base_V22_Theme_AppCompat 0x0 -int style Base_V22_Theme_AppCompat_Light 0x0 -int style Base_V23_Theme_AppCompat 0x0 -int style Base_V23_Theme_AppCompat_Light 0x0 -int style Base_V26_Theme_AppCompat 0x0 -int style Base_V26_Theme_AppCompat_Light 0x0 -int style Base_V26_Widget_AppCompat_Toolbar 0x0 -int style Base_V28_Theme_AppCompat 0x0 -int style Base_V28_Theme_AppCompat_Light 0x0 -int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0 -int style Base_V7_Theme_AppCompat 0x0 -int style Base_V7_Theme_AppCompat_Dialog 0x0 -int style Base_V7_Theme_AppCompat_Light 0x0 -int style Base_V7_Theme_AppCompat_Light_Dialog 0x0 -int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0 -int style Base_V7_Widget_AppCompat_EditText 0x0 -int style Base_V7_Widget_AppCompat_Toolbar 0x0 -int style Base_Widget_AppCompat_ActionBar 0x0 -int style Base_Widget_AppCompat_ActionBar_Solid 0x0 -int style Base_Widget_AppCompat_ActionBar_TabBar 0x0 -int style Base_Widget_AppCompat_ActionBar_TabText 0x0 -int style Base_Widget_AppCompat_ActionBar_TabView 0x0 -int style Base_Widget_AppCompat_ActionButton 0x0 -int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0 -int style Base_Widget_AppCompat_ActionButton_Overflow 0x0 -int style Base_Widget_AppCompat_ActionMode 0x0 -int style Base_Widget_AppCompat_ActivityChooserView 0x0 -int style Base_Widget_AppCompat_AutoCompleteTextView 0x0 -int style Base_Widget_AppCompat_Button 0x0 -int style Base_Widget_AppCompat_ButtonBar 0x0 -int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0 -int style Base_Widget_AppCompat_Button_Borderless 0x0 -int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0 -int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -int style Base_Widget_AppCompat_Button_Colored 0x0 -int style Base_Widget_AppCompat_Button_Small 0x0 -int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0 -int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0 -int style Base_Widget_AppCompat_CompoundButton_Switch 0x0 -int style Base_Widget_AppCompat_DrawerArrowToggle 0x0 -int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0 -int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0 -int style Base_Widget_AppCompat_EditText 0x0 -int style Base_Widget_AppCompat_ImageButton 0x0 -int style Base_Widget_AppCompat_Light_ActionBar 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0 -int style Base_Widget_AppCompat_Light_PopupMenu 0x0 -int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -int style Base_Widget_AppCompat_ListMenuView 0x0 -int style Base_Widget_AppCompat_ListPopupWindow 0x0 -int style Base_Widget_AppCompat_ListView 0x0 -int style Base_Widget_AppCompat_ListView_DropDown 0x0 -int style Base_Widget_AppCompat_ListView_Menu 0x0 -int style Base_Widget_AppCompat_PopupMenu 0x0 -int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0 -int style Base_Widget_AppCompat_PopupWindow 0x0 -int style Base_Widget_AppCompat_ProgressBar 0x0 -int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0 -int style Base_Widget_AppCompat_RatingBar 0x0 -int style Base_Widget_AppCompat_RatingBar_Indicator 0x0 -int style Base_Widget_AppCompat_RatingBar_Small 0x0 -int style Base_Widget_AppCompat_SearchView 0x0 -int style Base_Widget_AppCompat_SearchView_ActionBar 0x0 -int style Base_Widget_AppCompat_SeekBar 0x0 -int style Base_Widget_AppCompat_SeekBar_Discrete 0x0 -int style Base_Widget_AppCompat_Spinner 0x0 -int style Base_Widget_AppCompat_Spinner_Underlined 0x0 -int style Base_Widget_AppCompat_TextView 0x0 -int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0 -int style Base_Widget_AppCompat_Toolbar 0x0 -int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0 -int style Platform_AppCompat 0x0 -int style Platform_AppCompat_Light 0x0 -int style Platform_ThemeOverlay_AppCompat 0x0 -int style Platform_ThemeOverlay_AppCompat_Dark 0x0 -int style Platform_ThemeOverlay_AppCompat_Light 0x0 -int style Platform_V21_AppCompat 0x0 -int style Platform_V21_AppCompat_Light 0x0 -int style Platform_V25_AppCompat 0x0 -int style Platform_V25_AppCompat_Light 0x0 -int style Platform_Widget_AppCompat_Spinner 0x0 -int style RtlOverlay_DialogWindowTitle_AppCompat 0x0 -int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0 -int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0 -int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0 -int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0 -int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0 -int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0 -int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0 -int style TextAppearance_AppCompat 0x0 -int style TextAppearance_AppCompat_Body1 0x0 -int style TextAppearance_AppCompat_Body2 0x0 -int style TextAppearance_AppCompat_Button 0x0 -int style TextAppearance_AppCompat_Caption 0x0 -int style TextAppearance_AppCompat_Display1 0x0 -int style TextAppearance_AppCompat_Display2 0x0 -int style TextAppearance_AppCompat_Display3 0x0 -int style TextAppearance_AppCompat_Display4 0x0 -int style TextAppearance_AppCompat_Headline 0x0 -int style TextAppearance_AppCompat_Inverse 0x0 -int style TextAppearance_AppCompat_Large 0x0 -int style TextAppearance_AppCompat_Large_Inverse 0x0 -int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0 -int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0 -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0 -int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0 -int style TextAppearance_AppCompat_Medium 0x0 -int style TextAppearance_AppCompat_Medium_Inverse 0x0 -int style TextAppearance_AppCompat_Menu 0x0 -int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0 -int style TextAppearance_AppCompat_SearchResult_Title 0x0 -int style TextAppearance_AppCompat_Small 0x0 -int style TextAppearance_AppCompat_Small_Inverse 0x0 -int style TextAppearance_AppCompat_Subhead 0x0 -int style TextAppearance_AppCompat_Subhead_Inverse 0x0 -int style TextAppearance_AppCompat_Title 0x0 -int style TextAppearance_AppCompat_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Tooltip 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0 -int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0 -int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_Button 0x0 -int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0 -int style TextAppearance_AppCompat_Widget_Button_Colored 0x0 -int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0 -int style TextAppearance_AppCompat_Widget_DropDownItem 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0 -int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0 -int style TextAppearance_AppCompat_Widget_Switch 0x0 -int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0 -int style TextAppearance_Compat_Notification 0x0 -int style TextAppearance_Compat_Notification_Info 0x0 -int style TextAppearance_Compat_Notification_Line2 0x0 -int style TextAppearance_Compat_Notification_Time 0x0 -int style TextAppearance_Compat_Notification_Title 0x0 -int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0 -int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0 -int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0 -int style ThemeOverlay_AppCompat 0x0 -int style ThemeOverlay_AppCompat_ActionBar 0x0 -int style ThemeOverlay_AppCompat_Dark 0x0 -int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0 -int style ThemeOverlay_AppCompat_DayNight 0x0 -int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0 -int style ThemeOverlay_AppCompat_Dialog 0x0 -int style ThemeOverlay_AppCompat_Dialog_Alert 0x0 -int style ThemeOverlay_AppCompat_Light 0x0 -int style Theme_AppCompat 0x0 -int style Theme_AppCompat_CompactMenu 0x0 -int style Theme_AppCompat_DayNight 0x0 -int style Theme_AppCompat_DayNight_DarkActionBar 0x0 -int style Theme_AppCompat_DayNight_Dialog 0x0 -int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0 -int style Theme_AppCompat_DayNight_Dialog_Alert 0x0 -int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0 -int style Theme_AppCompat_DayNight_NoActionBar 0x0 -int style Theme_AppCompat_Dialog 0x0 -int style Theme_AppCompat_DialogWhenLarge 0x0 -int style Theme_AppCompat_Dialog_Alert 0x0 -int style Theme_AppCompat_Dialog_MinWidth 0x0 -int style Theme_AppCompat_Empty 0x0 -int style Theme_AppCompat_Light 0x0 -int style Theme_AppCompat_Light_DarkActionBar 0x0 -int style Theme_AppCompat_Light_Dialog 0x0 -int style Theme_AppCompat_Light_DialogWhenLarge 0x0 -int style Theme_AppCompat_Light_Dialog_Alert 0x0 -int style Theme_AppCompat_Light_Dialog_MinWidth 0x0 -int style Theme_AppCompat_Light_NoActionBar 0x0 -int style Theme_AppCompat_NoActionBar 0x0 -int style Widget_AppCompat_ActionBar 0x0 -int style Widget_AppCompat_ActionBar_Solid 0x0 -int style Widget_AppCompat_ActionBar_TabBar 0x0 -int style Widget_AppCompat_ActionBar_TabText 0x0 -int style Widget_AppCompat_ActionBar_TabView 0x0 -int style Widget_AppCompat_ActionButton 0x0 -int style Widget_AppCompat_ActionButton_CloseMode 0x0 -int style Widget_AppCompat_ActionButton_Overflow 0x0 -int style Widget_AppCompat_ActionMode 0x0 -int style Widget_AppCompat_ActivityChooserView 0x0 -int style Widget_AppCompat_AutoCompleteTextView 0x0 -int style Widget_AppCompat_Button 0x0 -int style Widget_AppCompat_ButtonBar 0x0 -int style Widget_AppCompat_ButtonBar_AlertDialog 0x0 -int style Widget_AppCompat_Button_Borderless 0x0 -int style Widget_AppCompat_Button_Borderless_Colored 0x0 -int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0 -int style Widget_AppCompat_Button_Colored 0x0 -int style Widget_AppCompat_Button_Small 0x0 -int style Widget_AppCompat_CompoundButton_CheckBox 0x0 -int style Widget_AppCompat_CompoundButton_RadioButton 0x0 -int style Widget_AppCompat_CompoundButton_Switch 0x0 -int style Widget_AppCompat_DrawerArrowToggle 0x0 -int style Widget_AppCompat_DropDownItem_Spinner 0x0 -int style Widget_AppCompat_EditText 0x0 -int style Widget_AppCompat_ImageButton 0x0 -int style Widget_AppCompat_Light_ActionBar 0x0 -int style Widget_AppCompat_Light_ActionBar_Solid 0x0 -int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabBar 0x0 -int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabText 0x0 -int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0 -int style Widget_AppCompat_Light_ActionBar_TabView 0x0 -int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0 -int style Widget_AppCompat_Light_ActionButton 0x0 -int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0 -int style Widget_AppCompat_Light_ActionButton_Overflow 0x0 -int style Widget_AppCompat_Light_ActionMode_Inverse 0x0 -int style Widget_AppCompat_Light_ActivityChooserView 0x0 -int style Widget_AppCompat_Light_AutoCompleteTextView 0x0 -int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0 -int style Widget_AppCompat_Light_ListPopupWindow 0x0 -int style Widget_AppCompat_Light_ListView_DropDown 0x0 -int style Widget_AppCompat_Light_PopupMenu 0x0 -int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0 -int style Widget_AppCompat_Light_SearchView 0x0 -int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0 -int style Widget_AppCompat_ListMenuView 0x0 -int style Widget_AppCompat_ListPopupWindow 0x0 -int style Widget_AppCompat_ListView 0x0 -int style Widget_AppCompat_ListView_DropDown 0x0 -int style Widget_AppCompat_ListView_Menu 0x0 -int style Widget_AppCompat_PopupMenu 0x0 -int style Widget_AppCompat_PopupMenu_Overflow 0x0 -int style Widget_AppCompat_PopupWindow 0x0 -int style Widget_AppCompat_ProgressBar 0x0 -int style Widget_AppCompat_ProgressBar_Horizontal 0x0 -int style Widget_AppCompat_RatingBar 0x0 -int style Widget_AppCompat_RatingBar_Indicator 0x0 -int style Widget_AppCompat_RatingBar_Small 0x0 -int style Widget_AppCompat_SearchView 0x0 -int style Widget_AppCompat_SearchView_ActionBar 0x0 -int style Widget_AppCompat_SeekBar 0x0 -int style Widget_AppCompat_SeekBar_Discrete 0x0 -int style Widget_AppCompat_Spinner 0x0 -int style Widget_AppCompat_Spinner_DropDown 0x0 -int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0 -int style Widget_AppCompat_Spinner_Underlined 0x0 -int style Widget_AppCompat_TextView 0x0 -int style Widget_AppCompat_TextView_SpinnerItem 0x0 -int style Widget_AppCompat_Toolbar 0x0 -int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -int style Widget_Compat_NotificationActionContainer 0x0 -int style Widget_Compat_NotificationActionText 0x0 -int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable ActionBar_background 0 -int styleable ActionBar_backgroundSplit 1 -int styleable ActionBar_backgroundStacked 2 -int styleable ActionBar_contentInsetEnd 3 -int styleable ActionBar_contentInsetEndWithActions 4 -int styleable ActionBar_contentInsetLeft 5 -int styleable ActionBar_contentInsetRight 6 -int styleable ActionBar_contentInsetStart 7 -int styleable ActionBar_contentInsetStartWithNavigation 8 -int styleable ActionBar_customNavigationLayout 9 -int styleable ActionBar_displayOptions 10 -int styleable ActionBar_divider 11 -int styleable ActionBar_elevation 12 -int styleable ActionBar_height 13 -int styleable ActionBar_hideOnContentScroll 14 -int styleable ActionBar_homeAsUpIndicator 15 -int styleable ActionBar_homeLayout 16 -int styleable ActionBar_icon 17 -int styleable ActionBar_indeterminateProgressStyle 18 -int styleable ActionBar_itemPadding 19 -int styleable ActionBar_logo 20 -int styleable ActionBar_navigationMode 21 -int styleable ActionBar_popupTheme 22 -int styleable ActionBar_progressBarPadding 23 -int styleable ActionBar_progressBarStyle 24 -int styleable ActionBar_subtitle 25 -int styleable ActionBar_subtitleTextStyle 26 -int styleable ActionBar_title 27 -int styleable ActionBar_titleTextStyle 28 -int[] styleable ActionBarLayout { 0x10100b3 } -int styleable ActionBarLayout_android_layout_gravity 0 -int[] styleable ActionMenuItemView { 0x101013f } -int styleable ActionMenuItemView_android_minWidth 0 -int[] styleable ActionMenuView { } -int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable ActionMode_background 0 -int styleable ActionMode_backgroundSplit 1 -int styleable ActionMode_closeItemLayout 2 -int styleable ActionMode_height 3 -int styleable ActionMode_subtitleTextStyle 4 -int styleable ActionMode_titleTextStyle 5 -int[] styleable ActivityChooserView { 0x0, 0x0 } -int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -int styleable ActivityChooserView_initialActivityCount 1 -int[] styleable ActivityFilter { 0x0, 0x0 } -int styleable ActivityFilter_activityAction 0 -int styleable ActivityFilter_activityName 1 -int[] styleable ActivityRule { 0x0 } -int styleable ActivityRule_alwaysExpand 0 -int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable AlertDialog_android_layout 0 -int styleable AlertDialog_buttonIconDimen 1 -int styleable AlertDialog_buttonPanelSideLayout 2 -int styleable AlertDialog_listItemLayout 3 -int styleable AlertDialog_listLayout 4 -int styleable AlertDialog_multiChoiceItemLayout 5 -int styleable AlertDialog_showTitle 6 -int styleable AlertDialog_singleChoiceItemLayout 7 -int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -int styleable AnimatedStateListDrawableCompat_android_dither 1 -int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -int styleable AnimatedStateListDrawableCompat_android_visible 5 -int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -int styleable AnimatedStateListDrawableItem_android_drawable 0 -int styleable AnimatedStateListDrawableItem_android_id 1 -int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -int styleable AnimatedStateListDrawableTransition_android_drawable 0 -int styleable AnimatedStateListDrawableTransition_android_fromId 1 -int styleable AnimatedStateListDrawableTransition_android_reversible 2 -int styleable AnimatedStateListDrawableTransition_android_toId 3 -int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 } -int styleable AppCompatImageView_android_src 0 -int styleable AppCompatImageView_srcCompat 1 -int styleable AppCompatImageView_tint 2 -int styleable AppCompatImageView_tintMode 3 -int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 } -int styleable AppCompatSeekBar_android_thumb 0 -int styleable AppCompatSeekBar_tickMark 1 -int styleable AppCompatSeekBar_tickMarkTint 2 -int styleable AppCompatSeekBar_tickMarkTintMode 3 -int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } -int styleable AppCompatTextHelper_android_drawableBottom 0 -int styleable AppCompatTextHelper_android_drawableEnd 1 -int styleable AppCompatTextHelper_android_drawableLeft 2 -int styleable AppCompatTextHelper_android_drawableRight 3 -int styleable AppCompatTextHelper_android_drawableStart 4 -int styleable AppCompatTextHelper_android_drawableTop 5 -int styleable AppCompatTextHelper_android_textAppearance 6 -int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable AppCompatTextView_android_textAppearance 0 -int styleable AppCompatTextView_autoSizeMaxTextSize 1 -int styleable AppCompatTextView_autoSizeMinTextSize 2 -int styleable AppCompatTextView_autoSizePresetSizes 3 -int styleable AppCompatTextView_autoSizeStepGranularity 4 -int styleable AppCompatTextView_autoSizeTextType 5 -int styleable AppCompatTextView_drawableBottomCompat 6 -int styleable AppCompatTextView_drawableEndCompat 7 -int styleable AppCompatTextView_drawableLeftCompat 8 -int styleable AppCompatTextView_drawableRightCompat 9 -int styleable AppCompatTextView_drawableStartCompat 10 -int styleable AppCompatTextView_drawableTint 11 -int styleable AppCompatTextView_drawableTintMode 12 -int styleable AppCompatTextView_drawableTopCompat 13 -int styleable AppCompatTextView_firstBaselineToTopHeight 14 -int styleable AppCompatTextView_fontFamily 15 -int styleable AppCompatTextView_fontVariationSettings 16 -int styleable AppCompatTextView_lastBaselineToBottomHeight 17 -int styleable AppCompatTextView_lineHeight 18 -int styleable AppCompatTextView_textAllCaps 19 -int styleable AppCompatTextView_textLocale 20 -int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable AppCompatTheme_actionBarDivider 0 -int styleable AppCompatTheme_actionBarItemBackground 1 -int styleable AppCompatTheme_actionBarPopupTheme 2 -int styleable AppCompatTheme_actionBarSize 3 -int styleable AppCompatTheme_actionBarSplitStyle 4 -int styleable AppCompatTheme_actionBarStyle 5 -int styleable AppCompatTheme_actionBarTabBarStyle 6 -int styleable AppCompatTheme_actionBarTabStyle 7 -int styleable AppCompatTheme_actionBarTabTextStyle 8 -int styleable AppCompatTheme_actionBarTheme 9 -int styleable AppCompatTheme_actionBarWidgetTheme 10 -int styleable AppCompatTheme_actionButtonStyle 11 -int styleable AppCompatTheme_actionDropDownStyle 12 -int styleable AppCompatTheme_actionMenuTextAppearance 13 -int styleable AppCompatTheme_actionMenuTextColor 14 -int styleable AppCompatTheme_actionModeBackground 15 -int styleable AppCompatTheme_actionModeCloseButtonStyle 16 -int styleable AppCompatTheme_actionModeCloseContentDescription 17 -int styleable AppCompatTheme_actionModeCloseDrawable 18 -int styleable AppCompatTheme_actionModeCopyDrawable 19 -int styleable AppCompatTheme_actionModeCutDrawable 20 -int styleable AppCompatTheme_actionModeFindDrawable 21 -int styleable AppCompatTheme_actionModePasteDrawable 22 -int styleable AppCompatTheme_actionModePopupWindowStyle 23 -int styleable AppCompatTheme_actionModeSelectAllDrawable 24 -int styleable AppCompatTheme_actionModeShareDrawable 25 -int styleable AppCompatTheme_actionModeSplitBackground 26 -int styleable AppCompatTheme_actionModeStyle 27 -int styleable AppCompatTheme_actionModeTheme 28 -int styleable AppCompatTheme_actionModeWebSearchDrawable 29 -int styleable AppCompatTheme_actionOverflowButtonStyle 30 -int styleable AppCompatTheme_actionOverflowMenuStyle 31 -int styleable AppCompatTheme_activityChooserViewStyle 32 -int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 -int styleable AppCompatTheme_alertDialogCenterButtons 34 -int styleable AppCompatTheme_alertDialogStyle 35 -int styleable AppCompatTheme_alertDialogTheme 36 -int styleable AppCompatTheme_android_windowAnimationStyle 37 -int styleable AppCompatTheme_android_windowIsFloating 38 -int styleable AppCompatTheme_autoCompleteTextViewStyle 39 -int styleable AppCompatTheme_borderlessButtonStyle 40 -int styleable AppCompatTheme_buttonBarButtonStyle 41 -int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 -int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 -int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 -int styleable AppCompatTheme_buttonBarStyle 45 -int styleable AppCompatTheme_buttonStyle 46 -int styleable AppCompatTheme_buttonStyleSmall 47 -int styleable AppCompatTheme_checkboxStyle 48 -int styleable AppCompatTheme_checkedTextViewStyle 49 -int styleable AppCompatTheme_colorAccent 50 -int styleable AppCompatTheme_colorBackgroundFloating 51 -int styleable AppCompatTheme_colorButtonNormal 52 -int styleable AppCompatTheme_colorControlActivated 53 -int styleable AppCompatTheme_colorControlHighlight 54 -int styleable AppCompatTheme_colorControlNormal 55 -int styleable AppCompatTheme_colorError 56 -int styleable AppCompatTheme_colorPrimary 57 -int styleable AppCompatTheme_colorPrimaryDark 58 -int styleable AppCompatTheme_colorSwitchThumbNormal 59 -int styleable AppCompatTheme_controlBackground 60 -int styleable AppCompatTheme_dialogCornerRadius 61 -int styleable AppCompatTheme_dialogPreferredPadding 62 -int styleable AppCompatTheme_dialogTheme 63 -int styleable AppCompatTheme_dividerHorizontal 64 -int styleable AppCompatTheme_dividerVertical 65 -int styleable AppCompatTheme_dropDownListViewStyle 66 -int styleable AppCompatTheme_dropdownListPreferredItemHeight 67 -int styleable AppCompatTheme_editTextBackground 68 -int styleable AppCompatTheme_editTextColor 69 -int styleable AppCompatTheme_editTextStyle 70 -int styleable AppCompatTheme_homeAsUpIndicator 71 -int styleable AppCompatTheme_imageButtonStyle 72 -int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 -int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 -int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 -int styleable AppCompatTheme_listDividerAlertDialog 76 -int styleable AppCompatTheme_listMenuViewStyle 77 -int styleable AppCompatTheme_listPopupWindowStyle 78 -int styleable AppCompatTheme_listPreferredItemHeight 79 -int styleable AppCompatTheme_listPreferredItemHeightLarge 80 -int styleable AppCompatTheme_listPreferredItemHeightSmall 81 -int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 -int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 -int styleable AppCompatTheme_listPreferredItemPaddingRight 84 -int styleable AppCompatTheme_listPreferredItemPaddingStart 85 -int styleable AppCompatTheme_panelBackground 86 -int styleable AppCompatTheme_panelMenuListTheme 87 -int styleable AppCompatTheme_panelMenuListWidth 88 -int styleable AppCompatTheme_popupMenuStyle 89 -int styleable AppCompatTheme_popupWindowStyle 90 -int styleable AppCompatTheme_radioButtonStyle 91 -int styleable AppCompatTheme_ratingBarStyle 92 -int styleable AppCompatTheme_ratingBarStyleIndicator 93 -int styleable AppCompatTheme_ratingBarStyleSmall 94 -int styleable AppCompatTheme_searchViewStyle 95 -int styleable AppCompatTheme_seekBarStyle 96 -int styleable AppCompatTheme_selectableItemBackground 97 -int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 -int styleable AppCompatTheme_spinnerDropDownItemStyle 99 -int styleable AppCompatTheme_spinnerStyle 100 -int styleable AppCompatTheme_switchStyle 101 -int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 -int styleable AppCompatTheme_textAppearanceListItem 103 -int styleable AppCompatTheme_textAppearanceListItemSecondary 104 -int styleable AppCompatTheme_textAppearanceListItemSmall 105 -int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 -int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 -int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 -int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 -int styleable AppCompatTheme_textColorAlertDialogListItem 110 -int styleable AppCompatTheme_textColorSearchUrl 111 -int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 -int styleable AppCompatTheme_toolbarStyle 113 -int styleable AppCompatTheme_tooltipForegroundColor 114 -int styleable AppCompatTheme_tooltipFrameBackground 115 -int styleable AppCompatTheme_viewInflaterClass 116 -int styleable AppCompatTheme_windowActionBar 117 -int styleable AppCompatTheme_windowActionBarOverlay 118 -int styleable AppCompatTheme_windowActionModeOverlay 119 -int styleable AppCompatTheme_windowFixedHeightMajor 120 -int styleable AppCompatTheme_windowFixedHeightMinor 121 -int styleable AppCompatTheme_windowFixedWidthMajor 122 -int styleable AppCompatTheme_windowFixedWidthMinor 123 -int styleable AppCompatTheme_windowMinWidthMajor 124 -int styleable AppCompatTheme_windowMinWidthMinor 125 -int styleable AppCompatTheme_windowNoTitle 126 -int[] styleable ButtonBarLayout { 0x0 } -int styleable ButtonBarLayout_allowStacking 0 -int[] styleable Capability { 0x0, 0x0 } -int styleable Capability_queryPatterns 0 -int styleable Capability_shortcutMatchRequired 1 -int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } -int styleable ColorStateListItem_alpha 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_android_color 2 -int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 } -int styleable CompoundButton_android_button 0 -int styleable CompoundButton_buttonCompat 1 -int styleable CompoundButton_buttonTint 2 -int styleable CompoundButton_buttonTintMode 3 -int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable DrawerArrowToggle_arrowHeadLength 0 -int styleable DrawerArrowToggle_arrowShaftLength 1 -int styleable DrawerArrowToggle_barLength 2 -int styleable DrawerArrowToggle_color 3 -int styleable DrawerArrowToggle_drawableSize 4 -int styleable DrawerArrowToggle_gapBetweenBars 5 -int styleable DrawerArrowToggle_spinBars 6 -int styleable DrawerArrowToggle_thickness 7 -int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int styleable FontFamily_fontProviderSystemFontFamily 6 -int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable FontFamilyFont_android_font 0 -int styleable FontFamilyFont_android_fontStyle 1 -int styleable FontFamilyFont_android_fontVariationSettings 2 -int styleable FontFamilyFont_android_fontWeight 3 -int styleable FontFamilyFont_android_ttcIndex 4 -int styleable FontFamilyFont_font 5 -int styleable FontFamilyFont_fontStyle 6 -int styleable FontFamilyFont_fontVariationSettings 7 -int styleable FontFamilyFont_fontWeight 8 -int styleable FontFamilyFont_ttcIndex 9 -int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 } -int styleable Fragment_android_id 0 -int styleable Fragment_android_name 1 -int styleable Fragment_android_tag 2 -int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 } -int styleable FragmentContainerView_android_name 0 -int styleable FragmentContainerView_android_tag 1 -int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -int styleable GradientColor_android_centerColor 0 -int styleable GradientColor_android_centerX 1 -int styleable GradientColor_android_centerY 2 -int styleable GradientColor_android_endColor 3 -int styleable GradientColor_android_endX 4 -int styleable GradientColor_android_endY 5 -int styleable GradientColor_android_gradientRadius 6 -int styleable GradientColor_android_startColor 7 -int styleable GradientColor_android_startX 8 -int styleable GradientColor_android_startY 9 -int styleable GradientColor_android_tileMode 10 -int styleable GradientColor_android_type 11 -int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -int styleable GradientColorItem_android_color 0 -int styleable GradientColorItem_android_offset 1 -int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 } -int styleable LinearLayoutCompat_android_baselineAligned 0 -int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 -int styleable LinearLayoutCompat_android_gravity 2 -int styleable LinearLayoutCompat_android_orientation 3 -int styleable LinearLayoutCompat_android_weightSum 4 -int styleable LinearLayoutCompat_divider 5 -int styleable LinearLayoutCompat_dividerPadding 6 -int styleable LinearLayoutCompat_measureWithLargestChild 7 -int styleable LinearLayoutCompat_showDividers 8 -int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } -int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 -int styleable LinearLayoutCompat_Layout_android_layout_height 1 -int styleable LinearLayoutCompat_Layout_android_layout_weight 2 -int styleable LinearLayoutCompat_Layout_android_layout_width 3 -int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } -int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 -int styleable ListPopupWindow_android_dropDownVerticalOffset 1 -int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } -int styleable MenuGroup_android_checkableBehavior 0 -int styleable MenuGroup_android_enabled 1 -int styleable MenuGroup_android_id 2 -int styleable MenuGroup_android_menuCategory 3 -int styleable MenuGroup_android_orderInCategory 4 -int styleable MenuGroup_android_visible 5 -int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable MenuItem_actionLayout 0 -int styleable MenuItem_actionProviderClass 1 -int styleable MenuItem_actionViewClass 2 -int styleable MenuItem_alphabeticModifiers 3 -int styleable MenuItem_android_alphabeticShortcut 4 -int styleable MenuItem_android_checkable 5 -int styleable MenuItem_android_checked 6 -int styleable MenuItem_android_enabled 7 -int styleable MenuItem_android_icon 8 -int styleable MenuItem_android_id 9 -int styleable MenuItem_android_menuCategory 10 -int styleable MenuItem_android_numericShortcut 11 -int styleable MenuItem_android_onClick 12 -int styleable MenuItem_android_orderInCategory 13 -int styleable MenuItem_android_title 14 -int styleable MenuItem_android_titleCondensed 15 -int styleable MenuItem_android_visible 16 -int styleable MenuItem_contentDescription 17 -int styleable MenuItem_iconTint 18 -int styleable MenuItem_iconTintMode 19 -int styleable MenuItem_numericModifiers 20 -int styleable MenuItem_showAsAction 21 -int styleable MenuItem_tooltipText 22 -int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 } -int styleable MenuView_android_headerBackground 0 -int styleable MenuView_android_horizontalDivider 1 -int styleable MenuView_android_itemBackground 2 -int styleable MenuView_android_itemIconDisabledAlpha 3 -int styleable MenuView_android_itemTextAppearance 4 -int styleable MenuView_android_verticalDivider 5 -int styleable MenuView_android_windowAnimationStyle 6 -int styleable MenuView_preserveIconSpacing 7 -int styleable MenuView_subMenuArrow 8 -int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 } -int styleable PopupWindow_android_popupAnimationStyle 0 -int styleable PopupWindow_android_popupBackground 1 -int styleable PopupWindow_overlapAnchor 2 -int[] styleable PopupWindowBackgroundState { 0x0 } -int styleable PopupWindowBackgroundState_state_above_anchor 0 -int[] styleable RecycleListView { 0x0, 0x0 } -int styleable RecycleListView_paddingBottomNoButtons 0 -int styleable RecycleListView_paddingTopNoTitle 1 -int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SearchView_android_focusable 0 -int styleable SearchView_android_imeOptions 1 -int styleable SearchView_android_inputType 2 -int styleable SearchView_android_maxWidth 3 -int styleable SearchView_closeIcon 4 -int styleable SearchView_commitIcon 5 -int styleable SearchView_defaultQueryHint 6 -int styleable SearchView_goIcon 7 -int styleable SearchView_iconifiedByDefault 8 -int styleable SearchView_layout 9 -int styleable SearchView_queryBackground 10 -int styleable SearchView_queryHint 11 -int styleable SearchView_searchHintIcon 12 -int styleable SearchView_searchIcon 13 -int styleable SearchView_submitBackground 14 -int styleable SearchView_suggestionRowLayout 15 -int styleable SearchView_voiceIcon 16 -int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 } -int styleable Spinner_android_dropDownWidth 0 -int styleable Spinner_android_entries 1 -int styleable Spinner_android_popupBackground 2 -int styleable Spinner_android_prompt 3 -int styleable Spinner_popupTheme 4 -int[] styleable SplitPairFilter { 0x0, 0x0, 0x0 } -int styleable SplitPairFilter_primaryActivityName 0 -int styleable SplitPairFilter_secondaryActivityAction 1 -int styleable SplitPairFilter_secondaryActivityName 2 -int[] styleable SplitPairRule { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SplitPairRule_clearTop 0 -int styleable SplitPairRule_finishPrimaryWithSecondary 1 -int styleable SplitPairRule_finishSecondaryWithPrimary 2 -int styleable SplitPairRule_splitLayoutDirection 3 -int styleable SplitPairRule_splitMinSmallestWidth 4 -int styleable SplitPairRule_splitMinWidth 5 -int styleable SplitPairRule_splitRatio 6 -int[] styleable SplitPlaceholderRule { 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SplitPlaceholderRule_placeholderActivityName 0 -int styleable SplitPlaceholderRule_splitLayoutDirection 1 -int styleable SplitPlaceholderRule_splitMinSmallestWidth 2 -int styleable SplitPlaceholderRule_splitMinWidth 3 -int styleable SplitPlaceholderRule_splitRatio 4 -int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -int styleable StateListDrawable_android_constantSize 0 -int styleable StateListDrawable_android_dither 1 -int styleable StateListDrawable_android_enterFadeDuration 2 -int styleable StateListDrawable_android_exitFadeDuration 3 -int styleable StateListDrawable_android_variablePadding 4 -int styleable StateListDrawable_android_visible 5 -int[] styleable StateListDrawableItem { 0x1010199 } -int styleable StateListDrawableItem_android_drawable 0 -int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable SwitchCompat_android_textOff 0 -int styleable SwitchCompat_android_textOn 1 -int styleable SwitchCompat_android_thumb 2 -int styleable SwitchCompat_showText 3 -int styleable SwitchCompat_splitTrack 4 -int styleable SwitchCompat_switchMinWidth 5 -int styleable SwitchCompat_switchPadding 6 -int styleable SwitchCompat_switchTextAppearance 7 -int styleable SwitchCompat_thumbTextPadding 8 -int styleable SwitchCompat_thumbTint 9 -int styleable SwitchCompat_thumbTintMode 10 -int styleable SwitchCompat_track 11 -int styleable SwitchCompat_trackTint 12 -int styleable SwitchCompat_trackTintMode 13 -int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 } -int styleable TextAppearance_android_fontFamily 0 -int styleable TextAppearance_android_shadowColor 1 -int styleable TextAppearance_android_shadowDx 2 -int styleable TextAppearance_android_shadowDy 3 -int styleable TextAppearance_android_shadowRadius 4 -int styleable TextAppearance_android_textColor 5 -int styleable TextAppearance_android_textColorHint 6 -int styleable TextAppearance_android_textColorLink 7 -int styleable TextAppearance_android_textFontWeight 8 -int styleable TextAppearance_android_textSize 9 -int styleable TextAppearance_android_textStyle 10 -int styleable TextAppearance_android_typeface 11 -int styleable TextAppearance_fontFamily 12 -int styleable TextAppearance_fontVariationSettings 13 -int styleable TextAppearance_textAllCaps 14 -int styleable TextAppearance_textLocale 15 -int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -int styleable Toolbar_android_gravity 0 -int styleable Toolbar_android_minHeight 1 -int styleable Toolbar_buttonGravity 2 -int styleable Toolbar_collapseContentDescription 3 -int styleable Toolbar_collapseIcon 4 -int styleable Toolbar_contentInsetEnd 5 -int styleable Toolbar_contentInsetEndWithActions 6 -int styleable Toolbar_contentInsetLeft 7 -int styleable Toolbar_contentInsetRight 8 -int styleable Toolbar_contentInsetStart 9 -int styleable Toolbar_contentInsetStartWithNavigation 10 -int styleable Toolbar_logo 11 -int styleable Toolbar_logoDescription 12 -int styleable Toolbar_maxButtonHeight 13 -int styleable Toolbar_menu 14 -int styleable Toolbar_navigationContentDescription 15 -int styleable Toolbar_navigationIcon 16 -int styleable Toolbar_popupTheme 17 -int styleable Toolbar_subtitle 18 -int styleable Toolbar_subtitleTextAppearance 19 -int styleable Toolbar_subtitleTextColor 20 -int styleable Toolbar_title 21 -int styleable Toolbar_titleMargin 22 -int styleable Toolbar_titleMarginBottom 23 -int styleable Toolbar_titleMarginEnd 24 -int styleable Toolbar_titleMarginStart 25 -int styleable Toolbar_titleMarginTop 26 -int styleable Toolbar_titleMargins 27 -int styleable Toolbar_titleTextAppearance 28 -int styleable Toolbar_titleTextColor 29 -int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 } -int styleable View_android_focusable 0 -int styleable View_android_theme 1 -int styleable View_paddingEnd 2 -int styleable View_paddingStart 3 -int styleable View_theme 4 -int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 } -int styleable ViewBackgroundHelper_android_background 0 -int styleable ViewBackgroundHelper_backgroundTint 1 -int styleable ViewBackgroundHelper_backgroundTintMode 2 -int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } -int styleable ViewStubCompat_android_id 0 -int styleable ViewStubCompat_android_inflatedId 1 -int styleable ViewStubCompat_android_layout 2 diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/debug-mergeJavaRes/merge-state b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/debug-mergeJavaRes/merge-state deleted file mode 100644 index d5ff3872..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/debug-mergeJavaRes/merge-state and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index b84a357c..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugShaders/merger.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index ec253d13..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugAssets/merger.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugAssets/merger.xml deleted file mode 100644 index ac17f08f..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/compile-file-map.properties b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/compile-file-map.properties deleted file mode 100644 index caf0de93..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/compile-file-map.properties +++ /dev/null @@ -1 +0,0 @@ -#Fri May 27 18:56:52 IST 2022 diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/merger.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/merger.xml deleted file mode 100644 index 3ee89440..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/incremental/packageDebugResources/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/library_manifest/debug/AndroidManifest.xml b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/library_manifest/debug/AndroidManifest.xml deleted file mode 100644 index 0bfc667f..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/library_manifest/debug/AndroidManifest.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/local_only_symbol_list/debug/R-def.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/local_only_symbol_list/debug/R-def.txt deleted file mode 100644 index 78ac5b8b..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/local_only_symbol_list/debug/R-def.txt +++ /dev/null @@ -1,2 +0,0 @@ -R_DEF: Internal format may change without notice -local diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt deleted file mode 100644 index a21918c2..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,21 +0,0 @@ -1 -2 -4 -5 -5-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml -6 -7 -7-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:3:5-68 -7-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:3:22-65 -8 -8-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:4:5-74 -8-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:4:22-71 -9 -9-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:5:5-80 -9-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:5:22-78 -10 -10-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:6:5-78 -10-->C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:6:22-76 -11 -12 diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/merged_java_res/debug/out.jar b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/merged_java_res/debug/out.jar deleted file mode 100644 index 15cb0ecb..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/merged_java_res/debug/out.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/navigation_json/debug/navigation.json b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/navigation_json/debug/navigation.json deleted file mode 100644 index 0637a088..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/navigation_json/debug/navigation.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/packaged_manifests/debug/output-metadata.json b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/packaged_manifests/debug/output-metadata.json deleted file mode 100644 index 8c3826e6..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/packaged_manifests/debug/output-metadata.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": 2, - "artifactType": { - "type": "PACKAGED_MANIFESTS", - "kind": "Directory" - }, - "applicationId": "io.github.edufolly.flutterbluetoothserial", - "variantName": "debug", - "elements": [ - { - "type": "SINGLE", - "filters": [], - "outputFile": "../../library_manifest/debug/AndroidManifest.xml" - } - ] -} \ No newline at end of file diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/runtime_library_classes_jar/debug/classes.jar b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/runtime_library_classes_jar/debug/classes.jar deleted file mode 100644 index ed123fd5..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/runtime_library_classes_jar/debug/classes.jar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt deleted file mode 100644 index 544e94fa..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +++ /dev/null @@ -1,1277 +0,0 @@ -io.github.edufolly.flutterbluetoothserial -anim abc_fade_in -anim abc_fade_out -anim abc_grow_fade_in_from_bottom -anim abc_popup_enter -anim abc_popup_exit -anim abc_shrink_fade_out_from_bottom -anim abc_slide_in_bottom -anim abc_slide_in_top -anim abc_slide_out_bottom -anim abc_slide_out_top -anim abc_tooltip_enter -anim abc_tooltip_exit -anim btn_checkbox_to_checked_box_inner_merged_animation -anim btn_checkbox_to_checked_box_outer_merged_animation -anim btn_checkbox_to_checked_icon_null_animation -anim btn_checkbox_to_unchecked_box_inner_merged_animation -anim btn_checkbox_to_unchecked_check_path_merged_animation -anim btn_checkbox_to_unchecked_icon_null_animation -anim btn_radio_to_off_mtrl_dot_group_animation -anim btn_radio_to_off_mtrl_ring_outer_animation -anim btn_radio_to_off_mtrl_ring_outer_path_animation -anim btn_radio_to_on_mtrl_dot_group_animation -anim btn_radio_to_on_mtrl_ring_outer_animation -anim btn_radio_to_on_mtrl_ring_outer_path_animation -anim fragment_fast_out_extra_slow_in -animator fragment_close_enter -animator fragment_close_exit -animator fragment_fade_enter -animator fragment_fade_exit -animator fragment_open_enter -animator fragment_open_exit -attr actionBarDivider -attr actionBarItemBackground -attr actionBarPopupTheme -attr actionBarSize -attr actionBarSplitStyle -attr actionBarStyle -attr actionBarTabBarStyle -attr actionBarTabStyle -attr actionBarTabTextStyle -attr actionBarTheme -attr actionBarWidgetTheme -attr actionButtonStyle -attr actionDropDownStyle -attr actionLayout -attr actionMenuTextAppearance -attr actionMenuTextColor -attr actionModeBackground -attr actionModeCloseButtonStyle -attr actionModeCloseContentDescription -attr actionModeCloseDrawable -attr actionModeCopyDrawable -attr actionModeCutDrawable -attr actionModeFindDrawable -attr actionModePasteDrawable -attr actionModePopupWindowStyle -attr actionModeSelectAllDrawable -attr actionModeShareDrawable -attr actionModeSplitBackground -attr actionModeStyle -attr actionModeTheme -attr actionModeWebSearchDrawable -attr actionOverflowButtonStyle -attr actionOverflowMenuStyle -attr actionProviderClass -attr actionViewClass -attr activityAction -attr activityChooserViewStyle -attr activityName -attr alertDialogButtonGroupStyle -attr alertDialogCenterButtons -attr alertDialogStyle -attr alertDialogTheme -attr allowStacking -attr alpha -attr alphabeticModifiers -attr alwaysExpand -attr arrowHeadLength -attr arrowShaftLength -attr autoCompleteTextViewStyle -attr autoSizeMaxTextSize -attr autoSizeMinTextSize -attr autoSizePresetSizes -attr autoSizeStepGranularity -attr autoSizeTextType -attr background -attr backgroundSplit -attr backgroundStacked -attr backgroundTint -attr backgroundTintMode -attr barLength -attr borderlessButtonStyle -attr buttonBarButtonStyle -attr buttonBarNegativeButtonStyle -attr buttonBarNeutralButtonStyle -attr buttonBarPositiveButtonStyle -attr buttonBarStyle -attr buttonCompat -attr buttonGravity -attr buttonIconDimen -attr buttonPanelSideLayout -attr buttonStyle -attr buttonStyleSmall -attr buttonTint -attr buttonTintMode -attr checkboxStyle -attr checkedTextViewStyle -attr clearTop -attr closeIcon -attr closeItemLayout -attr collapseContentDescription -attr collapseIcon -attr color -attr colorAccent -attr colorBackgroundFloating -attr colorButtonNormal -attr colorControlActivated -attr colorControlHighlight -attr colorControlNormal -attr colorError -attr colorPrimary -attr colorPrimaryDark -attr colorSwitchThumbNormal -attr commitIcon -attr contentDescription -attr contentInsetEnd -attr contentInsetEndWithActions -attr contentInsetLeft -attr contentInsetRight -attr contentInsetStart -attr contentInsetStartWithNavigation -attr controlBackground -attr customNavigationLayout -attr defaultQueryHint -attr dialogCornerRadius -attr dialogPreferredPadding -attr dialogTheme -attr displayOptions -attr divider -attr dividerHorizontal -attr dividerPadding -attr dividerVertical -attr drawableBottomCompat -attr drawableEndCompat -attr drawableLeftCompat -attr drawableRightCompat -attr drawableSize -attr drawableStartCompat -attr drawableTint -attr drawableTintMode -attr drawableTopCompat -attr drawerArrowStyle -attr dropDownListViewStyle -attr dropdownListPreferredItemHeight -attr editTextBackground -attr editTextColor -attr editTextStyle -attr elevation -attr expandActivityOverflowButtonDrawable -attr finishPrimaryWithSecondary -attr finishSecondaryWithPrimary -attr firstBaselineToTopHeight -attr font -attr fontFamily -attr fontProviderAuthority -attr fontProviderCerts -attr fontProviderFetchStrategy -attr fontProviderFetchTimeout -attr fontProviderPackage -attr fontProviderQuery -attr fontProviderSystemFontFamily -attr fontStyle -attr fontVariationSettings -attr fontWeight -attr gapBetweenBars -attr goIcon -attr height -attr hideOnContentScroll -attr homeAsUpIndicator -attr homeLayout -attr icon -attr iconTint -attr iconTintMode -attr iconifiedByDefault -attr imageButtonStyle -attr indeterminateProgressStyle -attr initialActivityCount -attr isLightTheme -attr itemPadding -attr lastBaselineToBottomHeight -attr layout -attr lineHeight -attr listChoiceBackgroundIndicator -attr listChoiceIndicatorMultipleAnimated -attr listChoiceIndicatorSingleAnimated -attr listDividerAlertDialog -attr listItemLayout -attr listLayout -attr listMenuViewStyle -attr listPopupWindowStyle -attr listPreferredItemHeight -attr listPreferredItemHeightLarge -attr listPreferredItemHeightSmall -attr listPreferredItemPaddingEnd -attr listPreferredItemPaddingLeft -attr listPreferredItemPaddingRight -attr listPreferredItemPaddingStart -attr logo -attr logoDescription -attr maxButtonHeight -attr measureWithLargestChild -attr menu -attr multiChoiceItemLayout -attr navigationContentDescription -attr navigationIcon -attr navigationMode -attr nestedScrollViewStyle -attr numericModifiers -attr overlapAnchor -attr paddingBottomNoButtons -attr paddingEnd -attr paddingStart -attr paddingTopNoTitle -attr panelBackground -attr panelMenuListTheme -attr panelMenuListWidth -attr placeholderActivityName -attr popupMenuStyle -attr popupTheme -attr popupWindowStyle -attr preserveIconSpacing -attr primaryActivityName -attr progressBarPadding -attr progressBarStyle -attr queryBackground -attr queryHint -attr queryPatterns -attr radioButtonStyle -attr ratingBarStyle -attr ratingBarStyleIndicator -attr ratingBarStyleSmall -attr searchHintIcon -attr searchIcon -attr searchViewStyle -attr secondaryActivityAction -attr secondaryActivityName -attr seekBarStyle -attr selectableItemBackground -attr selectableItemBackgroundBorderless -attr shortcutMatchRequired -attr showAsAction -attr showDividers -attr showText -attr showTitle -attr singleChoiceItemLayout -attr spinBars -attr spinnerDropDownItemStyle -attr spinnerStyle -attr splitLayoutDirection -attr splitMinSmallestWidth -attr splitMinWidth -attr splitRatio -attr splitTrack -attr srcCompat -attr state_above_anchor -attr subMenuArrow -attr submitBackground -attr subtitle -attr subtitleTextAppearance -attr subtitleTextColor -attr subtitleTextStyle -attr suggestionRowLayout -attr switchMinWidth -attr switchPadding -attr switchStyle -attr switchTextAppearance -attr textAllCaps -attr textAppearanceLargePopupMenu -attr textAppearanceListItem -attr textAppearanceListItemSecondary -attr textAppearanceListItemSmall -attr textAppearancePopupMenuHeader -attr textAppearanceSearchResultSubtitle -attr textAppearanceSearchResultTitle -attr textAppearanceSmallPopupMenu -attr textColorAlertDialogListItem -attr textColorSearchUrl -attr textLocale -attr theme -attr thickness -attr thumbTextPadding -attr thumbTint -attr thumbTintMode -attr tickMark -attr tickMarkTint -attr tickMarkTintMode -attr tint -attr tintMode -attr title -attr titleMargin -attr titleMarginBottom -attr titleMarginEnd -attr titleMarginStart -attr titleMarginTop -attr titleMargins -attr titleTextAppearance -attr titleTextColor -attr titleTextStyle -attr toolbarNavigationButtonStyle -attr toolbarStyle -attr tooltipForegroundColor -attr tooltipFrameBackground -attr tooltipText -attr track -attr trackTint -attr trackTintMode -attr ttcIndex -attr viewInflaterClass -attr voiceIcon -attr windowActionBar -attr windowActionBarOverlay -attr windowActionModeOverlay -attr windowFixedHeightMajor -attr windowFixedHeightMinor -attr windowFixedWidthMajor -attr windowFixedWidthMinor -attr windowMinWidthMajor -attr windowMinWidthMinor -attr windowNoTitle -bool abc_action_bar_embed_tabs -bool abc_config_actionMenuItemAllCaps -color abc_background_cache_hint_selector_material_dark -color abc_background_cache_hint_selector_material_light -color abc_btn_colored_borderless_text_material -color abc_btn_colored_text_material -color abc_color_highlight_material -color abc_decor_view_status_guard -color abc_decor_view_status_guard_light -color abc_hint_foreground_material_dark -color abc_hint_foreground_material_light -color abc_primary_text_disable_only_material_dark -color abc_primary_text_disable_only_material_light -color abc_primary_text_material_dark -color abc_primary_text_material_light -color abc_search_url_text -color abc_search_url_text_normal -color abc_search_url_text_pressed -color abc_search_url_text_selected -color abc_secondary_text_material_dark -color abc_secondary_text_material_light -color abc_tint_btn_checkable -color abc_tint_default -color abc_tint_edittext -color abc_tint_seek_thumb -color abc_tint_spinner -color abc_tint_switch_track -color accent_material_dark -color accent_material_light -color androidx_core_ripple_material_light -color androidx_core_secondary_text_default_material_light -color background_floating_material_dark -color background_floating_material_light -color background_material_dark -color background_material_light -color bright_foreground_disabled_material_dark -color bright_foreground_disabled_material_light -color bright_foreground_inverse_material_dark -color bright_foreground_inverse_material_light -color bright_foreground_material_dark -color bright_foreground_material_light -color button_material_dark -color button_material_light -color dim_foreground_disabled_material_dark -color dim_foreground_disabled_material_light -color dim_foreground_material_dark -color dim_foreground_material_light -color error_color_material_dark -color error_color_material_light -color foreground_material_dark -color foreground_material_light -color highlighted_text_material_dark -color highlighted_text_material_light -color material_blue_grey_800 -color material_blue_grey_900 -color material_blue_grey_950 -color material_deep_teal_200 -color material_deep_teal_500 -color material_grey_100 -color material_grey_300 -color material_grey_50 -color material_grey_600 -color material_grey_800 -color material_grey_850 -color material_grey_900 -color notification_action_color_filter -color notification_icon_bg_color -color primary_dark_material_dark -color primary_dark_material_light -color primary_material_dark -color primary_material_light -color primary_text_default_material_dark -color primary_text_default_material_light -color primary_text_disabled_material_dark -color primary_text_disabled_material_light -color ripple_material_dark -color ripple_material_light -color secondary_text_default_material_dark -color secondary_text_default_material_light -color secondary_text_disabled_material_dark -color secondary_text_disabled_material_light -color switch_thumb_disabled_material_dark -color switch_thumb_disabled_material_light -color switch_thumb_material_dark -color switch_thumb_material_light -color switch_thumb_normal_material_dark -color switch_thumb_normal_material_light -color tooltip_background_dark -color tooltip_background_light -dimen abc_action_bar_content_inset_material -dimen abc_action_bar_content_inset_with_nav -dimen abc_action_bar_default_height_material -dimen abc_action_bar_default_padding_end_material -dimen abc_action_bar_default_padding_start_material -dimen abc_action_bar_elevation_material -dimen abc_action_bar_icon_vertical_padding_material -dimen abc_action_bar_overflow_padding_end_material -dimen abc_action_bar_overflow_padding_start_material -dimen abc_action_bar_stacked_max_height -dimen abc_action_bar_stacked_tab_max_width -dimen abc_action_bar_subtitle_bottom_margin_material -dimen abc_action_bar_subtitle_top_margin_material -dimen abc_action_button_min_height_material -dimen abc_action_button_min_width_material -dimen abc_action_button_min_width_overflow_material -dimen abc_alert_dialog_button_bar_height -dimen abc_alert_dialog_button_dimen -dimen abc_button_inset_horizontal_material -dimen abc_button_inset_vertical_material -dimen abc_button_padding_horizontal_material -dimen abc_button_padding_vertical_material -dimen abc_cascading_menus_min_smallest_width -dimen abc_config_prefDialogWidth -dimen abc_control_corner_material -dimen abc_control_inset_material -dimen abc_control_padding_material -dimen abc_dialog_corner_radius_material -dimen abc_dialog_fixed_height_major -dimen abc_dialog_fixed_height_minor -dimen abc_dialog_fixed_width_major -dimen abc_dialog_fixed_width_minor -dimen abc_dialog_list_padding_bottom_no_buttons -dimen abc_dialog_list_padding_top_no_title -dimen abc_dialog_min_width_major -dimen abc_dialog_min_width_minor -dimen abc_dialog_padding_material -dimen abc_dialog_padding_top_material -dimen abc_dialog_title_divider_material -dimen abc_disabled_alpha_material_dark -dimen abc_disabled_alpha_material_light -dimen abc_dropdownitem_icon_width -dimen abc_dropdownitem_text_padding_left -dimen abc_dropdownitem_text_padding_right -dimen abc_edit_text_inset_bottom_material -dimen abc_edit_text_inset_horizontal_material -dimen abc_edit_text_inset_top_material -dimen abc_floating_window_z -dimen abc_list_item_height_large_material -dimen abc_list_item_height_material -dimen abc_list_item_height_small_material -dimen abc_list_item_padding_horizontal_material -dimen abc_panel_menu_list_width -dimen abc_progress_bar_height_material -dimen abc_search_view_preferred_height -dimen abc_search_view_preferred_width -dimen abc_seekbar_track_background_height_material -dimen abc_seekbar_track_progress_height_material -dimen abc_select_dialog_padding_start_material -dimen abc_star_big -dimen abc_star_medium -dimen abc_star_small -dimen abc_switch_padding -dimen abc_text_size_body_1_material -dimen abc_text_size_body_2_material -dimen abc_text_size_button_material -dimen abc_text_size_caption_material -dimen abc_text_size_display_1_material -dimen abc_text_size_display_2_material -dimen abc_text_size_display_3_material -dimen abc_text_size_display_4_material -dimen abc_text_size_headline_material -dimen abc_text_size_large_material -dimen abc_text_size_medium_material -dimen abc_text_size_menu_header_material -dimen abc_text_size_menu_material -dimen abc_text_size_small_material -dimen abc_text_size_subhead_material -dimen abc_text_size_subtitle_material_toolbar -dimen abc_text_size_title_material -dimen abc_text_size_title_material_toolbar -dimen compat_button_inset_horizontal_material -dimen compat_button_inset_vertical_material -dimen compat_button_padding_horizontal_material -dimen compat_button_padding_vertical_material -dimen compat_control_corner_material -dimen compat_notification_large_icon_max_height -dimen compat_notification_large_icon_max_width -dimen disabled_alpha_material_dark -dimen disabled_alpha_material_light -dimen highlight_alpha_material_colored -dimen highlight_alpha_material_dark -dimen highlight_alpha_material_light -dimen hint_alpha_material_dark -dimen hint_alpha_material_light -dimen hint_pressed_alpha_material_dark -dimen hint_pressed_alpha_material_light -dimen notification_action_icon_size -dimen notification_action_text_size -dimen notification_big_circle_margin -dimen notification_content_margin_start -dimen notification_large_icon_height -dimen notification_large_icon_width -dimen notification_main_column_padding_top -dimen notification_media_narrow_margin -dimen notification_right_icon_size -dimen notification_right_side_padding_top -dimen notification_small_icon_background_padding -dimen notification_small_icon_size_as_large -dimen notification_subtext_size -dimen notification_top_pad -dimen notification_top_pad_large_text -dimen tooltip_corner_radius -dimen tooltip_horizontal_padding -dimen tooltip_margin -dimen tooltip_precise_anchor_extra_offset -dimen tooltip_precise_anchor_threshold -dimen tooltip_vertical_padding -dimen tooltip_y_offset_non_touch -dimen tooltip_y_offset_touch -drawable abc_ab_share_pack_mtrl_alpha -drawable abc_action_bar_item_background_material -drawable abc_btn_borderless_material -drawable abc_btn_check_material -drawable abc_btn_check_material_anim -drawable abc_btn_check_to_on_mtrl_000 -drawable abc_btn_check_to_on_mtrl_015 -drawable abc_btn_colored_material -drawable abc_btn_default_mtrl_shape -drawable abc_btn_radio_material -drawable abc_btn_radio_material_anim -drawable abc_btn_radio_to_on_mtrl_000 -drawable abc_btn_radio_to_on_mtrl_015 -drawable abc_btn_switch_to_on_mtrl_00001 -drawable abc_btn_switch_to_on_mtrl_00012 -drawable abc_cab_background_internal_bg -drawable abc_cab_background_top_material -drawable abc_cab_background_top_mtrl_alpha -drawable abc_control_background_material -drawable abc_dialog_material_background -drawable abc_edit_text_material -drawable abc_ic_ab_back_material -drawable abc_ic_arrow_drop_right_black_24dp -drawable abc_ic_clear_material -drawable abc_ic_commit_search_api_mtrl_alpha -drawable abc_ic_go_search_api_material -drawable abc_ic_menu_copy_mtrl_am_alpha -drawable abc_ic_menu_cut_mtrl_alpha -drawable abc_ic_menu_overflow_material -drawable abc_ic_menu_paste_mtrl_am_alpha -drawable abc_ic_menu_selectall_mtrl_alpha -drawable abc_ic_menu_share_mtrl_alpha -drawable abc_ic_search_api_material -drawable abc_ic_voice_search_api_material -drawable abc_item_background_holo_dark -drawable abc_item_background_holo_light -drawable abc_list_divider_material -drawable abc_list_divider_mtrl_alpha -drawable abc_list_focused_holo -drawable abc_list_longpressed_holo -drawable abc_list_pressed_holo_dark -drawable abc_list_pressed_holo_light -drawable abc_list_selector_background_transition_holo_dark -drawable abc_list_selector_background_transition_holo_light -drawable abc_list_selector_disabled_holo_dark -drawable abc_list_selector_disabled_holo_light -drawable abc_list_selector_holo_dark -drawable abc_list_selector_holo_light -drawable abc_menu_hardkey_panel_mtrl_mult -drawable abc_popup_background_mtrl_mult -drawable abc_ratingbar_indicator_material -drawable abc_ratingbar_material -drawable abc_ratingbar_small_material -drawable abc_scrubber_control_off_mtrl_alpha -drawable abc_scrubber_control_to_pressed_mtrl_000 -drawable abc_scrubber_control_to_pressed_mtrl_005 -drawable abc_scrubber_primary_mtrl_alpha -drawable abc_scrubber_track_mtrl_alpha -drawable abc_seekbar_thumb_material -drawable abc_seekbar_tick_mark_material -drawable abc_seekbar_track_material -drawable abc_spinner_mtrl_am_alpha -drawable abc_spinner_textfield_background_material -drawable abc_star_black_48dp -drawable abc_star_half_black_48dp -drawable abc_switch_thumb_material -drawable abc_switch_track_mtrl_alpha -drawable abc_tab_indicator_material -drawable abc_tab_indicator_mtrl_alpha -drawable abc_text_cursor_material -drawable abc_text_select_handle_left_mtrl -drawable abc_text_select_handle_middle_mtrl -drawable abc_text_select_handle_right_mtrl -drawable abc_textfield_activated_mtrl_alpha -drawable abc_textfield_default_mtrl_alpha -drawable abc_textfield_search_activated_mtrl_alpha -drawable abc_textfield_search_default_mtrl_alpha -drawable abc_textfield_search_material -drawable abc_vector_test -drawable btn_checkbox_checked_mtrl -drawable btn_checkbox_checked_to_unchecked_mtrl_animation -drawable btn_checkbox_unchecked_mtrl -drawable btn_checkbox_unchecked_to_checked_mtrl_animation -drawable btn_radio_off_mtrl -drawable btn_radio_off_to_on_mtrl_animation -drawable btn_radio_on_mtrl -drawable btn_radio_on_to_off_mtrl_animation -drawable notification_action_background -drawable notification_bg -drawable notification_bg_low -drawable notification_bg_low_normal -drawable notification_bg_low_pressed -drawable notification_bg_normal -drawable notification_bg_normal_pressed -drawable notification_icon_background -drawable notification_template_icon_bg -drawable notification_template_icon_low_bg -drawable notification_tile_bg -drawable notify_panel_notification_icon_bg -drawable tooltip_frame_dark -drawable tooltip_frame_light -id accessibility_action_clickable_span -id accessibility_custom_action_0 -id accessibility_custom_action_1 -id accessibility_custom_action_10 -id accessibility_custom_action_11 -id accessibility_custom_action_12 -id accessibility_custom_action_13 -id accessibility_custom_action_14 -id accessibility_custom_action_15 -id accessibility_custom_action_16 -id accessibility_custom_action_17 -id accessibility_custom_action_18 -id accessibility_custom_action_19 -id accessibility_custom_action_2 -id accessibility_custom_action_20 -id accessibility_custom_action_21 -id accessibility_custom_action_22 -id accessibility_custom_action_23 -id accessibility_custom_action_24 -id accessibility_custom_action_25 -id accessibility_custom_action_26 -id accessibility_custom_action_27 -id accessibility_custom_action_28 -id accessibility_custom_action_29 -id accessibility_custom_action_3 -id accessibility_custom_action_30 -id accessibility_custom_action_31 -id accessibility_custom_action_4 -id accessibility_custom_action_5 -id accessibility_custom_action_6 -id accessibility_custom_action_7 -id accessibility_custom_action_8 -id accessibility_custom_action_9 -id action_bar -id action_bar_activity_content -id action_bar_container -id action_bar_root -id action_bar_spinner -id action_bar_subtitle -id action_bar_title -id action_container -id action_context_bar -id action_divider -id action_image -id action_menu_divider -id action_menu_presenter -id action_mode_bar -id action_mode_bar_stub -id action_mode_close_button -id action_text -id actions -id activity_chooser_view_content -id add -id alertTitle -id androidx_window_activity_scope -id async -id blocking -id buttonPanel -id checkbox -id checked -id chronometer -id content -id contentPanel -id custom -id customPanel -id decor_content_parent -id default_activity_button -id dialog_button -id edit_query -id expand_activities_button -id expanded_menu -id forever -id fragment_container_view_tag -id group_divider -id home -id icon -id icon_group -id image -id info -id italic -id line1 -id line3 -id listMode -id list_item -id locale -id ltr -id message -id multiply -id none -id normal -id notification_background -id notification_main_column -id notification_main_column_container -id off -id on -id parentPanel -id progress_circular -id progress_horizontal -id radio -id right_icon -id right_side -id rtl -id screen -id scrollIndicatorDown -id scrollIndicatorUp -id scrollView -id search_badge -id search_bar -id search_button -id search_close_btn -id search_edit_frame -id search_go_btn -id search_mag_icon -id search_plate -id search_src_text -id search_voice_btn -id select_dialog_listview -id shortcut -id spacer -id special_effects_controller_view_tag -id split_action_bar -id src_atop -id src_in -id src_over -id submenuarrow -id submit_area -id tabMode -id tag_accessibility_actions -id tag_accessibility_clickable_spans -id tag_accessibility_heading -id tag_accessibility_pane_title -id tag_on_apply_window_listener -id tag_on_receive_content_listener -id tag_on_receive_content_mime_types -id tag_screen_reader_focusable -id tag_state_description -id tag_transition_group -id tag_unhandled_key_event_manager -id tag_unhandled_key_listeners -id tag_window_insets_animation_callback -id text -id text2 -id textSpacerNoButtons -id textSpacerNoTitle -id time -id title -id titleDividerNoCustom -id title_template -id topPanel -id unchecked -id uniform -id up -id view_tree_lifecycle_owner -id view_tree_saved_state_registry_owner -id view_tree_view_model_store_owner -id visible_removing_fragment_view_tag -id wrap_content -integer abc_config_activityDefaultDur -integer abc_config_activityShortDur -integer cancel_button_image_alpha -integer config_tooltipAnimTime -integer status_bar_notification_info_maxnum -interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 -interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 -interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 -interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 -interpolator btn_radio_to_off_mtrl_animation_interpolator_0 -interpolator btn_radio_to_on_mtrl_animation_interpolator_0 -interpolator fast_out_slow_in -layout abc_action_bar_title_item -layout abc_action_bar_up_container -layout abc_action_menu_item_layout -layout abc_action_menu_layout -layout abc_action_mode_bar -layout abc_action_mode_close_item_material -layout abc_activity_chooser_view -layout abc_activity_chooser_view_list_item -layout abc_alert_dialog_button_bar_material -layout abc_alert_dialog_material -layout abc_alert_dialog_title_material -layout abc_cascading_menu_item_layout -layout abc_dialog_title_material -layout abc_expanded_menu_layout -layout abc_list_menu_item_checkbox -layout abc_list_menu_item_icon -layout abc_list_menu_item_layout -layout abc_list_menu_item_radio -layout abc_popup_menu_header_item_layout -layout abc_popup_menu_item_layout -layout abc_screen_content_include -layout abc_screen_simple -layout abc_screen_simple_overlay_action_mode -layout abc_screen_toolbar -layout abc_search_dropdown_item_icons_2line -layout abc_search_view -layout abc_select_dialog_material -layout abc_tooltip -layout custom_dialog -layout notification_action -layout notification_action_tombstone -layout notification_template_custom_big -layout notification_template_icon_group -layout notification_template_part_chronometer -layout notification_template_part_time -layout select_dialog_item_material -layout select_dialog_multichoice_material -layout select_dialog_singlechoice_material -layout support_simple_spinner_dropdown_item -string abc_action_bar_home_description -string abc_action_bar_up_description -string abc_action_menu_overflow_description -string abc_action_mode_done -string abc_activity_chooser_view_see_all -string abc_activitychooserview_choose_application -string abc_capital_off -string abc_capital_on -string abc_menu_alt_shortcut_label -string abc_menu_ctrl_shortcut_label -string abc_menu_delete_shortcut_label -string abc_menu_enter_shortcut_label -string abc_menu_function_shortcut_label -string abc_menu_meta_shortcut_label -string abc_menu_shift_shortcut_label -string abc_menu_space_shortcut_label -string abc_menu_sym_shortcut_label -string abc_prepend_shortcut_label -string abc_search_hint -string abc_searchview_description_clear -string abc_searchview_description_query -string abc_searchview_description_search -string abc_searchview_description_submit -string abc_searchview_description_voice -string abc_shareactionprovider_share_with -string abc_shareactionprovider_share_with_application -string abc_toolbar_collapse_description -string search_menu_title -string status_bar_notification_info_overflow -style AlertDialog_AppCompat -style AlertDialog_AppCompat_Light -style Animation_AppCompat_Dialog -style Animation_AppCompat_DropDownUp -style Animation_AppCompat_Tooltip -style Base_AlertDialog_AppCompat -style Base_AlertDialog_AppCompat_Light -style Base_Animation_AppCompat_Dialog -style Base_Animation_AppCompat_DropDownUp -style Base_Animation_AppCompat_Tooltip -style Base_DialogWindowTitleBackground_AppCompat -style Base_DialogWindowTitle_AppCompat -style Base_TextAppearance_AppCompat -style Base_TextAppearance_AppCompat_Body1 -style Base_TextAppearance_AppCompat_Body2 -style Base_TextAppearance_AppCompat_Button -style Base_TextAppearance_AppCompat_Caption -style Base_TextAppearance_AppCompat_Display1 -style Base_TextAppearance_AppCompat_Display2 -style Base_TextAppearance_AppCompat_Display3 -style Base_TextAppearance_AppCompat_Display4 -style Base_TextAppearance_AppCompat_Headline -style Base_TextAppearance_AppCompat_Inverse -style Base_TextAppearance_AppCompat_Large -style Base_TextAppearance_AppCompat_Large_Inverse -style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -style Base_TextAppearance_AppCompat_Medium -style Base_TextAppearance_AppCompat_Medium_Inverse -style Base_TextAppearance_AppCompat_Menu -style Base_TextAppearance_AppCompat_SearchResult -style Base_TextAppearance_AppCompat_SearchResult_Subtitle -style Base_TextAppearance_AppCompat_SearchResult_Title -style Base_TextAppearance_AppCompat_Small -style Base_TextAppearance_AppCompat_Small_Inverse -style Base_TextAppearance_AppCompat_Subhead -style Base_TextAppearance_AppCompat_Subhead_Inverse -style Base_TextAppearance_AppCompat_Title -style Base_TextAppearance_AppCompat_Title_Inverse -style Base_TextAppearance_AppCompat_Tooltip -style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -style Base_TextAppearance_AppCompat_Widget_ActionBar_Title -style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -style Base_TextAppearance_AppCompat_Widget_ActionMode_Title -style Base_TextAppearance_AppCompat_Widget_Button -style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -style Base_TextAppearance_AppCompat_Widget_Button_Colored -style Base_TextAppearance_AppCompat_Widget_Button_Inverse -style Base_TextAppearance_AppCompat_Widget_DropDownItem -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -style Base_TextAppearance_AppCompat_Widget_Switch -style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -style Base_TextAppearance_Widget_AppCompat_Toolbar_Title -style Base_ThemeOverlay_AppCompat -style Base_ThemeOverlay_AppCompat_ActionBar -style Base_ThemeOverlay_AppCompat_Dark -style Base_ThemeOverlay_AppCompat_Dark_ActionBar -style Base_ThemeOverlay_AppCompat_Dialog -style Base_ThemeOverlay_AppCompat_Dialog_Alert -style Base_ThemeOverlay_AppCompat_Light -style Base_Theme_AppCompat -style Base_Theme_AppCompat_CompactMenu -style Base_Theme_AppCompat_Dialog -style Base_Theme_AppCompat_DialogWhenLarge -style Base_Theme_AppCompat_Dialog_Alert -style Base_Theme_AppCompat_Dialog_FixedSize -style Base_Theme_AppCompat_Dialog_MinWidth -style Base_Theme_AppCompat_Light -style Base_Theme_AppCompat_Light_DarkActionBar -style Base_Theme_AppCompat_Light_Dialog -style Base_Theme_AppCompat_Light_DialogWhenLarge -style Base_Theme_AppCompat_Light_Dialog_Alert -style Base_Theme_AppCompat_Light_Dialog_FixedSize -style Base_Theme_AppCompat_Light_Dialog_MinWidth -style Base_V21_ThemeOverlay_AppCompat_Dialog -style Base_V21_Theme_AppCompat -style Base_V21_Theme_AppCompat_Dialog -style Base_V21_Theme_AppCompat_Light -style Base_V21_Theme_AppCompat_Light_Dialog -style Base_V22_Theme_AppCompat -style Base_V22_Theme_AppCompat_Light -style Base_V23_Theme_AppCompat -style Base_V23_Theme_AppCompat_Light -style Base_V26_Theme_AppCompat -style Base_V26_Theme_AppCompat_Light -style Base_V26_Widget_AppCompat_Toolbar -style Base_V28_Theme_AppCompat -style Base_V28_Theme_AppCompat_Light -style Base_V7_ThemeOverlay_AppCompat_Dialog -style Base_V7_Theme_AppCompat -style Base_V7_Theme_AppCompat_Dialog -style Base_V7_Theme_AppCompat_Light -style Base_V7_Theme_AppCompat_Light_Dialog -style Base_V7_Widget_AppCompat_AutoCompleteTextView -style Base_V7_Widget_AppCompat_EditText -style Base_V7_Widget_AppCompat_Toolbar -style Base_Widget_AppCompat_ActionBar -style Base_Widget_AppCompat_ActionBar_Solid -style Base_Widget_AppCompat_ActionBar_TabBar -style Base_Widget_AppCompat_ActionBar_TabText -style Base_Widget_AppCompat_ActionBar_TabView -style Base_Widget_AppCompat_ActionButton -style Base_Widget_AppCompat_ActionButton_CloseMode -style Base_Widget_AppCompat_ActionButton_Overflow -style Base_Widget_AppCompat_ActionMode -style Base_Widget_AppCompat_ActivityChooserView -style Base_Widget_AppCompat_AutoCompleteTextView -style Base_Widget_AppCompat_Button -style Base_Widget_AppCompat_ButtonBar -style Base_Widget_AppCompat_ButtonBar_AlertDialog -style Base_Widget_AppCompat_Button_Borderless -style Base_Widget_AppCompat_Button_Borderless_Colored -style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -style Base_Widget_AppCompat_Button_Colored -style Base_Widget_AppCompat_Button_Small -style Base_Widget_AppCompat_CompoundButton_CheckBox -style Base_Widget_AppCompat_CompoundButton_RadioButton -style Base_Widget_AppCompat_CompoundButton_Switch -style Base_Widget_AppCompat_DrawerArrowToggle -style Base_Widget_AppCompat_DrawerArrowToggle_Common -style Base_Widget_AppCompat_DropDownItem_Spinner -style Base_Widget_AppCompat_EditText -style Base_Widget_AppCompat_ImageButton -style Base_Widget_AppCompat_Light_ActionBar -style Base_Widget_AppCompat_Light_ActionBar_Solid -style Base_Widget_AppCompat_Light_ActionBar_TabBar -style Base_Widget_AppCompat_Light_ActionBar_TabText -style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -style Base_Widget_AppCompat_Light_ActionBar_TabView -style Base_Widget_AppCompat_Light_PopupMenu -style Base_Widget_AppCompat_Light_PopupMenu_Overflow -style Base_Widget_AppCompat_ListMenuView -style Base_Widget_AppCompat_ListPopupWindow -style Base_Widget_AppCompat_ListView -style Base_Widget_AppCompat_ListView_DropDown -style Base_Widget_AppCompat_ListView_Menu -style Base_Widget_AppCompat_PopupMenu -style Base_Widget_AppCompat_PopupMenu_Overflow -style Base_Widget_AppCompat_PopupWindow -style Base_Widget_AppCompat_ProgressBar -style Base_Widget_AppCompat_ProgressBar_Horizontal -style Base_Widget_AppCompat_RatingBar -style Base_Widget_AppCompat_RatingBar_Indicator -style Base_Widget_AppCompat_RatingBar_Small -style Base_Widget_AppCompat_SearchView -style Base_Widget_AppCompat_SearchView_ActionBar -style Base_Widget_AppCompat_SeekBar -style Base_Widget_AppCompat_SeekBar_Discrete -style Base_Widget_AppCompat_Spinner -style Base_Widget_AppCompat_Spinner_Underlined -style Base_Widget_AppCompat_TextView -style Base_Widget_AppCompat_TextView_SpinnerItem -style Base_Widget_AppCompat_Toolbar -style Base_Widget_AppCompat_Toolbar_Button_Navigation -style Platform_AppCompat -style Platform_AppCompat_Light -style Platform_ThemeOverlay_AppCompat -style Platform_ThemeOverlay_AppCompat_Dark -style Platform_ThemeOverlay_AppCompat_Light -style Platform_V21_AppCompat -style Platform_V21_AppCompat_Light -style Platform_V25_AppCompat -style Platform_V25_AppCompat_Light -style Platform_Widget_AppCompat_Spinner -style RtlOverlay_DialogWindowTitle_AppCompat -style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -style RtlOverlay_Widget_AppCompat_DialogTitle_Icon -style RtlOverlay_Widget_AppCompat_PopupMenuItem -style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -style RtlOverlay_Widget_AppCompat_SearchView_MagIcon -style RtlOverlay_Widget_AppCompat_Search_DropDown -style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -style RtlOverlay_Widget_AppCompat_Search_DropDown_Query -style RtlOverlay_Widget_AppCompat_Search_DropDown_Text -style RtlUnderlay_Widget_AppCompat_ActionButton -style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -style TextAppearance_AppCompat -style TextAppearance_AppCompat_Body1 -style TextAppearance_AppCompat_Body2 -style TextAppearance_AppCompat_Button -style TextAppearance_AppCompat_Caption -style TextAppearance_AppCompat_Display1 -style TextAppearance_AppCompat_Display2 -style TextAppearance_AppCompat_Display3 -style TextAppearance_AppCompat_Display4 -style TextAppearance_AppCompat_Headline -style TextAppearance_AppCompat_Inverse -style TextAppearance_AppCompat_Large -style TextAppearance_AppCompat_Large_Inverse -style TextAppearance_AppCompat_Light_SearchResult_Subtitle -style TextAppearance_AppCompat_Light_SearchResult_Title -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -style TextAppearance_AppCompat_Medium -style TextAppearance_AppCompat_Medium_Inverse -style TextAppearance_AppCompat_Menu -style TextAppearance_AppCompat_SearchResult_Subtitle -style TextAppearance_AppCompat_SearchResult_Title -style TextAppearance_AppCompat_Small -style TextAppearance_AppCompat_Small_Inverse -style TextAppearance_AppCompat_Subhead -style TextAppearance_AppCompat_Subhead_Inverse -style TextAppearance_AppCompat_Title -style TextAppearance_AppCompat_Title_Inverse -style TextAppearance_AppCompat_Tooltip -style TextAppearance_AppCompat_Widget_ActionBar_Menu -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle -style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionBar_Title -style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle -style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -style TextAppearance_AppCompat_Widget_ActionMode_Title -style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -style TextAppearance_AppCompat_Widget_Button -style TextAppearance_AppCompat_Widget_Button_Borderless_Colored -style TextAppearance_AppCompat_Widget_Button_Colored -style TextAppearance_AppCompat_Widget_Button_Inverse -style TextAppearance_AppCompat_Widget_DropDownItem -style TextAppearance_AppCompat_Widget_PopupMenu_Header -style TextAppearance_AppCompat_Widget_PopupMenu_Large -style TextAppearance_AppCompat_Widget_PopupMenu_Small -style TextAppearance_AppCompat_Widget_Switch -style TextAppearance_AppCompat_Widget_TextView_SpinnerItem -style TextAppearance_Compat_Notification -style TextAppearance_Compat_Notification_Info -style TextAppearance_Compat_Notification_Line2 -style TextAppearance_Compat_Notification_Time -style TextAppearance_Compat_Notification_Title -style TextAppearance_Widget_AppCompat_ExpandedMenu_Item -style TextAppearance_Widget_AppCompat_Toolbar_Subtitle -style TextAppearance_Widget_AppCompat_Toolbar_Title -style ThemeOverlay_AppCompat -style ThemeOverlay_AppCompat_ActionBar -style ThemeOverlay_AppCompat_Dark -style ThemeOverlay_AppCompat_Dark_ActionBar -style ThemeOverlay_AppCompat_DayNight -style ThemeOverlay_AppCompat_DayNight_ActionBar -style ThemeOverlay_AppCompat_Dialog -style ThemeOverlay_AppCompat_Dialog_Alert -style ThemeOverlay_AppCompat_Light -style Theme_AppCompat -style Theme_AppCompat_CompactMenu -style Theme_AppCompat_DayNight -style Theme_AppCompat_DayNight_DarkActionBar -style Theme_AppCompat_DayNight_Dialog -style Theme_AppCompat_DayNight_DialogWhenLarge -style Theme_AppCompat_DayNight_Dialog_Alert -style Theme_AppCompat_DayNight_Dialog_MinWidth -style Theme_AppCompat_DayNight_NoActionBar -style Theme_AppCompat_Dialog -style Theme_AppCompat_DialogWhenLarge -style Theme_AppCompat_Dialog_Alert -style Theme_AppCompat_Dialog_MinWidth -style Theme_AppCompat_Empty -style Theme_AppCompat_Light -style Theme_AppCompat_Light_DarkActionBar -style Theme_AppCompat_Light_Dialog -style Theme_AppCompat_Light_DialogWhenLarge -style Theme_AppCompat_Light_Dialog_Alert -style Theme_AppCompat_Light_Dialog_MinWidth -style Theme_AppCompat_Light_NoActionBar -style Theme_AppCompat_NoActionBar -style Widget_AppCompat_ActionBar -style Widget_AppCompat_ActionBar_Solid -style Widget_AppCompat_ActionBar_TabBar -style Widget_AppCompat_ActionBar_TabText -style Widget_AppCompat_ActionBar_TabView -style Widget_AppCompat_ActionButton -style Widget_AppCompat_ActionButton_CloseMode -style Widget_AppCompat_ActionButton_Overflow -style Widget_AppCompat_ActionMode -style Widget_AppCompat_ActivityChooserView -style Widget_AppCompat_AutoCompleteTextView -style Widget_AppCompat_Button -style Widget_AppCompat_ButtonBar -style Widget_AppCompat_ButtonBar_AlertDialog -style Widget_AppCompat_Button_Borderless -style Widget_AppCompat_Button_Borderless_Colored -style Widget_AppCompat_Button_ButtonBar_AlertDialog -style Widget_AppCompat_Button_Colored -style Widget_AppCompat_Button_Small -style Widget_AppCompat_CompoundButton_CheckBox -style Widget_AppCompat_CompoundButton_RadioButton -style Widget_AppCompat_CompoundButton_Switch -style Widget_AppCompat_DrawerArrowToggle -style Widget_AppCompat_DropDownItem_Spinner -style Widget_AppCompat_EditText -style Widget_AppCompat_ImageButton -style Widget_AppCompat_Light_ActionBar -style Widget_AppCompat_Light_ActionBar_Solid -style Widget_AppCompat_Light_ActionBar_Solid_Inverse -style Widget_AppCompat_Light_ActionBar_TabBar -style Widget_AppCompat_Light_ActionBar_TabBar_Inverse -style Widget_AppCompat_Light_ActionBar_TabText -style Widget_AppCompat_Light_ActionBar_TabText_Inverse -style Widget_AppCompat_Light_ActionBar_TabView -style Widget_AppCompat_Light_ActionBar_TabView_Inverse -style Widget_AppCompat_Light_ActionButton -style Widget_AppCompat_Light_ActionButton_CloseMode -style Widget_AppCompat_Light_ActionButton_Overflow -style Widget_AppCompat_Light_ActionMode_Inverse -style Widget_AppCompat_Light_ActivityChooserView -style Widget_AppCompat_Light_AutoCompleteTextView -style Widget_AppCompat_Light_DropDownItem_Spinner -style Widget_AppCompat_Light_ListPopupWindow -style Widget_AppCompat_Light_ListView_DropDown -style Widget_AppCompat_Light_PopupMenu -style Widget_AppCompat_Light_PopupMenu_Overflow -style Widget_AppCompat_Light_SearchView -style Widget_AppCompat_Light_Spinner_DropDown_ActionBar -style Widget_AppCompat_ListMenuView -style Widget_AppCompat_ListPopupWindow -style Widget_AppCompat_ListView -style Widget_AppCompat_ListView_DropDown -style Widget_AppCompat_ListView_Menu -style Widget_AppCompat_PopupMenu -style Widget_AppCompat_PopupMenu_Overflow -style Widget_AppCompat_PopupWindow -style Widget_AppCompat_ProgressBar -style Widget_AppCompat_ProgressBar_Horizontal -style Widget_AppCompat_RatingBar -style Widget_AppCompat_RatingBar_Indicator -style Widget_AppCompat_RatingBar_Small -style Widget_AppCompat_SearchView -style Widget_AppCompat_SearchView_ActionBar -style Widget_AppCompat_SeekBar -style Widget_AppCompat_SeekBar_Discrete -style Widget_AppCompat_Spinner -style Widget_AppCompat_Spinner_DropDown -style Widget_AppCompat_Spinner_DropDown_ActionBar -style Widget_AppCompat_Spinner_Underlined -style Widget_AppCompat_TextView -style Widget_AppCompat_TextView_SpinnerItem -style Widget_AppCompat_Toolbar -style Widget_AppCompat_Toolbar_Button_Navigation -style Widget_Compat_NotificationActionContainer -style Widget_Compat_NotificationActionText -styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle -styleable ActionBarLayout android_layout_gravity -styleable ActionMenuItemView android_minWidth -styleable ActionMenuView -styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle -styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount -styleable ActivityFilter activityAction activityName -styleable ActivityRule alwaysExpand -styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout -styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -styleable AnimatedStateListDrawableItem android_drawable android_id -styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId -styleable AppCompatImageView android_src srcCompat tint tintMode -styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode -styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance -styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale -styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle -styleable ButtonBarLayout allowStacking -styleable Capability queryPatterns shortcutMatchRequired -styleable ColorStateListItem alpha android_alpha android_color -styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode -styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness -styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily -styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -styleable Fragment android_id android_name android_tag -styleable FragmentContainerView android_name android_tag -styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -styleable GradientColorItem android_color android_offset -styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers -styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width -styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset -styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible -styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText -styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow -styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor -styleable PopupWindowBackgroundState state_above_anchor -styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle -styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon -styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme -styleable SplitPairFilter primaryActivityName secondaryActivityAction secondaryActivityName -styleable SplitPairRule clearTop finishPrimaryWithSecondary finishSecondaryWithPrimary splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio -styleable SplitPlaceholderRule placeholderActivityName splitLayoutDirection splitMinSmallestWidth splitMinWidth splitRatio -styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible -styleable StateListDrawableItem android_drawable -styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode -styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale -styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor -styleable View android_focusable android_theme paddingEnd paddingStart theme -styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode -styleable ViewStubCompat android_id android_inflatedId android_layout diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/aar/flutter_bluetooth_serial-debug.aar b/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/aar/flutter_bluetooth_serial-debug.aar deleted file mode 100644 index 3dfb66d0..00000000 Binary files a/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/aar/flutter_bluetooth_serial-debug.aar and /dev/null differ diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/logs/manifest-merger-debug-report.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index 50400d09..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,35 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:1:1-7:12 -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:1:1-7:12 -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:1:1-7:12 - package - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:2:3-54 - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml - xmlns:android - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.BLUETOOTH -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:3:5-68 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:3:22-65 -uses-permission#android.permission.BLUETOOTH_ADMIN -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:4:5-74 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:4:22-71 -uses-permission#android.permission.ACCESS_COARSE_LOCATION -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:5:5-80 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:5:22-78 -uses-permission#android.permission.ACCESS_FINE_LOCATION -ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:6:5-78 - android:name - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml:6:22-76 -uses-sdk -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml -INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml - android:minSdkVersion - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml - ADDED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml - INJECTED from C:\Computer\FLUTTER\flutter_windows_2.8.1-stable\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_bluetooth_serial-0.4.0\android\src\main\AndroidManifest.xml diff --git a/Tracking/rudra_app/build/flutter_bluetooth_serial/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt b/Tracking/rudra_app/build/flutter_bluetooth_serial/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt deleted file mode 100644 index 2652787c..00000000 --- a/Tracking/rudra_app/build/flutter_bluetooth_serial/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +++ /dev/null @@ -1,19 +0,0 @@ -io/github/edufolly/flutterbluetoothserial/BluetoothConnection.java - io.github.edufolly.flutterbluetoothserial.BluetoothConnection - io.github.edufolly.flutterbluetoothserial.BluetoothConnection$ConnectionThread -io/github/edufolly/flutterbluetoothserial/BuildConfig.java - io.github.edufolly.flutterbluetoothserial.BuildConfig -io/github/edufolly/flutterbluetoothserial/FlutterBluetoothSerialPlugin.java - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$1 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$2 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$2$1 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$2$2 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$3 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$4 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$5 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$BluetoothConnectionWrapper - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$BluetoothConnectionWrapper$1 - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$EnsurePermissionsCallback - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$FlutterBluetoothSerialMethodCallHandler - io.github.edufolly.flutterbluetoothserial.FlutterBluetoothSerialPlugin$FlutterBluetoothSerialMethodCallHandler$1 diff --git a/Tracking/rudra_app/build/last_build_run.json b/Tracking/rudra_app/build/last_build_run.json deleted file mode 100644 index 07c650e3..00000000 --- a/Tracking/rudra_app/build/last_build_run.json +++ /dev/null @@ -1 +0,0 @@ -["--track-widget-creation"] \ No newline at end of file diff --git a/Tracking/rudra_app/ios/.gitignore b/Tracking/rudra_app/ios/.gitignore deleted file mode 100644 index 7a7f9873..00000000 --- a/Tracking/rudra_app/ios/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -**/dgph -*.mode1v3 -*.mode2v3 -*.moved-aside -*.pbxuser -*.perspectivev3 -**/*sync/ -.sconsign.dblite -.tags* -**/.vagrant/ -**/DerivedData/ -Icon? -**/Pods/ -**/.symlinks/ -profile -xcuserdata -**/.generated/ -Flutter/App.framework -Flutter/Flutter.framework -Flutter/Flutter.podspec -Flutter/Generated.xcconfig -Flutter/ephemeral/ -Flutter/app.flx -Flutter/app.zip -Flutter/flutter_assets/ -Flutter/flutter_export_environment.sh -ServiceDefinitions.json -Runner/GeneratedPluginRegistrant.* - -# Exceptions to above rules. -!default.mode1v3 -!default.mode2v3 -!default.pbxuser -!default.perspectivev3 diff --git a/Tracking/rudra_app/ios/Flutter/AppFrameworkInfo.plist b/Tracking/rudra_app/ios/Flutter/AppFrameworkInfo.plist deleted file mode 100644 index 8d4492f9..00000000 --- a/Tracking/rudra_app/ios/Flutter/AppFrameworkInfo.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - App - CFBundleIdentifier - io.flutter.flutter.app - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - App - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - MinimumOSVersion - 9.0 - - diff --git a/Tracking/rudra_app/ios/Flutter/Debug.xcconfig b/Tracking/rudra_app/ios/Flutter/Debug.xcconfig deleted file mode 100644 index 592ceee8..00000000 --- a/Tracking/rudra_app/ios/Flutter/Debug.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/Tracking/rudra_app/ios/Flutter/Release.xcconfig b/Tracking/rudra_app/ios/Flutter/Release.xcconfig deleted file mode 100644 index 592ceee8..00000000 --- a/Tracking/rudra_app/ios/Flutter/Release.xcconfig +++ /dev/null @@ -1 +0,0 @@ -#include "Generated.xcconfig" diff --git a/Tracking/rudra_app/ios/Runner.xcodeproj/project.pbxproj b/Tracking/rudra_app/ios/Runner.xcodeproj/project.pbxproj deleted file mode 100644 index 20069854..00000000 --- a/Tracking/rudra_app/ios/Runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,481 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 50; - objects = { - -/* Begin PBXBuildFile section */ - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 9705A1C41CF9048500538489 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; - 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; - 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; - 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 97C146EB1CF9000F007C117D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 9740EEB11CF90186004384FC /* Flutter */ = { - isa = PBXGroup; - children = ( - 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, - 9740EEB21CF90195004384FC /* Debug.xcconfig */, - 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, - 9740EEB31CF90195004384FC /* Generated.xcconfig */, - ); - name = Flutter; - sourceTree = ""; - }; - 97C146E51CF9000F007C117D = { - isa = PBXGroup; - children = ( - 9740EEB11CF90186004384FC /* Flutter */, - 97C146F01CF9000F007C117D /* Runner */, - 97C146EF1CF9000F007C117D /* Products */, - ); - sourceTree = ""; - }; - 97C146EF1CF9000F007C117D /* Products */ = { - isa = PBXGroup; - children = ( - 97C146EE1CF9000F007C117D /* Runner.app */, - ); - name = Products; - sourceTree = ""; - }; - 97C146F01CF9000F007C117D /* Runner */ = { - isa = PBXGroup; - children = ( - 97C146FA1CF9000F007C117D /* Main.storyboard */, - 97C146FD1CF9000F007C117D /* Assets.xcassets */, - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, - 97C147021CF9000F007C117D /* Info.plist */, - 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, - 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, - 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, - 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, - ); - path = Runner; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 97C146ED1CF9000F007C117D /* Runner */ = { - isa = PBXNativeTarget; - buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; - buildPhases = ( - 9740EEB61CF901F6004384FC /* Run Script */, - 97C146EA1CF9000F007C117D /* Sources */, - 97C146EB1CF9000F007C117D /* Frameworks */, - 97C146EC1CF9000F007C117D /* Resources */, - 9705A1C41CF9048500538489 /* Embed Frameworks */, - 3B06AD1E1E4923F5004D2608 /* Thin Binary */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Runner; - productName = Runner; - productReference = 97C146EE1CF9000F007C117D /* Runner.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 97C146E61CF9000F007C117D /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 1300; - ORGANIZATIONNAME = ""; - TargetAttributes = { - 97C146ED1CF9000F007C117D = { - CreatedOnToolsVersion = 7.3.1; - LastSwiftMigration = 1100; - }; - }; - }; - buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 97C146E51CF9000F007C117D; - productRefGroup = 97C146EF1CF9000F007C117D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 97C146ED1CF9000F007C117D /* Runner */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 97C146EC1CF9000F007C117D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, - 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, - 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, - 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Thin Binary"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; - }; - 9740EEB61CF901F6004384FC /* Run Script */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Run Script"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 97C146EA1CF9000F007C117D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, - 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 97C146FA1CF9000F007C117D /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C146FB1CF9000F007C117D /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 97C147001CF9000F007C117D /* Base */, - ); - name = LaunchScreen.storyboard; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 249021D3217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Profile; - }; - 249021D4217E4FDB00AE95B9 /* Profile */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.rudraApp; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Profile; - }; - 97C147031CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 97C147041CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = iphoneos; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 97C147061CF9000F007C117D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.rudraApp; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 97C147071CF9000F007C117D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; - ENABLE_BITCODE = NO; - INFOPLIST_FILE = Runner/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.example.rudraApp; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147031CF9000F007C117D /* Debug */, - 97C147041CF9000F007C117D /* Release */, - 249021D3217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 97C147061CF9000F007C117D /* Debug */, - 97C147071CF9000F007C117D /* Release */, - 249021D4217E4FDB00AE95B9 /* Profile */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 97C146E61CF9000F007C117D /* Project object */; -} diff --git a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a6..00000000 --- a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5..00000000 --- a/Tracking/rudra_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/Tracking/rudra_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/Tracking/rudra_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme deleted file mode 100644 index c87d15a3..00000000 --- a/Tracking/rudra_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tracking/rudra_app/ios/Runner.xcworkspace/contents.xcworkspacedata b/Tracking/rudra_app/ios/Runner.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 1d526a16..00000000 --- a/Tracking/rudra_app/ios/Runner.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index f9b0d7c5..00000000 --- a/Tracking/rudra_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PreviewsEnabled - - - diff --git a/Tracking/rudra_app/ios/Runner/AppDelegate.swift b/Tracking/rudra_app/ios/Runner/AppDelegate.swift deleted file mode 100644 index 70693e4a..00000000 --- a/Tracking/rudra_app/ios/Runner/AppDelegate.swift +++ /dev/null @@ -1,13 +0,0 @@ -import UIKit -import Flutter - -@UIApplicationMain -@objc class AppDelegate: FlutterAppDelegate { - override func application( - _ application: UIApplication, - didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? - ) -> Bool { - GeneratedPluginRegistrant.register(with: self) - return super.application(application, didFinishLaunchingWithOptions: launchOptions) - } -} diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index d36b1fab..00000000 --- a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "images" : [ - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "20x20", - "idiom" : "iphone", - "filename" : "Icon-App-20x20@3x.png", - "scale" : "3x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "iphone", - "filename" : "Icon-App-29x29@3x.png", - "scale" : "3x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "iphone", - "filename" : "Icon-App-40x40@3x.png", - "scale" : "3x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@2x.png", - "scale" : "2x" - }, - { - "size" : "60x60", - "idiom" : "iphone", - "filename" : "Icon-App-60x60@3x.png", - "scale" : "3x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@1x.png", - "scale" : "1x" - }, - { - "size" : "20x20", - "idiom" : "ipad", - "filename" : "Icon-App-20x20@2x.png", - "scale" : "2x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@1x.png", - "scale" : "1x" - }, - { - "size" : "29x29", - "idiom" : "ipad", - "filename" : "Icon-App-29x29@2x.png", - "scale" : "2x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@1x.png", - "scale" : "1x" - }, - { - "size" : "40x40", - "idiom" : "ipad", - "filename" : "Icon-App-40x40@2x.png", - "scale" : "2x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@1x.png", - "scale" : "1x" - }, - { - "size" : "76x76", - "idiom" : "ipad", - "filename" : "Icon-App-76x76@2x.png", - "scale" : "2x" - }, - { - "size" : "83.5x83.5", - "idiom" : "ipad", - "filename" : "Icon-App-83.5x83.5@2x.png", - "scale" : "2x" - }, - { - "size" : "1024x1024", - "idiom" : "ios-marketing", - "filename" : "Icon-App-1024x1024@1x.png", - "scale" : "1x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png deleted file mode 100644 index dc9ada47..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png deleted file mode 100644 index 28c6bf03..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png deleted file mode 100644 index 2ccbfd96..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png deleted file mode 100644 index f091b6b0..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png deleted file mode 100644 index 4cde1211..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png deleted file mode 100644 index d0ef06e7..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png deleted file mode 100644 index dcdc2306..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png deleted file mode 100644 index 2ccbfd96..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png deleted file mode 100644 index c8f9ed8f..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png deleted file mode 100644 index a6d6b860..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png deleted file mode 100644 index a6d6b860..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png deleted file mode 100644 index 75b2d164..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png deleted file mode 100644 index c4df70d3..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png deleted file mode 100644 index 6a84f41e..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png deleted file mode 100644 index d0e1f585..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json deleted file mode 100644 index 0bedcf2f..00000000 --- a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "filename" : "LaunchImage.png", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "LaunchImage@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png deleted file mode 100644 index 9da19eac..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png deleted file mode 100644 index 9da19eac..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png deleted file mode 100644 index 9da19eac..00000000 Binary files a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png and /dev/null differ diff --git a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md deleted file mode 100644 index 89c2725b..00000000 --- a/Tracking/rudra_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Launch Screen Assets - -You can customize the launch screen with your own desired assets by replacing the image files in this directory. - -You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/Tracking/rudra_app/ios/Runner/Base.lproj/LaunchScreen.storyboard b/Tracking/rudra_app/ios/Runner/Base.lproj/LaunchScreen.storyboard deleted file mode 100644 index f2e259c7..00000000 --- a/Tracking/rudra_app/ios/Runner/Base.lproj/LaunchScreen.storyboard +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tracking/rudra_app/ios/Runner/Base.lproj/Main.storyboard b/Tracking/rudra_app/ios/Runner/Base.lproj/Main.storyboard deleted file mode 100644 index f3c28516..00000000 --- a/Tracking/rudra_app/ios/Runner/Base.lproj/Main.storyboard +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tracking/rudra_app/ios/Runner/Info.plist b/Tracking/rudra_app/ios/Runner/Info.plist deleted file mode 100644 index ffb1a9f5..00000000 --- a/Tracking/rudra_app/ios/Runner/Info.plist +++ /dev/null @@ -1,47 +0,0 @@ - - - - - CFBundleDevelopmentRegion - $(DEVELOPMENT_LANGUAGE) - CFBundleDisplayName - Rudra App - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - rudra_app - CFBundlePackageType - APPL - CFBundleShortVersionString - $(FLUTTER_BUILD_NAME) - CFBundleSignature - ???? - CFBundleVersion - $(FLUTTER_BUILD_NUMBER) - LSRequiresIPhoneOS - - UILaunchStoryboardName - LaunchScreen - UIMainStoryboardFile - Main - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - - diff --git a/Tracking/rudra_app/ios/Runner/Runner-Bridging-Header.h b/Tracking/rudra_app/ios/Runner/Runner-Bridging-Header.h deleted file mode 100644 index 308a2a56..00000000 --- a/Tracking/rudra_app/ios/Runner/Runner-Bridging-Header.h +++ /dev/null @@ -1 +0,0 @@ -#import "GeneratedPluginRegistrant.h" diff --git a/Tracking/rudra_app/lib/main.dart b/Tracking/rudra_app/lib/main.dart deleted file mode 100644 index 38b1d4ba..00000000 --- a/Tracking/rudra_app/lib/main.dart +++ /dev/null @@ -1,174 +0,0 @@ -import 'dart:convert'; -import 'dart:typed_data'; - -import 'package:flutter/cupertino.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_blue/flutter_blue.dart'; -//import 'package:flutter_bluetooth_serial/flutter_bluetooth_serial.dart'; - -void main() { - runApp(const MyApp()); -} - -class MyApp extends StatelessWidget { - const MyApp({Key? key}) : super(key: key); - - // This widget is the root of your application. - @override - Widget build(BuildContext context) { - return MaterialApp( - title: 'Flutter Demo', - theme: ThemeData( - // This is the theme of your application. - // - // Try running your application with "flutter run". You'll see the - // application has a blue toolbar. Then, without quitting the app, try - // changing the primarySwatch below to Colors.green and then invoke - // "hot reload" (press "r" in the console where you ran "flutter run", - // or simply save your changes to "hot reload" in a Flutter IDE). - // Notice that the counter didn't reset back to zero; the application - // is not restarted. - primarySwatch: Colors.blue, - ), - home: const MyHomePage(title: 'Rudra - bluetooth Detection'), - ); - } -} - -class MyHomePage extends StatefulWidget { - const MyHomePage({Key? key, required this.title}) : super(key: key); - - // This widget is the home page of your application. It is stateful, meaning - // that it has a State object (defined below) that contains fields that affect - // how it looks. - - // This class is the configuration for the state. It holds the values (in this - // case the title) provided by the parent (in this case the App widget) and - // used by the build method of the State. Fields in a Widget subclass are - // always marked "final". - - final String title; - - @override - State createState() => _MyHomePageState(); -} - -class _MyHomePageState extends State { - int _counter = 0; - - get text => null; - - void _incrementCounter() { - setState(() { - // This call to setState tells the Flutter framework that something has - // changed in this State, which causes it to rerun the build method below - // so that the display can reflect the updated values. If we changed - // _counter without calling setState(), then the build method would not be - // called again, and so nothing would appear to happen. - _counter++; - }); - } - String address = '0021:07:34ddc1'; - void scan() async{ - setState(() async { - // Some simplest connection :F - /*try { - BluetoothConnection connection = await BluetoothConnection.toAddress(address); - print('Connected to the device'); - - connection.input?.listen((Uint8List data) { - print('Data incoming: ${ascii.decode(data)}'); - connection.output.add(data); // Sending data - - if (ascii.decode(data).contains('!')) { - connection.finish(); // Closing connection - print('Disconnecting by local host'); - } - }).onDone(() { - print('Disconnected by remote request'); - }); - } - catch (exception) { - print('Cannot connect, exception occured'); - }*/ - // Start scanning - flutterBlue.startScan(timeout: Duration(seconds: 4)); - // Listen to scan results - var subscription = flutterBlue.scanResults.listen((results) { - // do something with scan results - for (ScanResult r in results) { - print('${r.device.name} found! rssi: ${r.rssi}'); - } - }); - // Stop scanning - flutterBlue.stopScan(); - }); - } - - FlutterBlue flutterBlue = FlutterBlue.instance; - - @override - Widget build(BuildContext context) { - // This method is rerun every time setState is called, for instance as done - // by the _incrementCounter method above. - // - // The Flutter framework has been optimized to make rerunning build methods - // fast, so that you can just rebuild anything that needs updating rather - // than having to individually change instances of widgets. - return Scaffold( - appBar: AppBar( - // Here we take the value from the MyHomePage object that was created by - // the App.build method, and use it to set our appbar title. - title: Text(widget.title), - ), - body: Center( - // Center is a layout widget. It takes a single child and positions it - // in the middle of the parent. - child: Column( - // Column is also a layout widget. It takes a list of children and - // arranges them vertically. By default, it sizes itself to fit its - // children horizontally, and tries to be as tall as its parent. - // - // Invoke "debug painting" (press "p" in the console, choose the - // "Toggle Debug Paint" action from the Flutter Inspector in Android - // Studio, or the "Toggle Debug Paint" command in Visual Studio Code) - // to see the wireframe for each widget. - // - // Column has various properties to control how it sizes itself and - // how it positions its children. Here we use mainAxisAlignment to - // center the children vertically; the main axis here is the vertical - // axis because Columns are vertical (the cross axis would be - // horizontal). - mainAxisAlignment: MainAxisAlignment.center, - children: [ - const Text( - 'Hello' - ' ' - 'You have pushed the button ' - 'this many times:', - ), - Text( - '$_counter', - style: Theme.of(context).textTheme.headline4, - ), - const Text( - 'hello', - ), - TextButton(onPressed: scan, child: const Text("Scan")), - Image.asset('assets/photo.jpg'), - ], - /*button: FloatingActionButton( - onPressed: print, - child: const Icon(Icons.add), - ),*/ - ), - ), - floatingActionButton: FloatingActionButton( - onPressed: _incrementCounter, - tooltip: 'Increment', - child: const Icon(Icons.add), - ), // This trailing comma makes auto-formatting nicer for build methods. - ); - } -} diff --git a/Tracking/rudra_app/pubspec.lock b/Tracking/rudra_app/pubspec.lock deleted file mode 100644 index 28c0f75c..00000000 --- a/Tracking/rudra_app/pubspec.lock +++ /dev/null @@ -1,217 +0,0 @@ -# Generated by pub -# See https://dart.dev/tools/pub/glossary#lockfile -packages: - async: - dependency: transitive - description: - name: async - url: "https://pub.dartlang.org" - source: hosted - version: "2.9.0" - boolean_selector: - dependency: transitive - description: - name: boolean_selector - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0" - characters: - dependency: transitive - description: - name: characters - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - charcode: - dependency: transitive - description: - name: charcode - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.1" - clock: - dependency: transitive - description: - name: clock - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.0" - collection: - dependency: transitive - description: - name: collection - url: "https://pub.dartlang.org" - source: hosted - version: "1.16.0" - convert: - dependency: transitive - description: - name: convert - url: "https://pub.dartlang.org" - source: hosted - version: "3.0.1" - cupertino_icons: - dependency: "direct main" - description: - name: cupertino_icons - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.4" - fake_async: - dependency: transitive - description: - name: fake_async - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.0" - fixnum: - dependency: transitive - description: - name: fixnum - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.1" - flutter: - dependency: "direct main" - description: flutter - source: sdk - version: "0.0.0" - flutter_blue: - dependency: "direct main" - description: - name: flutter_blue - url: "https://pub.dartlang.org" - source: hosted - version: "0.8.0" - flutter_bluetooth_serial: - dependency: "direct main" - description: - name: flutter_bluetooth_serial - url: "https://pub.dartlang.org" - source: hosted - version: "0.4.0" - flutter_lints: - dependency: "direct dev" - description: - name: flutter_lints - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.4" - flutter_test: - dependency: "direct dev" - description: flutter - source: sdk - version: "0.0.0" - lints: - dependency: transitive - description: - name: lints - url: "https://pub.dartlang.org" - source: hosted - version: "1.0.1" - matcher: - dependency: transitive - description: - name: matcher - url: "https://pub.dartlang.org" - source: hosted - version: "0.12.11" - material_color_utilities: - dependency: transitive - description: - name: material_color_utilities - url: "https://pub.dartlang.org" - source: hosted - version: "0.1.4" - meta: - dependency: transitive - description: - name: meta - url: "https://pub.dartlang.org" - source: hosted - version: "1.7.0" - path: - dependency: transitive - description: - name: path - url: "https://pub.dartlang.org" - source: hosted - version: "1.8.1" - protobuf: - dependency: transitive - description: - name: protobuf - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.1" - rxdart: - dependency: transitive - description: - name: rxdart - url: "https://pub.dartlang.org" - source: hosted - version: "0.26.0" - sky_engine: - dependency: transitive - description: flutter - source: sdk - version: "0.0.99" - source_span: - dependency: transitive - description: - name: source_span - url: "https://pub.dartlang.org" - source: hosted - version: "1.8.2" - stack_trace: - dependency: transitive - description: - name: stack_trace - url: "https://pub.dartlang.org" - source: hosted - version: "1.10.0" - stream_channel: - dependency: transitive - description: - name: stream_channel - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.0" - string_scanner: - dependency: transitive - description: - name: string_scanner - url: "https://pub.dartlang.org" - source: hosted - version: "1.1.0" - term_glyph: - dependency: transitive - description: - name: term_glyph - url: "https://pub.dartlang.org" - source: hosted - version: "1.2.0" - test_api: - dependency: transitive - description: - name: test_api - url: "https://pub.dartlang.org" - source: hosted - version: "0.4.9" - typed_data: - dependency: transitive - description: - name: typed_data - url: "https://pub.dartlang.org" - source: hosted - version: "1.3.1" - vector_math: - dependency: transitive - description: - name: vector_math - url: "https://pub.dartlang.org" - source: hosted - version: "2.1.2" -sdks: - dart: ">=2.17.0-0 <3.0.0" - flutter: ">=1.17.0" diff --git a/Tracking/rudra_app/pubspec.yaml b/Tracking/rudra_app/pubspec.yaml deleted file mode 100644 index 3483f830..00000000 --- a/Tracking/rudra_app/pubspec.yaml +++ /dev/null @@ -1,92 +0,0 @@ -name: rudra_app -description: A new Flutter project. - -# The following line prevents the package from being accidentally published to -# pub.dev using `flutter pub publish`. This is preferred for private packages. -publish_to: 'none' # Remove this line if you wish to publish to pub.dev - -# The following defines the version and build number for your application. -# A version number is three numbers separated by dots, like 1.2.43 -# followed by an optional build number separated by a +. -# Both the version and the builder number may be overridden in flutter -# build by specifying --build-name and --build-number, respectively. -# In Android, build-name is used as versionName while build-number used as versionCode. -# Read more about Android versioning at https://developer.android.com/studio/publish/versioning -# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. -# Read more about iOS versioning at -# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.0.0+1 - -environment: - sdk: ">=2.16.0-134.5.beta <3.0.0" - -# Dependencies specify other packages that your package needs in order to work. -# To automatically upgrade your package dependencies to the latest versions -# consider running `flutter pub upgrade --major-versions`. Alternatively, -# dependencies can be manually updated by changing the version numbers below to -# the latest version available on pub.dev. To see which dependencies have newer -# versions available, run `flutter pub outdated`. -dependencies: - flutter: - sdk: flutter - - - # The following adds the Cupertino Icons font to your application. - # Use with the CupertinoIcons class for iOS style icons. - cupertino_icons: ^1.0.2 - flutter_bluetooth_serial: ^0.4.0 - flutter_blue: ^0.8.0 - -dev_dependencies: - flutter_test: - sdk: flutter - - # The "flutter_lints" package below contains a set of recommended lints to - # encourage good coding practices. The lint set provided by the package is - # activated in the `analysis_options.yaml` file located at the root of your - # package. See that file for information about deactivating specific lint - # rules and activating additional ones. - flutter_lints: ^1.0.0 - -# For information on the generic Dart part of this file, see the -# following page: https://dart.dev/tools/pub/pubspec - -# The following section is specific to Flutter. -flutter: - - # The following line ensures that the Material Icons font is - # included with your application, so that you can use the icons in - # the material Icons class. - uses-material-design: true - - # To add assets to your application, add an assets section, like this: - assets: - - assets/ - # - images/a_dot_burr.jpeg - # - images/a_dot_ham.jpeg - - # An image asset can refer to one or more resolution-specific "variants", see - # https://flutter.dev/assets-and-images/#resolution-aware. - - # For details regarding adding assets from package dependencies, see - # https://flutter.dev/assets-and-images/#from-packages - - # To add custom fonts to your application, add a fonts section here, - # in this "flutter" section. Each entry in this list should have a - # "family" key with the font family name, and a "fonts" key with a - # list giving the asset and other descriptors for the font. For - # example: - # fonts: - # - family: Schyler - # fonts: - # - asset: fonts/Schyler-Regular.ttf - # - asset: fonts/Schyler-Italic.ttf - # style: italic - # - family: Trajan Pro - # fonts: - # - asset: fonts/TrajanPro.ttf - # - asset: fonts/TrajanPro_Bold.ttf - # weight: 700 - # - # For details regarding fonts from package dependencies, - # see https://flutter.dev/custom-fonts/#from-packages diff --git a/Tracking/rudra_app/test/widget_test.dart b/Tracking/rudra_app/test/widget_test.dart deleted file mode 100644 index 3b5e37b0..00000000 --- a/Tracking/rudra_app/test/widget_test.dart +++ /dev/null @@ -1,30 +0,0 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility that Flutter provides. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -import 'package:rudra_app/main.dart'; - -void main() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(const MyApp()); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); - }); -} diff --git a/Tracking/rudra_app/windows/.gitignore b/Tracking/rudra_app/windows/.gitignore deleted file mode 100644 index d492d0d9..00000000 --- a/Tracking/rudra_app/windows/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -flutter/ephemeral/ - -# Visual Studio user-specific files. -*.suo -*.user -*.userosscache -*.sln.docstates - -# Visual Studio build-related files. -x64/ -x86/ - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!*.[Cc]ache/ diff --git a/Tracking/rudra_app/windows/CMakeLists.txt b/Tracking/rudra_app/windows/CMakeLists.txt deleted file mode 100644 index c1eb875b..00000000 --- a/Tracking/rudra_app/windows/CMakeLists.txt +++ /dev/null @@ -1,95 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(rudra_app LANGUAGES CXX) - -set(BINARY_NAME "rudra_app") - -cmake_policy(SET CMP0063 NEW) - -set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") - -# Configure build options. -get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) -if(IS_MULTICONFIG) - set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" - CACHE STRING "" FORCE) -else() - if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - set(CMAKE_BUILD_TYPE "Debug" CACHE - STRING "Flutter build mode" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS - "Debug" "Profile" "Release") - endif() -endif() - -set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") -set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") -set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") -set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") - -# Use Unicode for all projects. -add_definitions(-DUNICODE -D_UNICODE) - -# Compilation settings that should be applied to most targets. -function(APPLY_STANDARD_SETTINGS TARGET) - target_compile_features(${TARGET} PUBLIC cxx_std_17) - target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") - target_compile_options(${TARGET} PRIVATE /EHsc) - target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") - target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") -endfunction() - -set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") - -# Flutter library and tool build rules. -add_subdirectory(${FLUTTER_MANAGED_DIR}) - -# Application build -add_subdirectory("runner") - -# Generated plugin build rules, which manage building the plugins and adding -# them to the application. -include(flutter/generated_plugins.cmake) - - -# === Installation === -# Support files are copied into place next to the executable, so that it can -# run in place. This is done instead of making a separate bundle (as on Linux) -# so that building and running from within Visual Studio will work. -set(BUILD_BUNDLE_DIR "$") -# Make the "install" step default, as it's required to run. -set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) -if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) -endif() - -set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") -set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") - -install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - COMPONENT Runtime) - -install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) - -if(PLUGIN_BUNDLED_LIBRARIES) - install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" - DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" - COMPONENT Runtime) -endif() - -# Fully re-copy the assets directory on each build to avoid having stale files -# from a previous install. -set(FLUTTER_ASSET_DIR_NAME "flutter_assets") -install(CODE " - file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") - " COMPONENT Runtime) -install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" - DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) - -# Install the AOT library on non-Debug builds only. -install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" - CONFIGURATIONS Profile;Release - COMPONENT Runtime) diff --git a/Tracking/rudra_app/windows/flutter/CMakeLists.txt b/Tracking/rudra_app/windows/flutter/CMakeLists.txt deleted file mode 100644 index b2e4bd8d..00000000 --- a/Tracking/rudra_app/windows/flutter/CMakeLists.txt +++ /dev/null @@ -1,103 +0,0 @@ -cmake_minimum_required(VERSION 3.14) - -set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") - -# Configuration provided via flutter tool. -include(${EPHEMERAL_DIR}/generated_config.cmake) - -# TODO: Move the rest of this into files in ephemeral. See -# https://github.com/flutter/flutter/issues/57146. -set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") - -# === Flutter Library === -set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") - -# Published to parent scope for install step. -set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) -set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) -set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) -set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) - -list(APPEND FLUTTER_LIBRARY_HEADERS - "flutter_export.h" - "flutter_windows.h" - "flutter_messenger.h" - "flutter_plugin_registrar.h" - "flutter_texture_registrar.h" -) -list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") -add_library(flutter INTERFACE) -target_include_directories(flutter INTERFACE - "${EPHEMERAL_DIR}" -) -target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") -add_dependencies(flutter flutter_assemble) - -# === Wrapper === -list(APPEND CPP_WRAPPER_SOURCES_CORE - "core_implementations.cc" - "standard_codec.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_PLUGIN - "plugin_registrar.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") -list(APPEND CPP_WRAPPER_SOURCES_APP - "flutter_engine.cc" - "flutter_view_controller.cc" -) -list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") - -# Wrapper sources needed for a plugin. -add_library(flutter_wrapper_plugin STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} -) -apply_standard_settings(flutter_wrapper_plugin) -set_target_properties(flutter_wrapper_plugin PROPERTIES - POSITION_INDEPENDENT_CODE ON) -set_target_properties(flutter_wrapper_plugin PROPERTIES - CXX_VISIBILITY_PRESET hidden) -target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) -target_include_directories(flutter_wrapper_plugin PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_plugin flutter_assemble) - -# Wrapper sources needed for the runner. -add_library(flutter_wrapper_app STATIC - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_APP} -) -apply_standard_settings(flutter_wrapper_app) -target_link_libraries(flutter_wrapper_app PUBLIC flutter) -target_include_directories(flutter_wrapper_app PUBLIC - "${WRAPPER_ROOT}/include" -) -add_dependencies(flutter_wrapper_app flutter_assemble) - -# === Flutter tool backend === -# _phony_ is a non-existent file to force this command to run every time, -# since currently there's no way to get a full input/output list from the -# flutter tool. -set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") -set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) -add_custom_command( - OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} - ${PHONY_OUTPUT} - COMMAND ${CMAKE_COMMAND} -E env - ${FLUTTER_TOOL_ENVIRONMENT} - "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" - windows-x64 $ - VERBATIM -) -add_custom_target(flutter_assemble DEPENDS - "${FLUTTER_LIBRARY}" - ${FLUTTER_LIBRARY_HEADERS} - ${CPP_WRAPPER_SOURCES_CORE} - ${CPP_WRAPPER_SOURCES_PLUGIN} - ${CPP_WRAPPER_SOURCES_APP} -) diff --git a/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.cc b/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.cc deleted file mode 100644 index 8b6d4680..00000000 --- a/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.cc +++ /dev/null @@ -1,11 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#include "generated_plugin_registrant.h" - - -void RegisterPlugins(flutter::PluginRegistry* registry) { -} diff --git a/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.h b/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.h deleted file mode 100644 index dc139d85..00000000 --- a/Tracking/rudra_app/windows/flutter/generated_plugin_registrant.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Generated file. Do not edit. -// - -// clang-format off - -#ifndef GENERATED_PLUGIN_REGISTRANT_ -#define GENERATED_PLUGIN_REGISTRANT_ - -#include - -// Registers Flutter plugins. -void RegisterPlugins(flutter::PluginRegistry* registry); - -#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/Tracking/rudra_app/windows/flutter/generated_plugins.cmake b/Tracking/rudra_app/windows/flutter/generated_plugins.cmake deleted file mode 100644 index b93c4c30..00000000 --- a/Tracking/rudra_app/windows/flutter/generated_plugins.cmake +++ /dev/null @@ -1,23 +0,0 @@ -# -# Generated file, do not edit. -# - -list(APPEND FLUTTER_PLUGIN_LIST -) - -list(APPEND FLUTTER_FFI_PLUGIN_LIST -) - -set(PLUGIN_BUNDLED_LIBRARIES) - -foreach(plugin ${FLUTTER_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) - target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) - list(APPEND PLUGIN_BUNDLED_LIBRARIES $) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) -endforeach(plugin) - -foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) - add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) - list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) -endforeach(ffi_plugin) diff --git a/Tracking/rudra_app/windows/runner/CMakeLists.txt b/Tracking/rudra_app/windows/runner/CMakeLists.txt deleted file mode 100644 index de2d8916..00000000 --- a/Tracking/rudra_app/windows/runner/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -cmake_minimum_required(VERSION 3.14) -project(runner LANGUAGES CXX) - -add_executable(${BINARY_NAME} WIN32 - "flutter_window.cpp" - "main.cpp" - "utils.cpp" - "win32_window.cpp" - "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" - "Runner.rc" - "runner.exe.manifest" -) -apply_standard_settings(${BINARY_NAME}) -target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") -target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) -target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") -add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/Tracking/rudra_app/windows/runner/Runner.rc b/Tracking/rudra_app/windows/runner/Runner.rc deleted file mode 100644 index 10c39187..00000000 --- a/Tracking/rudra_app/windows/runner/Runner.rc +++ /dev/null @@ -1,121 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#pragma code_page(65001) -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "winres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (United States) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""winres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// - -// Icon with lowest ID value placed first to ensure application icon -// remains consistent on all systems. -IDI_APP_ICON ICON "resources\\app_icon.ico" - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -#ifdef FLUTTER_BUILD_NUMBER -#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER -#else -#define VERSION_AS_NUMBER 1,0,0 -#endif - -#ifdef FLUTTER_BUILD_NAME -#define VERSION_AS_STRING #FLUTTER_BUILD_NAME -#else -#define VERSION_AS_STRING "1.0.0" -#endif - -VS_VERSION_INFO VERSIONINFO - FILEVERSION VERSION_AS_NUMBER - PRODUCTVERSION VERSION_AS_NUMBER - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK -#ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG -#else - FILEFLAGS 0x0L -#endif - FILEOS VOS__WINDOWS32 - FILETYPE VFT_APP - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", "com.example" "\0" - VALUE "FileDescription", "rudra_app" "\0" - VALUE "FileVersion", VERSION_AS_STRING "\0" - VALUE "InternalName", "rudra_app" "\0" - VALUE "LegalCopyright", "Copyright (C) 2022 com.example. All rights reserved." "\0" - VALUE "OriginalFilename", "rudra_app.exe" "\0" - VALUE "ProductName", "rudra_app" "\0" - VALUE "ProductVersion", VERSION_AS_STRING "\0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - -#endif // English (United States) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED diff --git a/Tracking/rudra_app/windows/runner/flutter_window.cpp b/Tracking/rudra_app/windows/runner/flutter_window.cpp deleted file mode 100644 index b43b9095..00000000 --- a/Tracking/rudra_app/windows/runner/flutter_window.cpp +++ /dev/null @@ -1,61 +0,0 @@ -#include "flutter_window.h" - -#include - -#include "flutter/generated_plugin_registrant.h" - -FlutterWindow::FlutterWindow(const flutter::DartProject& project) - : project_(project) {} - -FlutterWindow::~FlutterWindow() {} - -bool FlutterWindow::OnCreate() { - if (!Win32Window::OnCreate()) { - return false; - } - - RECT frame = GetClientArea(); - - // The size here must match the window dimensions to avoid unnecessary surface - // creation / destruction in the startup path. - flutter_controller_ = std::make_unique( - frame.right - frame.left, frame.bottom - frame.top, project_); - // Ensure that basic setup of the controller was successful. - if (!flutter_controller_->engine() || !flutter_controller_->view()) { - return false; - } - RegisterPlugins(flutter_controller_->engine()); - SetChildContent(flutter_controller_->view()->GetNativeWindow()); - return true; -} - -void FlutterWindow::OnDestroy() { - if (flutter_controller_) { - flutter_controller_ = nullptr; - } - - Win32Window::OnDestroy(); -} - -LRESULT -FlutterWindow::MessageHandler(HWND hwnd, UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - // Give Flutter, including plugins, an opportunity to handle window messages. - if (flutter_controller_) { - std::optional result = - flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, - lparam); - if (result) { - return *result; - } - } - - switch (message) { - case WM_FONTCHANGE: - flutter_controller_->engine()->ReloadSystemFonts(); - break; - } - - return Win32Window::MessageHandler(hwnd, message, wparam, lparam); -} diff --git a/Tracking/rudra_app/windows/runner/flutter_window.h b/Tracking/rudra_app/windows/runner/flutter_window.h deleted file mode 100644 index 6da0652f..00000000 --- a/Tracking/rudra_app/windows/runner/flutter_window.h +++ /dev/null @@ -1,33 +0,0 @@ -#ifndef RUNNER_FLUTTER_WINDOW_H_ -#define RUNNER_FLUTTER_WINDOW_H_ - -#include -#include - -#include - -#include "win32_window.h" - -// A window that does nothing but host a Flutter view. -class FlutterWindow : public Win32Window { - public: - // Creates a new FlutterWindow hosting a Flutter view running |project|. - explicit FlutterWindow(const flutter::DartProject& project); - virtual ~FlutterWindow(); - - protected: - // Win32Window: - bool OnCreate() override; - void OnDestroy() override; - LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, - LPARAM const lparam) noexcept override; - - private: - // The project to run. - flutter::DartProject project_; - - // The Flutter instance hosted by this window. - std::unique_ptr flutter_controller_; -}; - -#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/Tracking/rudra_app/windows/runner/main.cpp b/Tracking/rudra_app/windows/runner/main.cpp deleted file mode 100644 index 959a4515..00000000 --- a/Tracking/rudra_app/windows/runner/main.cpp +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include -#include - -#include "flutter_window.h" -#include "utils.h" - -int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, - _In_ wchar_t *command_line, _In_ int show_command) { - // Attach to console when present (e.g., 'flutter run') or create a - // new console when running with a debugger. - if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { - CreateAndAttachConsole(); - } - - // Initialize COM, so that it is available for use in the library and/or - // plugins. - ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); - - flutter::DartProject project(L"data"); - - std::vector command_line_arguments = - GetCommandLineArguments(); - - project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); - - FlutterWindow window(project); - Win32Window::Point origin(10, 10); - Win32Window::Size size(1280, 720); - if (!window.CreateAndShow(L"rudra_app", origin, size)) { - return EXIT_FAILURE; - } - window.SetQuitOnClose(true); - - ::MSG msg; - while (::GetMessage(&msg, nullptr, 0, 0)) { - ::TranslateMessage(&msg); - ::DispatchMessage(&msg); - } - - ::CoUninitialize(); - return EXIT_SUCCESS; -} diff --git a/Tracking/rudra_app/windows/runner/resource.h b/Tracking/rudra_app/windows/runner/resource.h deleted file mode 100644 index 66a65d1e..00000000 --- a/Tracking/rudra_app/windows/runner/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by Runner.rc -// -#define IDI_APP_ICON 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/Tracking/rudra_app/windows/runner/resources/app_icon.ico b/Tracking/rudra_app/windows/runner/resources/app_icon.ico deleted file mode 100644 index c04e20ca..00000000 Binary files a/Tracking/rudra_app/windows/runner/resources/app_icon.ico and /dev/null differ diff --git a/Tracking/rudra_app/windows/runner/runner.exe.manifest b/Tracking/rudra_app/windows/runner/runner.exe.manifest deleted file mode 100644 index c977c4a4..00000000 --- a/Tracking/rudra_app/windows/runner/runner.exe.manifest +++ /dev/null @@ -1,20 +0,0 @@ - - - - - PerMonitorV2 - - - - - - - - - - - - - - - diff --git a/Tracking/rudra_app/windows/runner/utils.cpp b/Tracking/rudra_app/windows/runner/utils.cpp deleted file mode 100644 index d19bdbbc..00000000 --- a/Tracking/rudra_app/windows/runner/utils.cpp +++ /dev/null @@ -1,64 +0,0 @@ -#include "utils.h" - -#include -#include -#include -#include - -#include - -void CreateAndAttachConsole() { - if (::AllocConsole()) { - FILE *unused; - if (freopen_s(&unused, "CONOUT$", "w", stdout)) { - _dup2(_fileno(stdout), 1); - } - if (freopen_s(&unused, "CONOUT$", "w", stderr)) { - _dup2(_fileno(stdout), 2); - } - std::ios::sync_with_stdio(); - FlutterDesktopResyncOutputStreams(); - } -} - -std::vector GetCommandLineArguments() { - // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. - int argc; - wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); - if (argv == nullptr) { - return std::vector(); - } - - std::vector command_line_arguments; - - // Skip the first argument as it's the binary name. - for (int i = 1; i < argc; i++) { - command_line_arguments.push_back(Utf8FromUtf16(argv[i])); - } - - ::LocalFree(argv); - - return command_line_arguments; -} - -std::string Utf8FromUtf16(const wchar_t* utf16_string) { - if (utf16_string == nullptr) { - return std::string(); - } - int target_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, nullptr, 0, nullptr, nullptr); - if (target_length == 0) { - return std::string(); - } - std::string utf8_string; - utf8_string.resize(target_length); - int converted_length = ::WideCharToMultiByte( - CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, - -1, utf8_string.data(), - target_length, nullptr, nullptr); - if (converted_length == 0) { - return std::string(); - } - return utf8_string; -} diff --git a/Tracking/rudra_app/windows/runner/utils.h b/Tracking/rudra_app/windows/runner/utils.h deleted file mode 100644 index 3879d547..00000000 --- a/Tracking/rudra_app/windows/runner/utils.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef RUNNER_UTILS_H_ -#define RUNNER_UTILS_H_ - -#include -#include - -// Creates a console for the process, and redirects stdout and stderr to -// it for both the runner and the Flutter library. -void CreateAndAttachConsole(); - -// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string -// encoded in UTF-8. Returns an empty std::string on failure. -std::string Utf8FromUtf16(const wchar_t* utf16_string); - -// Gets the command line arguments passed in as a std::vector, -// encoded in UTF-8. Returns an empty std::vector on failure. -std::vector GetCommandLineArguments(); - -#endif // RUNNER_UTILS_H_ diff --git a/Tracking/rudra_app/windows/runner/win32_window.cpp b/Tracking/rudra_app/windows/runner/win32_window.cpp deleted file mode 100644 index c10f08dc..00000000 --- a/Tracking/rudra_app/windows/runner/win32_window.cpp +++ /dev/null @@ -1,245 +0,0 @@ -#include "win32_window.h" - -#include - -#include "resource.h" - -namespace { - -constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; - -// The number of Win32Window objects that currently exist. -static int g_active_window_count = 0; - -using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); - -// Scale helper to convert logical scaler values to physical using passed in -// scale factor -int Scale(int source, double scale_factor) { - return static_cast(source * scale_factor); -} - -// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. -// This API is only needed for PerMonitor V1 awareness mode. -void EnableFullDpiSupportIfAvailable(HWND hwnd) { - HMODULE user32_module = LoadLibraryA("User32.dll"); - if (!user32_module) { - return; - } - auto enable_non_client_dpi_scaling = - reinterpret_cast( - GetProcAddress(user32_module, "EnableNonClientDpiScaling")); - if (enable_non_client_dpi_scaling != nullptr) { - enable_non_client_dpi_scaling(hwnd); - FreeLibrary(user32_module); - } -} - -} // namespace - -// Manages the Win32Window's window class registration. -class WindowClassRegistrar { - public: - ~WindowClassRegistrar() = default; - - // Returns the singleton registar instance. - static WindowClassRegistrar* GetInstance() { - if (!instance_) { - instance_ = new WindowClassRegistrar(); - } - return instance_; - } - - // Returns the name of the window class, registering the class if it hasn't - // previously been registered. - const wchar_t* GetWindowClass(); - - // Unregisters the window class. Should only be called if there are no - // instances of the window. - void UnregisterWindowClass(); - - private: - WindowClassRegistrar() = default; - - static WindowClassRegistrar* instance_; - - bool class_registered_ = false; -}; - -WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; - -const wchar_t* WindowClassRegistrar::GetWindowClass() { - if (!class_registered_) { - WNDCLASS window_class{}; - window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); - window_class.lpszClassName = kWindowClassName; - window_class.style = CS_HREDRAW | CS_VREDRAW; - window_class.cbClsExtra = 0; - window_class.cbWndExtra = 0; - window_class.hInstance = GetModuleHandle(nullptr); - window_class.hIcon = - LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); - window_class.hbrBackground = 0; - window_class.lpszMenuName = nullptr; - window_class.lpfnWndProc = Win32Window::WndProc; - RegisterClass(&window_class); - class_registered_ = true; - } - return kWindowClassName; -} - -void WindowClassRegistrar::UnregisterWindowClass() { - UnregisterClass(kWindowClassName, nullptr); - class_registered_ = false; -} - -Win32Window::Win32Window() { - ++g_active_window_count; -} - -Win32Window::~Win32Window() { - --g_active_window_count; - Destroy(); -} - -bool Win32Window::CreateAndShow(const std::wstring& title, - const Point& origin, - const Size& size) { - Destroy(); - - const wchar_t* window_class = - WindowClassRegistrar::GetInstance()->GetWindowClass(); - - const POINT target_point = {static_cast(origin.x), - static_cast(origin.y)}; - HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); - UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); - double scale_factor = dpi / 96.0; - - HWND window = CreateWindow( - window_class, title.c_str(), WS_OVERLAPPEDWINDOW | WS_VISIBLE, - Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), - Scale(size.width, scale_factor), Scale(size.height, scale_factor), - nullptr, nullptr, GetModuleHandle(nullptr), this); - - if (!window) { - return false; - } - - return OnCreate(); -} - -// static -LRESULT CALLBACK Win32Window::WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - if (message == WM_NCCREATE) { - auto window_struct = reinterpret_cast(lparam); - SetWindowLongPtr(window, GWLP_USERDATA, - reinterpret_cast(window_struct->lpCreateParams)); - - auto that = static_cast(window_struct->lpCreateParams); - EnableFullDpiSupportIfAvailable(window); - that->window_handle_ = window; - } else if (Win32Window* that = GetThisFromHandle(window)) { - return that->MessageHandler(window, message, wparam, lparam); - } - - return DefWindowProc(window, message, wparam, lparam); -} - -LRESULT -Win32Window::MessageHandler(HWND hwnd, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept { - switch (message) { - case WM_DESTROY: - window_handle_ = nullptr; - Destroy(); - if (quit_on_close_) { - PostQuitMessage(0); - } - return 0; - - case WM_DPICHANGED: { - auto newRectSize = reinterpret_cast(lparam); - LONG newWidth = newRectSize->right - newRectSize->left; - LONG newHeight = newRectSize->bottom - newRectSize->top; - - SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, - newHeight, SWP_NOZORDER | SWP_NOACTIVATE); - - return 0; - } - case WM_SIZE: { - RECT rect = GetClientArea(); - if (child_content_ != nullptr) { - // Size and position the child window. - MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, - rect.bottom - rect.top, TRUE); - } - return 0; - } - - case WM_ACTIVATE: - if (child_content_ != nullptr) { - SetFocus(child_content_); - } - return 0; - } - - return DefWindowProc(window_handle_, message, wparam, lparam); -} - -void Win32Window::Destroy() { - OnDestroy(); - - if (window_handle_) { - DestroyWindow(window_handle_); - window_handle_ = nullptr; - } - if (g_active_window_count == 0) { - WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); - } -} - -Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { - return reinterpret_cast( - GetWindowLongPtr(window, GWLP_USERDATA)); -} - -void Win32Window::SetChildContent(HWND content) { - child_content_ = content; - SetParent(content, window_handle_); - RECT frame = GetClientArea(); - - MoveWindow(content, frame.left, frame.top, frame.right - frame.left, - frame.bottom - frame.top, true); - - SetFocus(child_content_); -} - -RECT Win32Window::GetClientArea() { - RECT frame; - GetClientRect(window_handle_, &frame); - return frame; -} - -HWND Win32Window::GetHandle() { - return window_handle_; -} - -void Win32Window::SetQuitOnClose(bool quit_on_close) { - quit_on_close_ = quit_on_close; -} - -bool Win32Window::OnCreate() { - // No-op; provided for subclasses. - return true; -} - -void Win32Window::OnDestroy() { - // No-op; provided for subclasses. -} diff --git a/Tracking/rudra_app/windows/runner/win32_window.h b/Tracking/rudra_app/windows/runner/win32_window.h deleted file mode 100644 index 17ba4311..00000000 --- a/Tracking/rudra_app/windows/runner/win32_window.h +++ /dev/null @@ -1,98 +0,0 @@ -#ifndef RUNNER_WIN32_WINDOW_H_ -#define RUNNER_WIN32_WINDOW_H_ - -#include - -#include -#include -#include - -// A class abstraction for a high DPI-aware Win32 Window. Intended to be -// inherited from by classes that wish to specialize with custom -// rendering and input handling -class Win32Window { - public: - struct Point { - unsigned int x; - unsigned int y; - Point(unsigned int x, unsigned int y) : x(x), y(y) {} - }; - - struct Size { - unsigned int width; - unsigned int height; - Size(unsigned int width, unsigned int height) - : width(width), height(height) {} - }; - - Win32Window(); - virtual ~Win32Window(); - - // Creates and shows a win32 window with |title| and position and size using - // |origin| and |size|. New windows are created on the default monitor. Window - // sizes are specified to the OS in physical pixels, hence to ensure a - // consistent size to will treat the width height passed in to this function - // as logical pixels and scale to appropriate for the default monitor. Returns - // true if the window was created successfully. - bool CreateAndShow(const std::wstring& title, - const Point& origin, - const Size& size); - - // Release OS resources associated with window. - void Destroy(); - - // Inserts |content| into the window tree. - void SetChildContent(HWND content); - - // Returns the backing Window handle to enable clients to set icon and other - // window properties. Returns nullptr if the window has been destroyed. - HWND GetHandle(); - - // If true, closing this window will quit the application. - void SetQuitOnClose(bool quit_on_close); - - // Return a RECT representing the bounds of the current client area. - RECT GetClientArea(); - - protected: - // Processes and route salient window messages for mouse handling, - // size change and DPI. Delegates handling of these to member overloads that - // inheriting classes can handle. - virtual LRESULT MessageHandler(HWND window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Called when CreateAndShow is called, allowing subclass window-related - // setup. Subclasses should return false if setup fails. - virtual bool OnCreate(); - - // Called when Destroy is called. - virtual void OnDestroy(); - - private: - friend class WindowClassRegistrar; - - // OS callback called by message pump. Handles the WM_NCCREATE message which - // is passed when the non-client area is being created and enables automatic - // non-client DPI scaling so that the non-client area automatically - // responsponds to changes in DPI. All other messages are handled by - // MessageHandler. - static LRESULT CALLBACK WndProc(HWND const window, - UINT const message, - WPARAM const wparam, - LPARAM const lparam) noexcept; - - // Retrieves a class instance pointer for |window| - static Win32Window* GetThisFromHandle(HWND const window) noexcept; - - bool quit_on_close_ = false; - - // window handle for top level window. - HWND window_handle_ = nullptr; - - // window handle for hosted content. - HWND child_content_ = nullptr; -}; - -#endif // RUNNER_WIN32_WINDOW_H_ diff --git a/companionapp/.idea/vcs.xml b/companionapp/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/companionapp/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/companionapp/.idea/workspace.xml b/companionapp/.idea/workspace.xml new file mode 100644 index 00000000..98ba14cc --- /dev/null +++ b/companionapp/.idea/workspace.xml @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +