Merge "[BugFix][API-1441]add MTK patch to lk to get reboot info" into GSW3.0-No-Connman-2CoreT
diff --git a/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf b/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
index 02391f6..bfe54c9 100755
--- a/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
+++ b/meta-sdk/meta/meta-lynqSDK-T800/conf/machine/auto2735evb-ivt-base.conf
@@ -174,7 +174,7 @@
 SCATTER_PROJECT = "auto2735-ivt-mcp_nand"
 
 # Modem
-MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_P7_20231018"
+MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_T26_20231108"
 MODEM_INT = "${TOPDIR}/../prebuilt/modem/mt2735_internal"
 MODEM_CUSTOM = "${TOPDIR}/../prebuilt/modem/mt2735"
 MODEM_INT_EXIST = "${@ os.path.exists('${MODEM_INT}')}"
diff --git a/meta-sdk/meta/meta-lynqSDK-T800/recipes-core/initial/files/init_mount_nand b/meta-sdk/meta/meta-lynqSDK-T800/recipes-core/initial/files/init_mount_nand
index f901286..8718b3b 100755
--- a/meta-sdk/meta/meta-lynqSDK-T800/recipes-core/initial/files/init_mount_nand
+++ b/meta-sdk/meta/meta-lynqSDK-T800/recipes-core/initial/files/init_mount_nand
@@ -187,6 +187,9 @@
 #you.chen@2022-07-11 add for load oemapp begin
 init_oemapp() {
 
+	#you.chen@2023-11-10 add for enable hwnat 
+	ifconfig eth0 up
+
 	mnt_folder oemdata /oemdata
 
 	if [ "$AVB_SLOT_FLAG" == "a" ]; then
@@ -198,6 +201,7 @@
 	else
 		echo "unkown ab slot, not mount oemapp"
 	fi
+
 }
 
 init_oemapp &
diff --git a/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf b/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
index bbb4f57..27311ec 100755
--- a/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
+++ b/meta/meta-mediatek-mt2735/conf/machine/auto2735evb-ivt-base.conf
@@ -148,7 +148,7 @@
 SCATTER_PROJECT = "auto2735-ivt-mcp_nand"
 
 # Modem
-MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_P7_20231018"
+MODEM_PROJECT = "MT2735_V02.MP1_MR3_NLWG_T26_20231108"
 MODEM_INT = "${TOPDIR}/../prebuilt/modem/mt2735_internal"
 MODEM_CUSTOM = "${TOPDIR}/../prebuilt/modem/mt2735"
 MODEM_INT_EXIST = "${@ os.path.exists('${MODEM_INT}')}"
diff --git a/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c b/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
index fd8e9dd..25e060a 100755
--- a/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
+++ b/meta/meta-mediatek-mt2735/recipes-lynq/suspend-service/files/autosuspend_wakeup_count.c
@@ -45,6 +45,10 @@
 #define BASE_SLEEP_TIME 100000
 #define POSSIBLE_MAX_SLEEP_TIME 60000000
 
+#define LOG_UCI_MODULE "lynq_autosuspend"
+#define LOG_UCI_FILE "lynq_uci"
+
+
 static int state_fd;
 static int wakeup_count_fd;
 static int suspend_ctrl_fd;
@@ -73,7 +77,6 @@
 static long end_time; 
 
 
-
 # define TEMP_FAILURE_RETRY(expression) \
   (__extension__							      \
     ({ long int __result;						      \
@@ -233,17 +236,17 @@
     int ret = 0;
     int i;
     int flag = -1;
-    
+    char tmp[20];
     system("echo \"Sys standby mode\" >/dev/console");
-    // sleep(1);
+
+    lynq_get_value(LOG_UCI_FILE, LOG_UCI_MODULE, "debug", tmp);
+    adb_debug_mode=atoi(tmp);
+
     if(adb_debug_mode == 2)
     {
         system("echo 11 | emdlogger_ctrl");
     }
-    else
-    {
-        system("echo 7 | emdlogger_ctrl");
-    }
+
     if (lynq_screen(0) != 0)  //notify ril for screen off
     {
         ALOGI("lynq_screen off fail\n");
@@ -325,10 +328,6 @@
             sleep(1);
             system("echo 6 | emdlogger_ctrl");//start modem log SD mode
         }
-        else
-        {
-            system("echo 6 | emdlogger_ctrl");//start modem log SD mode
-        }
 
        usleep(200000); 
        ALOGI("Log on with failure\n");
@@ -346,10 +345,7 @@
         sleep(1);
         system("echo 6 | emdlogger_ctrl");//start modem log SD mode
     }
-     else
-    {
-        system("echo 6 | emdlogger_ctrl");//start modem log SD mode
-    }
+
 
     usleep(300000); //delay 2s for ril handling screen on,at least 70ms
 
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz
deleted file mode 100755
index da0726d..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MCF_OTA_FILES.tar.gz
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz
deleted file mode 100755
index ebf1aea..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.MCF.ODB.tar.gz
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ
deleted file mode 100755
index 71b27ee..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.XML.GZ
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
deleted file mode 100755
index dcf1751..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
deleted file mode 100755
index e26aa3c..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T21_T800_20231007.EDB
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img
deleted file mode 100755
index 59c7c6f..0000000
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/modem.img
+++ /dev/null
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz
new file mode 100755
index 0000000..9180112
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MCF_OTA_FILES.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz
new file mode 100755
index 0000000..712dbd0
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.MCF.ODB.tar.gz
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ
new file mode 100755
index 0000000..ed65d12
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META.ODB_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.XML.GZ
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
new file mode 100755
index 0000000..a6bfdb6
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB.META_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
new file mode 100755
index 0000000..d64aea6
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/MDDB_InfoCustomAppSrcP_MT2735_S00_MOLY_NR15_R3_MD700_MP_V75_T26_T800_231108.EDB
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_1_Moderate.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_1_Moderate.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_1_Moderate.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_1_Moderate.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_2_Standard.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_2_Standard.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_2_Standard.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_2_Standard.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_3_Slim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_3_Slim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_3_Slim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_3_Slim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_4_UltraSlim.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_4_UltraSlim.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_4_UltraSlim.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_4_UltraSlim.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_LowPowerMonitor.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_LowPowerMonitor.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_LowPowerMonitor.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_LowPowerMonitor.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_PLS_PS_ONLY.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_PLS_PS_ONLY.bin
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/catcher_filter_PLS_PS_ONLY.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/catcher_filter_PLS_PS_ONLY.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
similarity index 99%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
index 054e54d..0ed121a 100755
--- a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/dsp.bin
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/dsp.bin
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/202_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/202_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_69.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_69.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/204_69.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/204_69.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/206_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/206_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/208_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/208_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/214_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/214_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/216_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/216_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/219_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/219_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/220_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/220_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/220_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/220_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/222_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/222_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/226_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/226_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/228_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/228_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/230_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/230_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/231_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/231_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/232_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/232_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_32.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_32.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_32.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_32.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/234_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/234_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/235_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/235_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/238_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/238_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/240_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/240_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/242_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/242_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_91.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_91.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/244_91.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/244_91.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/246_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/246_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/246_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/246_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/248_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/248_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/248_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/248_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/250_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/250_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/259_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/259_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/259_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/259_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/260_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/260_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/262_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/262_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/268_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/268_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/272_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/272_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/272_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/272_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/276_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/276_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/276_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/276_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/284_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/284_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/286_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/286_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/293_41.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/293_41.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/293_41.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/293_41.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/294_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/294_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/295_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/295_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/295_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/295_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/297_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/297_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/297_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/297_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_370.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_370.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_370.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_370.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_610.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_610.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_610.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_610.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_630.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_630.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_630.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_630.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_690.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_690.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_690.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_690.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_720.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_720.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/302_720.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/302_720.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_070.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_070.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_070.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_070.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_150.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_150.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_150.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_150.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_160.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_160.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_160.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_160.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_170.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_170.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_170.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_170.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_200.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_200.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_200.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_200.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_210.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_210.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_210.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_210.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_230.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_230.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_230.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_230.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_240.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_240.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_240.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_240.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_250.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_250.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_250.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_250.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_260.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_260.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_260.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_260.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_280.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_280.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_280.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_280.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_380.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_380.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_380.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_380.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_410.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_410.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_410.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_410.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_560.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_560.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_560.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_560.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_590.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_590.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_590.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_590.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_640.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_640.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_640.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_640.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_660.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_660.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_660.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_660.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_680.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_680.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_680.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_680.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_800.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_800.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_800.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_800.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_950.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_950.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/310_950.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/310_950.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_180.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_180.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_180.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_180.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_220.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_220.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_220.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_220.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_221.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_221.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_221.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_221.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_222.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_222.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_222.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_222.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_223.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_223.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_223.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_223.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_224.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_224.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_224.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_224.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_225.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_225.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_225.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_225.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_226.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_226.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_226.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_226.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_227.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_227.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_227.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_227.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_228.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_228.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_228.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_228.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_229.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_229.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_229.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_229.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_270.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_270.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_270.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_270.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_390.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_390.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_390.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_390.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_480.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_480.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_480.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_480.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_490.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_490.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_490.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_490.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_580.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_580.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_580.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_580.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_581.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_581.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_581.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_581.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_582.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_582.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_582.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_582.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_583.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_583.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_583.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_583.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_584.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_584.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_584.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_584.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_585.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_585.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_585.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_585.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_586.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_586.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_586.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_586.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_587.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_587.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_587.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_587.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_588.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_588.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_588.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_588.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_589.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_589.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_589.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_589.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/311_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/311_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_530.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_530.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_530.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_530.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_670.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_670.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_670.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_670.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_770.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_770.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/312_770.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/312_770.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_100.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_100.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_100.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_100.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_120.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_120.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_120.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_120.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/313_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/313_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/330_110.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/330_110.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/330_110.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/330_110.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_050.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_050.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_050.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_050.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_090.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_090.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_090.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_090.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_140.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_140.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/334_140.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/334_140.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/370_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/370_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/370_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/370_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_22.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_22.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_22.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_22.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_38.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_38.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_38.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_38.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_43.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_43.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_43.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_43.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_44.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_44.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_44.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_44.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_45.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_45.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_45.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_45.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_46.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_46.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_46.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_46.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_49.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_49.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_49.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_49.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_57.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_57.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_57.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_57.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_58.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_58.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_58.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_58.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_59.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_59.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_59.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_59.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_60.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_60.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_60.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_60.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_62.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_62.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_62.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_62.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_64.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_64.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_64.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_64.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_73.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_73.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_73.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_73.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_74.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_74.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_74.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_74.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_75.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_75.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_75.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_75.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_76.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_76.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_76.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_76.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_77.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_77.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_77.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_77.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_78.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_78.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_78.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_78.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_79.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_79.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_79.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_79.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_81.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_81.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_81.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_81.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_82.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_82.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_82.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_82.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_84.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_84.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_84.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_84.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_86.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_86.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_86.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_86.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_87.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_87.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_87.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_87.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_88.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_88.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_88.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_88.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_94.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_94.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_94.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_94.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_95.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_95.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_95.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_95.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_96.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_96.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_96.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_96.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_98.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_98.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/404_98.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/404_98.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_030.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_030.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_030.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_030.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_035.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_035.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_035.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_035.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_036.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_036.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_036.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_036.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_037.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_037.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_037.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_037.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_038.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_038.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_038.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_038.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_039.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_039.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_039.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_039.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_044.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_044.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_044.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_044.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_52.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_52.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_52.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_52.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_53.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_53.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_53.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_53.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_55.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_55.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_55.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_55.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_56.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_56.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_56.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_56.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_67.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_67.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_67.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_67.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_70.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_70.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_70.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_70.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_750.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_750.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_750.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_750.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_751.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_751.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_751.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_751.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_752.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_752.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_752.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_752.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_753.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_753.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_753.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_753.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_754.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_754.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_754.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_754.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_755.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_755.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_755.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_755.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_756.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_756.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_756.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_756.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_799.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_799.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_799.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_799.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_818.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_818.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_818.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_818.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_819.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_819.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_819.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_819.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_840.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_840.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_840.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_840.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_845.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_845.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_845.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_845.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_846.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_846.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_846.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_846.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_847.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_847.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_847.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_847.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_848.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_848.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_848.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_848.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_849.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_849.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_849.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_849.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_850.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_850.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_850.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_850.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_851.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_851.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_851.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_851.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_852.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_852.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_852.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_852.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_853.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_853.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_853.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_853.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_854.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_854.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_854.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_854.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_855.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_855.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_855.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_855.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_856.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_856.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_856.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_856.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_857.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_857.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_857.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_857.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_858.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_858.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_858.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_858.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_859.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_859.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_859.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_859.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_860.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_860.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_860.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_860.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_861.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_861.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_861.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_861.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_862.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_862.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_862.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_862.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_863.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_863.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_863.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_863.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_864.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_864.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_864.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_864.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_865.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_865.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_865.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_865.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_866.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_866.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_866.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_866.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_867.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_867.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_867.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_867.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_868.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_868.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_868.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_868.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_869.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_869.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_869.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_869.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_870.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_870.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_870.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_870.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_871.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_871.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_871.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_871.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_872.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_872.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_872.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_872.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_873.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_873.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_873.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_873.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_874.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_874.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_874.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_874.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_876.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_876.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_876.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_876.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_879.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_879.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_879.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_879.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_908.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_908.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_908.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_908.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_909.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_909.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_909.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_909.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_910.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_910.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_910.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_910.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_911.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_911.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_911.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_911.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_927.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_927.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_927.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_927.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_929.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_929.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/405_929.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/405_929.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/410_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/410_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/413_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/413_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/414_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/414_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/418_66.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/418_66.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/418_66.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/418_66.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/419_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/419_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/420_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/420_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/424_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/424_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/426_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/426_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/427_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/427_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/427_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/427_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_51.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_51.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_51.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_51.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_54.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_54.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/440_54.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/440_54.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/450_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/450_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/452_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/452_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_14.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_14.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_14.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_14.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_15.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_15.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_15.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_15.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_19.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_19.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_19.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_19.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_20.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_20.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_20.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_20.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_29.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_29.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_29.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_29.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_31.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_31.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/454_31.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/454_31.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/455_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/455_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/456_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/456_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_12.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_12.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_12.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_12.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_13.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_13.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/460_13.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/460_13.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_89.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_89.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_89.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_89.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_92.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_92.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_92.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_92.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_93.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_93.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_93.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_93.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_97.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_97.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_97.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_97.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_99.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_99.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/466_99.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/466_99.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/470_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/470_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_08.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_08.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_08.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_08.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_152.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_152.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_152.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_152.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_153.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_153.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_153.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_153.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_16.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_16.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_16.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_16.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_18.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_18.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/502_18.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/502_18.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_39.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_39.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_39.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_39.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_71.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_71.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_71.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_71.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_72.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_72.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_72.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_72.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_90.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_90.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/505_90.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/505_90.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_28.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_28.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/510_28.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/510_28.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/515_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/515_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/520_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/520_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/525_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/525_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_099.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_099.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_099.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_099.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_24.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_24.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/530_24.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/530_24.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/602_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/602_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_27.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_27.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_27.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_27.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_40.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_40.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/621_40.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/621_40.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/639_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/639_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/640_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/640_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/640_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/640_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/641_33.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/641_33.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/641_33.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/641_33.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/645_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/645_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/645_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/645_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/653_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/653_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/653_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/653_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/655_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/655_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/704_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/704_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/706_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/706_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/708_001.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/708_001.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/708_001.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/708_001.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_21.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_21.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_21.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_21.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_30.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_30.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_30.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_30.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_300.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_300.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/710_300.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/710_300.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/712_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/712_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_020.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_020.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_020.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_020.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/714_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/714_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_17.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_17.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/716_17.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/716_17.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_310.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_310.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_310.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_310.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_34.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_34.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/722_34.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/722_34.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_05.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_05.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_05.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_05.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_06.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_06.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_06.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_06.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_11.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_11.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_11.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_11.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_80.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_80.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/724_80.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/724_80.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_01.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_01.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_01.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_01.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_03.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_03.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_03.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_03.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_09.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_09.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_09.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_09.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_23.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_23.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/730_23.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/730_23.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_101.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_101.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_101.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_101.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_103.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_103.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_103.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_103.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_111.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_111.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_111.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_111.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_123.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_123.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_123.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_123.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_130.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_130.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/732_130.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/732_130.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/734_04.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/734_04.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/734_04.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/734_04.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/740_00.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/740_00.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/740_00.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/740_00.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/744_02.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/744_02.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/744_02.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/744_02.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_07.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_07.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_07.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_07.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_10.conf b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_10.conf
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/apncfg/748_10.conf
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/apncfg/748_10.conf
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/DigiCertGlobalRootG3.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Entrust.net_Certification_Authority_2048.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_PCA_G3_Root.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GeoTrust_Primary_CA_G2_ECC.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GlobalSign_root_CA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/GlobalSign_root_CA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root-R3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root-R3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root-R3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root-R3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root_CA_1003.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root_CA_1003.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/Root_CA_1003.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/Root_CA_1003.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G4.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G4.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G4.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G4.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G5.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G5.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignClass3G5.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignClass3G5.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/VeriSignUniversalRootCertification.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/thawte.der b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/thawte.der
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/ikev2/thawte.der
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/ikev2/thawte.der
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/AAACertificateServices.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/AAACertificateServices.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/AAACertificateServices.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/AAACertificateServices.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumOrganizationValidationCASHA2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumTrustedNetworkCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CertumTrustedNetworkCA.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/CyberTrustJapanPublicCAG3.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertGlobalRootG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DigiCertSHA2SecureServerCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/DomenySslDvCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustCertificationAuthorityL1K.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthority.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/EntrustRootCertificationAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddyRootCertificateAuthorityG2.crt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/GoDaddySecureCertificateAuthorityG2.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/KPN_BV_PKIoverheid_Organisatie_Server_CA-G3_2019.cer
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatDerNederlandenEVRootCA.crt
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenOrganisatieServicesCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/cacerts/tls/StaatderNederlandenRootCA-G3.cer
Binary files differ
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/78.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/78.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/78.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/78.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/80.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/80.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/80.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/80.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/82.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/82.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/82.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/82.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/83.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/83.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/83.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/83.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/84.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/84.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/84.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/84.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/86.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/86.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/86.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/86.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/88.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/88.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/88.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/88.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/90.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/90.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/90.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/90.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/93.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/93.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/93.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/93.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/94.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/94.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/94.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/94.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/95.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/95.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/95.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/95.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/97.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/97.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/2/97.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/2/97.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/62.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/62.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/62.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/62.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/63.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/63.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/63.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/63.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/64.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/64.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/64.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/64.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/65.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/65.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/65.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/65.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/68.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/68.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/68.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/68.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/74.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/74.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/74.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/74.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/76.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/76.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/3/76.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/3/76.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/00.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/00.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/00.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/00.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/56.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/56.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/56.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/56.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/60.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/60.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/60.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/60.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/66.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/66.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/66.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/66.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/70.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/70.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/70.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/70.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/72.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/72.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/4/72.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/4/72.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/5/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/5/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/03.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/03.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/03.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/03.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/05.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/05.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/05.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/05.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/07.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/07.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/07.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/07.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/09.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/09.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/09.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/09.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/11.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/11.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/11.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/11.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/13.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/13.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/13.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/13.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/15.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/15.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/15.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/15.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/17.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/17.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/17.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/17.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/18.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/18.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/18.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/18.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/19.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/19.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/19.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/19.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/20.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/20.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/20.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/20.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/21.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/21.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/21.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/21.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/23.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/23.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/23.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/23.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/25.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/25.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/25.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/25.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/26.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/26.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/26.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/26.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/27.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/27.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/27.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/27.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/28.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/28.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/28.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/28.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/29.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/29.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/29.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/29.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/31.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/31.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/31.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/31.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/33.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/33.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/33.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/33.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/35.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/35.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/35.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/35.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/37.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/37.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/37.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/37.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/39.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/39.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/39.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/39.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/41.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/41.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/41.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/41.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/42.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/42.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/42.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/42.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/43.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/43.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/43.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/43.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/45.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/45.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/45.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/45.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/47.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/47.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/47.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/47.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/49.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/49.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/49.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/49.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/51.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/51.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/51.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/51.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/52.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/52.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/52.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/52.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/53.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/53.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/53.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/53.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/54.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/54.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/54.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/54.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/55.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/55.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/55.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/55.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/57.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/57.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/57.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/57.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/58.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/58.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/58.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/58.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/59.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/59.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/6/59.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/6/59.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/02.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/02.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/02.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/02.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/04.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/04.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/04.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/04.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/06.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/06.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/06.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/06.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/08.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/08.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/08.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/08.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/10.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/10.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/10.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/10.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/12.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/12.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/12.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/12.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/14.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/14.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/14.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/14.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/16.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/16.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/16.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/16.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/22.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/22.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/22.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/22.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/24.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/24.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/24.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/24.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/30.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/30.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/30.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/30.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/32.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/32.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/32.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/32.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/34.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/34.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/34.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/34.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/36.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/36.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/36.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/36.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/38.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/38.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/38.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/38.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/40.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/40.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/40.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/40.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/44.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/44.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/44.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/44.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/46.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/46.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/46.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/46.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/48.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/48.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/48.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/48.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/50.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/50.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/7/50.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/7/50.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/9/01.txt b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/9/01.txt
similarity index 100%
rename from prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T21_20231007/mddata/plmn/TS25/9/01.txt
rename to prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/mddata/plmn/TS25/9/01.txt
diff --git a/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img
new file mode 100755
index 0000000..058fc7d
--- /dev/null
+++ b/prebuilt/modem/mt2735/MT2735_V02.MP1_MR3_NLWG_T26_20231108/modem.img
Binary files differ
diff --git a/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c b/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
index aaee340..da1ebbe 100644
--- a/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
+++ b/src/bsp/hsm/src/application/bootloader/mt2735/bootloader.c
@@ -320,6 +320,8 @@
 	uint32_t i = 0;
 	int32_t bld_loaded = 0;
 	int32_t ret = BL_OK;
+	int slot = 0; //jb.qi modify for ab_rollback start on 20231117
+	int ret_mark; //jb.qi modify for ab_rollback start on 20231117
 	struct bdev *dev = NULL;
     uint8_t label[MAX_PART_NAME_LEN] = "bl2";
 
@@ -370,6 +372,12 @@
 				break;
 			} else {
 				LOGE("load img a fail\r\n");
+				/*jb.qi modify for ab_rollback start on 20231117*/
+				slot = get_current_slot();
+				LOGD("get_current_slot is %d\r\n", slot);
+				ret_mark = mark_slot_unsuccessful(slot);
+				LOGD("mark_slot_unsuccessful ret is %d\r\n", ret_mark);
+				/*jb.qi modify for ab_rollback end on 20231117*/
 				bl_flash_partition_deinit(boot_device_list[i], device_name);
 			}
 		}
diff --git a/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c b/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
index 68d8dc6..c66daf7 100644
--- a/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
+++ b/src/bsp/hsm/src/middleware/bootloader/bootctrl/bootctrl_api.c
@@ -403,6 +403,33 @@
     return slotp->bl_ver;
 }
 
+/*jb.qi modify for ab_rollback start on 20231117*/
+int mark_slot_unsuccessful(int slot)
+{
+    int ret = -1;
+    AvbABSlotData *slotp;
+    AvbABData metadata;
+
+    if (slot < 0 || slot >= SLOT_COUNT) {
+        return -1;
+    }
+
+    ret = read_write_partition_info(&metadata, READ_PARTITION);
+    if (ret < 0) {
+        return -1;
+    }
+
+    slotp = &metadata.slots[slot];
+    slotp->successful_boot = 0;
+
+    ret = read_write_partition_info(&metadata, WRITE_PARTITION);
+    if (ret < 0) {
+        return -1;
+    }
+
+    return 0;
+}
+/*jb.qi modify for ab_rollback end on 20231117*/
 int check_ab_boot(void) {
     int slot;
 
diff --git a/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h b/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
index 7ee3f7e..c3b3814 100644
--- a/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
+++ b/src/bsp/hsm/src/middleware/bootloader/include/bootctrl.h
@@ -183,6 +183,14 @@
 */
 int get_bl_ver_data(int slot);
 
+/*jb.qi modify for ab_rollback start on 20231117*/
+/**
+* mark_slot_unsuccessful() mark the slot unsuccessful.
+* Returns mark success or fail.
+*/
+int mark_slot_unsuccessful(int slot);
+/*jb.qi modify for ab_rollback end on 20231117*/
+
 /**
  * check_ab_boot() - check ab boot status
  *
diff --git a/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so b/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
index 78b857e..7253f20 100755
--- a/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
+++ b/src/connectivity/gps/2.0/mtk_mnld/mnl/libs/aarch64/libmnl_gnss.so
Binary files differ
diff --git a/src/kernel/linux/v4.19/drivers/lynq_bootctrl/lynq_bootctrl.c b/src/kernel/linux/v4.19/drivers/lynq_bootctrl/lynq_bootctrl.c
index f7169a1..cdb9ae0 100755
--- a/src/kernel/linux/v4.19/drivers/lynq_bootctrl/lynq_bootctrl.c
+++ b/src/kernel/linux/v4.19/drivers/lynq_bootctrl/lynq_bootctrl.c
@@ -19,11 +19,15 @@
 

 int bootctrl_write_metadata(AvbABData *bctrl)

 {

-    int err;

+    int err, ret;

     ssize_t sz, size;

-    char *buf = (char *)bctrl;

+    char *buffer = NULL;

+    char *buf = NULL;

+    AvbABData *metadata;

     struct mtd_info *mtd = NULL;

-    loff_t pos = OFFSETOF_SLOT_SUFFIX;

+    struct erase_info ei = {0};

+    size_t misc_erasesize = 0;

+    //loff_t pos = 0;

 

     if(bctrl == NULL)

     {

@@ -43,11 +47,50 @@
         printk("ERROR: pointer: %d.", err);

         return err;

     }

-

-    size = sizeof(AvbABData);

-

+    misc_erasesize = mtd->erasesize;

+//malloc buffer

+    buffer = (char *)kmalloc(misc_erasesize, GFP_KERNEL);

+    if(buffer == NULL)

+    {

+        printk("ERROR: kmalloc error!");

+        return -1;

+    }

+    buf = buffer;

+    size = misc_erasesize;

+//read one erasesize

     do {

-        err = mtd_write(mtd, pos, size, &sz, buf);

+        ret = mtd_read(mtd, 0, size, &sz, buf);

+        if (sz == 0)

+        {

+            break;

+        }

+        else if (sz < 0)

+        {

+            printk("BOOTCTRL:Error reading metadata file: %ld\n", sz);

+            kfree(buffer);

+            return sz;

+        }

+        size -= sz;

+        buf += sz;

+    } while(size > 0);

+

+    printk("BOOTCTRL: end of read block");

+    size = misc_erasesize;

+    ei.addr = 0;

+    ei.len = mtd->erasesize * 1;

+    err = mtd_erase(mtd, &ei);

+    if(err != 0)

+    {

+        printk("ERROR: mtd_erase: %d.", err);

+        kfree(buffer);

+        return err;

+    }

+    metadata = (AvbABData *)(buffer + OFFSETOF_SLOT_SUFFIX);

+    memcpy(metadata, bctrl, sizeof(AvbABData));

+    buf = buffer;

+//write one erasesize

+    do {

+        err = mtd_write(mtd, 0, size, &sz, buf);

 

         if (err == 0) 

         {

@@ -56,12 +99,14 @@
         else if (err < 0)

         {

             printk("Error Writing metadata file\n");

+            kfree(buffer);

             return err;

         }

         size -= sz;

         buf += sz;

     } while(size > 0);

     printk("BOOTCTRL:write new info to metadata\n");

+    kfree(buffer);

     return 0;

 }

 

diff --git a/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c b/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
old mode 100644
new mode 100755
index a5b1933..5eb0e7c
--- a/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
+++ b/src/kernel/linux/v4.19/drivers/mtd/mtdblock.c
@@ -43,6 +43,7 @@
 	unsigned long cache_offset;
 	unsigned int cache_size;
 	enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
+	unsigned short *block_mapping;
 };
 
 /*
@@ -238,7 +239,22 @@
 			      unsigned long block, char *buf)
 {
 	struct mtdblk_dev *mtdblk = container_of(dev, struct mtdblk_dev, mbd);
-	return do_cached_read(mtdblk, block<<9, 512, buf);
+	struct mtd_info *mtd = dev->mtd;
+	unsigned short target_block, total_blocks;
+	unsigned long pos;
+
+	if (!mtdblk->block_mapping)
+		return do_cached_read(mtdblk, block << 9, 512, buf);
+
+	total_blocks = (unsigned short) ((uint32_t)mtd->size / mtd->erasesize);
+	target_block = mtdblk->block_mapping[(block << 9) / mtd->erasesize];
+	if (target_block >= total_blocks)
+		return -EIO;
+
+	pos = target_block * mtdblk->mbd.mtd->erasesize +
+		((block << 9) & (mtdblk->mbd.mtd->erasesize - 1));
+	return do_cached_read(mtdblk, pos, 512, buf);
+
 }
 
 static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
@@ -260,6 +276,8 @@
 static int mtdblock_open(struct mtd_blktrans_dev *mbd)
 {
 	struct mtdblk_dev *mtdblk = container_of(mbd, struct mtdblk_dev, mbd);
+	struct mtd_info *mtd = mbd->mtd;
+	unsigned short total_blocks;
 
 	pr_debug("mtdblock_open\n");
 
@@ -277,6 +295,26 @@
 		mtdblk->cache_data = NULL;
 	}
 
+	total_blocks = (unsigned short) ((uint32_t)mtd->size / mtd->erasesize);
+	mtdblk->block_mapping =
+		vmalloc(total_blocks * sizeof(mtdblk->block_mapping[0]));
+	if (mtdblk->block_mapping) {
+		unsigned short i, idx = 0;
+
+		memset(mtdblk->block_mapping, 0xFF,
+		       total_blocks * sizeof(mtdblk->block_mapping[0]));
+		for (i = 0; i < total_blocks; i++) {
+			if (mtd->_block_isbad(mtd, i * mtd->erasesize)) {
+				pr_info("MTDBLOCK%d: block %d is bad\n",
+				       mtd->index, i);
+				continue;
+			}
+
+			mtdblk->block_mapping[idx] = i;
+			idx++;
+		}
+	}
+
 	pr_debug("ok\n");
 
 	return 0;
@@ -300,6 +338,11 @@
 		if (mbd->file_mode & FMODE_WRITE)
 			mtd_sync(mbd->mtd);
 		vfree(mtdblk->cache_data);
+
+		if (mtdblk->block_mapping) {
+			vfree(mtdblk->block_mapping);
+			mtdblk->block_mapping = NULL;
+		}
 	}
 
 	pr_debug("ok\n");
diff --git a/src/kernel/linux/v4.19/drivers/net/phy/phy.c b/src/kernel/linux/v4.19/drivers/net/phy/phy.c
index b9d8bd7..a52cf9b 100644
--- a/src/kernel/linux/v4.19/drivers/net/phy/phy.c
+++ b/src/kernel/linux/v4.19/drivers/net/phy/phy.c
@@ -884,6 +884,9 @@
 	 * of rtnl_lock(), but PHY_HALTED shall guarantee phy_change()
 	 * will not reenable interrupts.
 	 */
+/*xf.li@20231117 add for API-1429 start*/
+	phy_state_machine(&phydev->state_queue.work);
+/*xf.li@20231117 add for API-1429 end*/
 }
 EXPORT_SYMBOL(phy_stop);
 
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
index ea2fdf2..a99cf49 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/Makefile
@@ -51,6 +51,9 @@
 endif
 DHDCFLAGS += $(call cc-disable-warning, date-time)
 DHDCFLAGS += $(call cc-disable-warning, stringop-overflow)
+# ifx apply patch to disable twt   20231116
+DHDCFLAGS += -DCUSTOM_CONTROL_TWT_DISABLE
+# ifx apply patch to disable twt   20231116 end
 
 #################
 # Common feature
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
index 3d14f18..cc9bb24 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd.h
@@ -3498,6 +3498,11 @@
 #ifdef CUSTOM_CONTROL_OCE_DISABLE
 extern int dhd_control_oce_enab(dhd_pub_t * dhd, uint8 oce_enab);
 #endif /* CUSTOM_CONTROL_OCE_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+int dhd_control_twt_enab(dhd_pub_t * dhd, uint8 twt_enab);
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong end
 
 #if defined(BCMSDIO)
 void dhd_set_role(dhd_pub_t *dhdp, int role, int bssidx);
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
index d56ea16..3019956 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_common.c
@@ -7993,3 +7993,37 @@
 	return ret;
 }
 #endif /* CUSTOM_CONTROL_OCE_DISABLE */
+
+// apply ifx patch to disable twt 20231116
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+int
+dhd_control_twt_enab(dhd_pub_t * dhd, uint8 twt_enab)
+{
+	int ret = BCME_OK;
+	bcm_xtlv_t *pxtlv = NULL;
+	uint8 mybuf[DHD_IOVAR_BUF_SIZE];
+	uint16 mybuf_len = sizeof(mybuf);
+	pxtlv = (bcm_xtlv_t *)mybuf;
+
+	ret = bcm_pack_xtlv_entry((uint8**)&pxtlv, &mybuf_len, WL_TWT_CMD_ENAB, sizeof(twt_enab),
+			&twt_enab, BCM_XTLV_OPTION_ALIGN32);
+
+	if (ret != BCME_OK) {
+		ret = -EINVAL;
+		DHD_ERROR(("%s failed to pack twt enab, err: %s\n", __FUNCTION__, bcmerrorstr(ret)));
+		return ret;
+	}
+
+	ret = dhd_iovar(dhd, 0, "twt", (char *)&mybuf, sizeof(mybuf), NULL, 0, TRUE);
+	if (ret < 0) {
+		DHD_ERROR(("%s twt_enab (%d) set failed, err: %s\n",
+			__FUNCTION__, twt_enab, bcmerrorstr(ret)));
+	} else {
+		DHD_ERROR(("%s twt_enab (%d) set successed\n", __FUNCTION__, twt_enab));
+	}
+
+	return ret;
+}
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong 20231116
+
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
index 1d0bdc4..ae8d899 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.c
@@ -61,6 +61,7 @@
 #include <linux/notifier.h>
 #include <linux/irq.h>
 #include <net/addrconf.h>
+#include <net/ra_nat.h>
 #ifdef ENABLE_ADAPTIVE_SCHED
 #include <linux/cpufreq.h>
 #endif /* ENABLE_ADAPTIVE_SCHED */
@@ -70,6 +71,9 @@
 #include <asm/unaligned.h>
 #include <dhd_linux_priv.h>
 
+#include <linux/kthread.h>
+#include <linux/sched.h>
+#include <linux/workqueue.h>
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0))
 #include <uapi/linux/sched/types.h>
 #endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) */
@@ -3577,7 +3581,14 @@
 	uint8 htsfdlystat_sz = 0;
 
 	DHD_TRACE(("%s: Enter\n", __FUNCTION__));
-
+	
+	if (ppe_hook_tx_wifi) {
+		 if (ppe_hook_tx_wifi(skb, 0) == 0) {
+			 //printk("morris ppe_hook_tx_wifi debug");
+				dev_kfree_skb_any(skb);
+				return NETDEV_TX_OK;
+		 }
+	}
 	if (dhd_query_bus_erros(&dhd->pub)) {
 #ifdef CFI_CHECK
 		return NETDEV_TX_BUSY;
@@ -4990,11 +5001,32 @@
 			bcm_object_trace_opr(skb, BCM_OBJDBG_REMOVE,
 				__FUNCTION__, __LINE__);
 			DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+
+			 //printk(KERN_CONT "*****rxthread_enabled*******\n");
+			if (ppe_hook_rx_wifi){
+				FOE_MAGIC_TAG(skb) = FOE_MAGIC_WLAN;
+				if (ppe_hook_rx_wifi(skb)) {
+					 //printk("\n\n===========WiFi semi acceleration lss==================\n\n");
 #if defined(DHD_LB_RXP)
 			netif_receive_skb(skb);
 #else /* !defined(DHD_LB_RXP) */
+			//printk("\n\n===========WiFi semi acceleration lss2xx22==================\n\n");
 			netif_rx(skb);
 #endif /* !defined(DHD_LB_RXP) */
+	}
+	  }
+	if (!ppe_hook_rx_wifi){
+
+		#if defined(DHD_LB_RXP)
+			//printk("\n\n===========WiFi semi acceleration lss2333333333333xx22==================\n\n");
+			netif_receive_skb(skb);
+		#else /* !defined(DHD_LB_RXP) */
+			 //printk("\n\n===========WiFi semi acceleration ls==================\n\n");
+			netif_rx(skb);
+		#endif /* !defined(DHD_LB_RXP) */
+		 }
+		//printk("\n\n===========Receiving==================\n\n");
+
 			DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
 		} else {
 			if (dhd->rxthread_enabled) {
@@ -5021,11 +5053,36 @@
 		dhd_tcpack_suppress_set(&dhd->pub, TCPACK_SUP_OFF);
 #endif /* BCMPCIE && DHDTCPACK_SUPPRESS */
 				DHD_PERIM_UNLOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
+	if (ppe_hook_rx_wifi) {
+                FOE_MAGIC_TAG(skb) = FOE_MAGIC_WLAN;
+                if (ppe_hook_rx_wifi(skb)) {
+		//printk("\n\n===========Receivingxx==================\n\n");
+
 #if defined(DHD_LB_RXP)
+		//printk("\n\n===========Receivingxxxx================\n\n");
+
 				netif_receive_skb(skb);
 #else /* !defined(DHD_LB_RXP) */
+		//printk("\n\n===========Receivingxxxxxxx1111==================\n\n");
+
 				netif_rx_ni(skb);
 #endif /* defined(DHD_LB_RXP) */
+	}
+	}
+		  if (!ppe_hook_rx_wifi){
+		//printk("\n\n===========Receiving22222==================\n\n");
+
+ #if defined(DHD_LB_RXP)
+		//printk("\n\n===========Receiving555555==================\n\n");
+
+                       netif_receive_skb(skb);
+ #else /* !defined(DHD_LB_RXP) */
+			//printk("\n\n===========Receiving=66666=================\n\n");
+                       netif_rx_ni(skb);
+ #endif /* !defined(DHD_LB_RXP) */
+
+     }
+
 				DHD_PERIM_LOCK_ALL((dhd->fwder_unit % FWDER_MAX_UNIT));
 			}
 		}
@@ -11231,6 +11288,11 @@
 #ifdef CUSTOM_CONTROL_OCE_DISABLE
 	dhd_control_oce_enab(dhd, FALSE);
 #endif /* CUSTOM_CONTROL_OCE_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong
+#ifdef CUSTOM_CONTROL_TWT_DISABLE
+	dhd_control_twt_enab(dhd, FALSE);
+#endif /* CUSTOM_CONTROL_TWT_DISABLE */
+// apply ifx patch to disable twt 20231116 qs.xiong end
 
 #ifdef CUSTOM_PSPRETEND_THR
 	/* Turn off MPC in AP mode */
@@ -12477,6 +12539,19 @@
 		goto fail;
 	}
 
+	else {
+
+                if (ppe_dev_register_hook != NULL){
+                      // printk("\n\nppe_dev_register_hook\n\n");
+                       ppe_dev_register_hook(net);
+		}
+		else{
+
+		}
+
+       }
+
+
 	printf("Register interface [%s]  MAC: "MACDBG"\n\n", net->name,
 #if defined(CUSTOMER_HW4_DEBUG)
 		MAC2STRDBG(dhd->pub.mac.octet));
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.h b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.h
index 53a727a..3bea861 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.h
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_linux.h
@@ -402,6 +402,11 @@
 int dhd_get_fw_mode(struct dhd_info *dhdinfo);
 bool dhd_update_fw_nv_path(struct dhd_info *dhdinfo);
 
+extern int (*ppe_hook_rx_wifi)(struct sk_buff *skb);
+extern int (*ppe_hook_tx_wifi)(struct sk_buff *skb, int gmac_no);
+extern void (*ppe_dev_register_hook)(struct net_device *dev);
+extern void (*ppe_dev_unregister_hook)(struct net_device *dev);
+
 #if defined(BT_OVER_SDIO)
 int dhd_net_bus_get(struct net_device *dev);
 int dhd_net_bus_put(struct net_device *dev);
diff --git a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_msgbuf.c b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_msgbuf.c
index 26638d4..b8ac453 100755
--- a/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_msgbuf.c
+++ b/src/kernel/linux/v4.19/drivers/net/wireless/bcmdhd/dhd_msgbuf.c
@@ -4538,6 +4538,8 @@
 			break;
 		}
 
+		//printk("\n\n===========WiFi semi acceleration lsslxy009==================\n\n"); 
+		skb_reserve((struct sk_buff*)p, NET_SKB_PAD+4);
 		pktlen[i] = PKTLEN(dhd->osh, p);
 		if (SECURE_DMA_ENAB(dhd->osh)) {
 			pa = SECURE_DMA_MAP(dhd->osh, PKTDATA(dhd->osh, p), pktlen[i],
diff --git a/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c b/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
index ca78b03..6846443 100755
--- a/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
+++ b/src/kernel/linux/v4.19/drivers/soc/mediatek/mtk-scpsys.c
@@ -1413,7 +1413,13 @@
 		    strcmp(genpd->name, "conn") == 0) {
 			on = false;
 			dev_err(&pdev->dev, "Skip %s pwr_on\n", genpd->name);
-		} else {
+		} 
+		/*jb.qi add for sleep 20ma becaluse audio on 20231110 start*/
+		else if (strcmp(genpd->name,"audio")==0) {
+			dev_err(&pdev->dev, "Skip audio pwr_on \n");
+		}
+		/*jb.qi add for sleep 20ma becaluse audio on 20231110 end*/
+		else {
 			on = !WARN_ON(genpd->power_on(genpd) < 0);
 		}
 
diff --git a/src/kernel/linux/v4.19/net/wireless/nl80211.c b/src/kernel/linux/v4.19/net/wireless/nl80211.c
index ae91a89..67f8a3a 100644
--- a/src/kernel/linux/v4.19/net/wireless/nl80211.c
+++ b/src/kernel/linux/v4.19/net/wireless/nl80211.c
@@ -9569,6 +9569,7 @@
 
 	err = cfg80211_connect(rdev, dev, &connect, connkeys,
 			       connect.prev_bssid);
+	printk("DeBugAssoc cfg80211_conenct return %d  nl80211.c %s %d",err,__func__,__LINE__);
 	if (err)
 		kzfree(connkeys);
 
diff --git a/src/lynq/framework/lynq-ril-service/src/mtk_ril_commands.h b/src/lynq/framework/lynq-ril-service/src/mtk_ril_commands.h
index eb1f8d0..4b10fce 100755
--- a/src/lynq/framework/lynq-ril-service/src/mtk_ril_commands.h
+++ b/src/lynq/framework/lynq-ril-service/src/mtk_ril_commands.h
@@ -78,7 +78,9 @@
 { RIL_REQUEST_MODEM_POWEROFF,dispatchVoid,responseVoid},
 { RIL_REQUEST_MODEM_POWERON,dispatchVoid,responseVoid},
 //SIM
-{ RIL_REQUEST_QUERY_ICCID, dispatchVoid, responseString},
+//xf.li@20231120 modify for T8TSK-291 start
+{ RIL_REQUEST_QUERY_ICCID, dispatchVoid, responseStringNoLog},
+//xf.li@20231120 modify for T8TSK-291 end
 //Keepalive
 #ifdef KEEP_ALIVE
 { RIL_REQUEST_START_KEEPALIVE_PRO,dispatchStartKeepalivePro,responseInts},
diff --git a/src/lynq/framework/lynq-ril-service/src/ril.cpp b/src/lynq/framework/lynq-ril-service/src/ril.cpp
index 011a083..db7d129 100755
--- a/src/lynq/framework/lynq-ril-service/src/ril.cpp
+++ b/src/lynq/framework/lynq-ril-service/src/ril.cpp
@@ -304,6 +304,9 @@
 static int responseFailCause(Parcel &p, void *response, size_t responselen);
 static int responseStrings(Parcel &p, void *response, size_t responselen);
 static int responseString(Parcel &p, void *response, size_t responselen);
+//xf.li@20231120 modify for T8TSK-291 start
+static int responseStringNoLog(Parcel &p, void *response, size_t responselen);
+//xf.li@20231120 modify for T8TSK-291 end
 static int responseVoid(Parcel &p, void *response, size_t responselen);
 static int responseCallList(Parcel &p, void *response, size_t responselen);
 static int responseSMS(Parcel &p, void *response, size_t responselen);
@@ -366,7 +369,10 @@
 void initRequestInfo(RequestInfo *pRI, int  request, int mode, RIL_SOCKET_ID soc_id);
 void getVoiceAndDataRegistrationState(RIL_SOCKET_ID soc_id);
 const int waitResponse(int token);
-
+//xf.li@20231120 modify for T8TSK-291 start
+static void encode_log(char str[], int n);
+static void decode_log(char str[], int n);
+//xf.li@20231120 modify for T8TSK-291 end
 #ifdef RIL_SHLIB
 #if defined(ANDROID_MULTI_SIM)
 extern "C" void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
@@ -2162,7 +2168,20 @@
     writeStringToParcel(p, (const char *)response);
     return 0;
 }
+//xf.li@20231120 modify for T8TSK-291 start
+static int responseStringNoLog(Parcel &p, void *response, size_t responselen) {
+    /* one string only */
+    startResponse;
+    char log_buf[512] = {0};
+    snprintf(log_buf, sizeof(log_buf), "%s", (char*)response);
+    encode_log(log_buf, 6);
+//    appendPrintBuf("%s%s", printBuf, "(has got)");
+    closeResponse;
 
+    writeStringToParcel(p, (const char *)response);
+    return 0;
+}
+//xf.li@20231120 modify for T8TSK-291 end
 static int responseVoid(Parcel &p, void *response, size_t responselen) {
     startResponse;
     removeLastChar;
@@ -2509,11 +2528,99 @@
     }
 
     startResponse;
-    appendPrintBuf("%slen=%d,%s", printBuf, responselen, (char*)response);
+    //xf.li@20231120 modify for T8TSK-291 start 
+    char log_buf[512] = {0};
+    if(strncmp("+CNUM:", (char*)response, strlen("+CNUM:")) == 0)
+    {
+        snprintf(log_buf, sizeof(log_buf), "len=%d,%s", responselen, (char*)response);
+        encode_log(log_buf, 6);
+    }
+    else
+    {
+        appendPrintBuf("%slen=%d,%s", printBuf, responselen, (char*)response);
+    }
+    //xf.li@20231120 modify for T8TSK-291 end
     closeResponse;
     return 0;
 }
+//xf.li@20231120 modify for T8TSK-291 start
+static void string_to_hex(unsigned char *Buff, unsigned int BuffLen, char *OutputStr)
+{
+    int i = 0;
+    char TempBuff[512*2 + 1] = {0};
+    char strBuff[512*2 + 1] = {0};
 
+    if(BuffLen > 512)
+    {
+        RLOGD("string_to_hex error!");
+        return;
+    }
+    for(i = 0; i<BuffLen;i++)
+    {
+        sprintf(TempBuff,"%02x",(unsigned char)Buff[i]);
+        strncat(strBuff,TempBuff,BuffLen*2);
+    }
+    strncpy(OutputStr, strBuff, BuffLen*2);
+    return;
+}
+
+static void encode_log(char input_str[], int n)
+{
+    char c;
+    int i;
+    char str[512*2 + 1] = {0};
+    string_to_hex((unsigned char *)input_str, strlen(input_str), str);
+    for( i=0; i<strlen(str); i++)
+    {
+        c = str[i];
+        if(c>=' ' && c <= 'z')
+        {
+            if(c + n%90 <= 'z')
+            { 
+                str[i] = (char)(c + n%90);  //encode
+            }
+            else
+            {  //After encoding, the space beyond the end reaches ‘z’, and the cycle starts from the beginning.
+                str[i] = (char)(c + n%90 - 90);//encode
+            }
+        }
+        else
+        {
+            str[i]=c;
+        }
+    }
+
+    appendPrintBuf("%s%s", printBuf, str);
+}
+//decode() only for analysis log
+static void decode_log(char str[], int n)
+{
+    char c;
+    int i;
+    
+    for(i=0; i<strlen(str); i++)
+    {
+        c=str[i];
+        
+        if(c >= ' ' && c <= 'z')
+        {
+            if(c - n%90 >= ' ')
+            {
+                str[i] = (char)(c - n%90); //decode
+            }
+            else
+            {
+                //After decoding, there are over spaces until ‘z’, and the lowercase letters are processed into printable information by looping
+                str[i] = (char)(c - n%90 + 90); //decode
+            }
+        }
+        else
+        {
+            str[i]=c;
+        }
+    }
+}
+//xf.li@20231120 modify for T8TSK-291 end
 
 static int responseSIM_IO(Parcel &p, void *response, size_t responselen) {
     if (response == NULL) {
@@ -5715,7 +5822,7 @@
 {
     char *pos, *pos2;
     int argc = 0;
-    printf("warren test cmd=%s\n",cmd);
+    printf("LYNQ_REQUEST cmd=%s\n",cmd);
     pos = cmd;
     while (1) {
         // Trim the space characters.
@@ -6016,7 +6123,7 @@
                     argc = argc+1;
                     for(int t = 0;t<argc;t++)
                     {
-                        RLOGD("warren test argv[%d]=%s\n",t,argv[t]);
+                        RLOGD("LYNQ_REQUEST argv[%d]=%s\n",t,argv[t]);
                     }
                     COMMAND *command = find_command(argv[0]);
                     if(!command)
diff --git a/src/lynq/framework/lynq-ril-service/src/ril_commands.h b/src/lynq/framework/lynq-ril-service/src/ril_commands.h
index 85878ee..362bb7d 100755
--- a/src/lynq/framework/lynq-ril-service/src/ril_commands.h
+++ b/src/lynq/framework/lynq-ril-service/src/ril_commands.h
@@ -25,7 +25,9 @@
     {RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION, dispatchStrings, responseInts},
     {RIL_REQUEST_GET_CURRENT_CALLS, dispatchVoid, responseCallList},
     {RIL_REQUEST_DIAL, dispatchDial, responseVoid},
-    {RIL_REQUEST_GET_IMSI, dispatchStrings, responseString},
+    //xf.li@20231120 modify for T8TSK-291 start
+    {RIL_REQUEST_GET_IMSI, dispatchStrings, responseStringNoLog},
+    //xf.li@20231120 modify for T8TSK-291 end
     {RIL_REQUEST_HANGUP, dispatchInts, responseVoid},
     {RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND, dispatchVoid, responseVoid},
     {RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND, dispatchVoid, responseVoid},
diff --git a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
index e007262..4d5c7ee 100755
--- a/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
+++ b/src/lynq/framework/lynq-sdk-ready/src/timer/lynq_timer.cpp
@@ -397,14 +397,14 @@
     {

         RLOGD("@@@@@@@num=%d\n", num);

         flag = 0;

-        ret[0] = system("uci show | grep \"lynq_uci.lynq_ril\"");

+        ret[0] = system("uci show | grep \"lynq_uci.lynq_ril\" > /dev/null");

         if(ret[0] != 0)

         {

             RLOGD("lynq_uci unload\n");

             flag = 1;

         }

 

-        ret[1] = system("uci show | grep \"^lynq_uci_ro\.\"");

+        ret[1] = system("uci show | grep \"^lynq_uci_ro\.\" > /dev/null");

         if(ret[1] != 0)

         {

             RLOGD("lynq_uci_ro unload\n");

@@ -418,21 +418,21 @@
             flag = 1;

         }

 

-        ret[3] = system("uci show | grep \"^radio_property\.\"");

+        ret[3] = system("uci show | grep \"^radio_property\.\" > /dev/null");

         if(ret[3] != 0)

         {

             RLOGD("radio_property unload\n");

             flag = 1;

         }

 

-        ret[4] = system("uci show | grep \"^service\.\"");

+        ret[4] = system("uci show | grep \"^service\.\" > /dev/null");

         if(ret[4] != 0)

         {

             RLOGD("service unload\n");

             flag = 1;

         }

 

-        ret[5] = system("uci show | grep \"^usb\.\"");

+        ret[5] = system("uci show | grep \"^usb\.\" > /dev/null");

         if(ret[5] != 0)

         {

             RLOGD("usb unload\n");

@@ -444,7 +444,7 @@
         {

             RLOGD("config reload\n");

             result = chdir("/data_backup/");

-            result =system("tar -zxvf userdata.tar.gz -C /STATE/");

+            result =system("tar -zxvf userdata.tar.gz -C /STATE/ >/dev/null");

             if(result!= 0)

             {

                 RLOGD("cp config fail\n");

diff --git a/src/lynq/lib/liblynq-wifi6/libwifi6.c b/src/lynq/lib/liblynq-wifi6/libwifi6.c
index 0a5a4e3..e99ff0d 100755
--- a/src/lynq/lib/liblynq-wifi6/libwifi6.c
+++ b/src/lynq/lib/liblynq-wifi6/libwifi6.c
@@ -1756,6 +1756,37 @@
 
     return ret;
 }
+/*
+ *add func to get conencted STA device ip from dnsmasq ap0.lease
+ *return 0 means get ip success
+ */
+static int inner_get_ip_by_mac_lease(const char * mac, char * ip,int ip_len)
+{
+    char * p;
+    int ret;
+    char cmd[256]={0};
+    if (NULL == mac || NULL == ip)
+        return -1;
+    memset(ip, 0, ip_len);
+    sprintf(cmd, "cat /run/wg870/ap0.lease | grep \"%s\" | awk '{print $3}'", mac);
+    ret = exec_cmd(cmd, ip, ip_len);
+    if( ret == 0 )
+    {
+        p = strchr(ip, '\n');
+        if (NULL != p)
+        {
+            *p = '\0';
+            RLOGD("inner_get_ip_by_mac_lease %s function return is:%d", ip,ret);
+            return ret;
+        }else
+        {
+            ret = -1;
+        }
+    }
+    RLOGD("%s %d function return is:%d",__func__,__LINE__,ret);
+    return ret;
+
+}
 
 static int inner_get_ip_by_mac(const char * mac, char * ip, int ip_len)
 {
@@ -1771,6 +1802,9 @@
     if (NULL != p)
     {
         *p = '\0';
+    }else
+    {
+	ret = inner_get_ip_by_mac_lease(mac,ip,ip_len);
     }
     RLOGD("inner_get_ip_by_mac %s\n", ip);
     return ret;
@@ -2213,7 +2247,7 @@
     char lynq_wifi_frequency_cmd[128]={0};
     char lynq_cmd_mode[128]={0};
     char lynq_cmd_slect[128]={0};
-    RLOGD("enter lynq_wifi_ap_frequency_set and input frequency is:%d", lynq_wifi_frequency);
+    RLOGD("enter %s %d input frequency:%d",__func__,__LINE__,lynq_wifi_frequency);
     //@do check input frequency
     check = lynq_check_set_frequency(lynq_wifi_frequency);
     if(check != 0)
@@ -2247,6 +2281,7 @@
     DO_OK_FAIL_REQUEST(lynq_cmd_mode);
     DO_OK_FAIL_REQUEST(cmd_save_config);
 //@ tmp do down/up to fix 5G AP turn to 2.4G cannot be conenct
+
     system("wl down");
     system("wl up");
     RLOGD("[%s] -- run cmd down/up --%d",__func__,__LINE__);
@@ -2678,13 +2713,10 @@
 
 int lynq_wifi_ap_start(lynq_wifi_index_e idx)
 {
-    RLOGD("[lynq_wifi]----enter lynq_wifi_ap_start");
+    RLOGD("enter %s %d",__func__,__LINE__);
     char LYNQ_WIFI_CMD[128]={0};
-    //const char *lynq_remove_all_cmd = "REMOVE_NETWORK all";
-    //const char *lynq_reconfig_cmd = "RECONFIGURE /data/wifi/wg870/wpa_supplicant.conf";
-    RLOGD("enter lynq_wifi_ap_channel_get");
-    CHECK_IDX(idx, CTRL_AP);
 
+    CHECK_IDX(idx, CTRL_AP);
     CHECK_WPA_CTRL(CTRL_AP);
 
     if (inner_get_ap_interface_name() == NULL)
@@ -2693,8 +2725,6 @@
         return -1;
     }
 
-    //DO_OK_FAIL_REQUEST(lynq_remove_all_cmd);
-    //DO_OK_FAIL_REQUEST(lynq_reconfig_cmd);
 
     sprintf(LYNQ_WIFI_CMD,"SELECT_NETWORK %d",AP_NETWORK_0);
     DO_OK_FAIL_REQUEST(LYNQ_WIFI_CMD);
@@ -2722,8 +2752,8 @@
         }
         RLOGD("[lynq_wifi_ap_start] creat APTmpWatcherThreadProc ok");
     }
-    RLOGD("[lynq_wifi]----end lynq_wifi_ap_start");
 
+    RLOGD("end %s %d",__func__,__LINE__);
     return 0;
 }
 
@@ -2734,6 +2764,7 @@
 
 int lynq_wifi_ap_stop(lynq_wifi_index_e idx)
 {
+    RLOGD("enter %s %d",__func__,__LINE__);
     char LYNQ_WIFI_CMD[128]={0};
 
     CHECK_IDX(idx, CTRL_AP);
@@ -2744,7 +2775,6 @@
 
     DO_OK_FAIL_REQUEST(LYNQ_WIFI_CMD);
 
-//    system("connmanctl tether wifi off");
 
     ret = system_call_v("%s %s", start_stop_ap_script, "stop");
     if (ret != 0)
@@ -2757,6 +2787,7 @@
         pthread_join(g_ap_tmp_watcher_pid, NULL);
     g_ap_tmp_watcher_pid = 0;
 
+    RLOGD("end %s %d",__func__,__LINE__);
     return 0;
 }
 
@@ -3118,10 +3149,8 @@
                 {
                     if (memcmp(ssid + 1, ap->ap_ssid, strlen(ap->ap_ssid)) == 0 && ssid[strlen(ap->ap_ssid) + 1] == '\"')
                     {
-                        RLOGD("-----curr_get ssid form config is %s",ssid);
                         break;
                     }
-                    RLOGD("-----countine to find dest ssid %s ---curr_get ssid from config is %s",ap->ap_ssid,ssid);
                 }
                 else
                 {
@@ -3135,7 +3164,6 @@
                         }
                         if (memcmp(tmp_ssid, ap->ap_ssid, ssid_len) == 0)
                         {
-                            RLOGD("curr_ssid is(from config)   ---- %s  ap_info ssid --->",tmp_ssid,ap->ap_ssid);
                             break;
                         }
                     }
@@ -3157,7 +3185,6 @@
         for( index=0; index < count; index++ )
         {
             p = strstr(split_lines[index], "key_mgmt=");
-            RLOGD("current p str ------- %s",p);
             if(p != NULL)
             {
                 p += 9;
@@ -3176,7 +3203,6 @@
                 }else{
                         curr_auth = 1;
                     }
-                RLOGD("************curret_get_auth is %d   ssid is %s",curr_auth,ap->ap_ssid);
                 if( curr_auth < 1 || curr_auth > 6)
                 {
                     ret = -1;
@@ -3224,7 +3250,6 @@
                     if (*password == '\"')
                     {
                         *password = '\0';
-                        RLOGD("---------password------- p:: %s",p);
                         ret = 0;
                         break;
                     }
@@ -3882,17 +3907,13 @@
 
 int lynq_wifi_sta_stop(lynq_wifi_index_e idx)
 {
-//    char lynq_disable_network_cmd[MAX_CMD];
-//    curr_status_info curr_state;
-//    ap_info_s ap_info;
+    RLOGD("enter %s %d",__func__,__LINE__);
     int i=0;
     char state[MAX_CMD];
 
-//    const char * lynq_disable_sta_cmd = "wpa_cli -iwpa_wlan0_cmd -p/var/run/ IFNAME=wlan0 disable_net all";
     CHECK_IDX(idx, CTRL_STA);
     CHECK_WPA_CTRL(CTRL_STA);
 
-//    system(lynq_disable_sta_cmd);
     DO_OK_FAIL_REQUEST(cmd_disconnect);
     DO_OK_FAIL_REQUEST(cmd_save_config);
 
@@ -3920,6 +3941,7 @@
     pthread_mutex_lock(&s_global_check_mutex);
     g_history_disconnect_valid_num = 0;   //clean history_disconenct_list info
     pthread_mutex_unlock(&s_global_check_mutex);
+    RLOGD("end %s %d",__func__,__LINE__);
     return 0;
 //    return system("connmanctl disable wifi");
 }
@@ -4290,15 +4312,18 @@
 }
 
 int lynq_unreg_ap_event_callback(void * priv) {
+    RLOGD("enter %s %d",__func__,__LINE__);
     pthread_mutex_lock(&s_ap_callback_mutex);
     if (g_ap_callback_priv == priv)
     {
         g_ap_callback_func = NULL;
         g_ap_callback_priv = NULL;
         pthread_mutex_unlock(&s_ap_callback_mutex);
+	RLOGD("unreg ap callback pass %s %d",__func__,__LINE__);
         return 0;
     }
     pthread_mutex_unlock(&s_ap_callback_mutex);
+    RLOGE("unreg ap callback fail %s %d",__func__,__LINE__);
     return -1;
 }
 
@@ -4331,15 +4356,18 @@
 }
 
 int lynq_unreg_sta_event_callback(void * priv) {
+    RLOGD("enter %s %d",__func__,__LINE__);
     pthread_mutex_lock(&s_sta_callback_mutex);
     if (g_sta_callback_priv == priv)
     {
         g_sta_callback_func = NULL;
         g_sta_callback_priv = NULL;
         pthread_mutex_unlock(&s_sta_callback_mutex);
+        RLOGD("unreg sta callback pass  %s %d",__func__,__LINE__);
         return 0;
     }
     pthread_mutex_unlock(&s_sta_callback_mutex);
+    RLOGE("unreg sta callback fail  %s %d",__func__,__LINE__);
     return -1;
 }
 
diff --git a/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c b/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
index 9434891..dbee70c 100755
--- a/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
+++ b/src/lynq/packages/thirdpart/lynq-wg870/src/drivers/driver_nl80211.c
@@ -6901,6 +6901,7 @@
 		os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
 
 	ret = wpa_driver_nl80211_try_connect(drv, params, bss);
+	wpa_printf(MSG_INFO,"DebugAssoc wpa_friver_nl80211_try_conenct ret %d %s %d",ret,__func__,__LINE__);
 	if (ret == -EALREADY) {
 		wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
 			   "disconnecting before reassociation "
@@ -6947,7 +6948,7 @@
 
 	nl80211_mark_disconnected(drv);
 
-	wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
+	wpa_printf(MSG_INFO, "nl80211: Associate (ifindex=%d)",
 		   drv->ifindex);
 	msg = nl80211_drv_msg(drv, 0, NL80211_CMD_ASSOCIATE);
 	if (!msg)
@@ -6980,17 +6981,19 @@
 	ret = send_and_recv_msgs_connect_handle(drv, msg, drv->first_bss, 1);
 	msg = NULL;
 	if (ret) {
-		wpa_dbg(drv->ctx, MSG_DEBUG,
+		wpa_printf(MSG_INFO,"DebugAssoc : nl80211: MLME command failed %s %d",__func__,__LINE__);
+		wpa_dbg(drv->ctx, MSG_INFO,
 			"nl80211: MLME command failed (assoc): ret=%d (%s)",
 			ret, strerror(-ret));
 		nl80211_dump_scan(drv);
 	} else {
-		wpa_printf(MSG_DEBUG,
+		wpa_printf(MSG_INFO,
 			   "nl80211: Association request send successfully");
 	}
 
 fail:
 	nlmsg_free(msg);
+	wpa_printf(MSG_INFO,"Debug_Assoc %s %d return failed",__func__,__LINE__);
 	return ret;
 }
 
diff --git a/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c b/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
index 574e6e6..9c35d94 100755
--- a/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
+++ b/src/lynq/packages/thirdpart/lynq-wg870/wpa_supplicant/wpa_supplicant.c
@@ -4753,11 +4753,12 @@
 #ifdef CONFIG_SAE
 	params.sae_pwe = wpa_s->conf->sae_pwe;
 #endif /* CONFIG_SAE */
-
-	ret = wpa_drv_associate(wpa_s, &params);
+        wpa_printf(MSG_INFO,"Debug_Assoc Failed %s %d",__func__,__LINE__);
+	ret = wpa_drv_associate(wpa_s, &params);	
+        wpa_printf(MSG_INFO,"Debug_Assoc Failed--wpa_drv_associate ret is %d  %s %d",ret,__func__,__LINE__);
 	os_free(wpa_ie);
 	if (ret < 0) {
-		wpa_msg(wpa_s, MSG_INFO, "Association request to the driver "
+		wpa_msg(wpa_s, MSG_INFO, "Debug_Assoc_WPA Association request to the driver "
 			"failed");
 		if (wpa_s->drv_flags & WPA_DRIVER_FLAGS_VALID_ERROR_CODES) {
 			/*
diff --git a/src/telephonyware/3.0/atcid/atci/src/platform/atcid_common.c b/src/telephonyware/3.0/atcid/atci/src/platform/atcid_common.c
index e775d6b..f1e859f 100755
--- a/src/telephonyware/3.0/atcid/atci/src/platform/atcid_common.c
+++ b/src/telephonyware/3.0/atcid/atci/src/platform/atcid_common.c
@@ -35,7 +35,7 @@
  * any receiver's applicable license agreements with MediaTek Inc.

  */

 

-

+#include <string.h>

 #include "atcid_common.h"

 #include "atcid.h"

 

@@ -44,12 +44,44 @@
 

 int atci_property_get(const char *key, char *value, const char *default_value) {

     int ali_pro_res = property_get(key, value, default_value);

-    LOGATCI(LOG_DEBUG, "get key is %s, value is %s", key, value);

+//xf.li@20231120 modify for T8TSK-291 start

+    if((strcmp(key, "vendor.ril.iccid.sim1") != 0) && (strcmp(key, "vendor.ril.iccid.sim2") != 0))

+    {

+        LOGATCI(LOG_DEBUG, "get key is %s, value is %s", key, value);

+    }

+    else

+    {

+	if(value != NULL && strlen(value) > 0)

+        {

+            LOGATCI(LOG_DEBUG, "get key is %s, value is (has got)", key);

+        }

+        else

+        {

+            LOGATCI(LOG_DEBUG, "get key is %s, value is ", key);

+        }

+    }

+//xf.li@20231120 modify for T8TSK-291 end

     return ali_pro_res;

 }

 

 int atci_property_set(const char *key, const char *value) {

     int ret_val = property_set(key, value);

-    LOGATCI(LOG_DEBUG, "set key is %s, value is %s", key, value);

+//xf.li@20231120 modify for T8TSK-291 start

+    if((strcmp(key, "vendor.ril.iccid.sim1") != 0) && (strcmp(key, "vendor.ril.iccid.sim2") != 0))

+    {

+        LOGATCI(LOG_DEBUG, "set key is %s, value is %s", key, value);

+    }

+    else

+    {

+	if(value != NULL && strlen(value) > 0)

+        {

+            LOGATCI(LOG_DEBUG, "set key is %s, value is (has got)", key);

+        }

+        else

+        {

+            LOGATCI(LOG_DEBUG, "set key is %s, value is ", key);

+        }

+    }

+//xf.li@20231120 modify for T8TSK-291 end

     return ret_val;

 }

diff --git a/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/framework/core/RfxStatusManager.cpp b/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/framework/core/RfxStatusManager.cpp
index 026b7df..1bade4a 100644
--- a/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/framework/core/RfxStatusManager.cpp
+++ b/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/framework/core/RfxStatusManager.cpp
@@ -138,8 +138,23 @@
         //    RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [XXX]",
         //                           m_slot_id, getKeyString(key));
         //} else {
-            RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [%s]",
+//xf.li@20231120 modify for T8TSK-291 start
+            if(strcmp(getKeyString(key), "RFX_STATUS_KEY_SIM_ICCID") == 0)
+            {
+                RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [has got]",
+                                   m_slot_id, getKeyString(key));
+            }
+            else if(strcmp(getKeyString(key), "RFX_STATUS_KEY_GSM_IMSI") == 0)
+            {
+                RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [has got]",
+                                   m_slot_id, getKeyString(key));
+            }
+            else
+            {
+                RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [%s]",
                                    m_slot_id, getKeyString(key), value.toString().string());
+            }
+//xf.li@20231120 modify for T8TSK-291 end
         //}
     } else {
         RfxVariant old = m_status_list[key]->value;
@@ -154,12 +169,26 @@
             //            force_notify ? "true" : "false",
             //            is_default ? "true" : "false");
             //} else {
-                RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [%s], new = [%s],\
+//xf.li@20231120 modify for T8TSK-291 start
+            if((strcmp(getKeyString(key), "RFX_STATUS_KEY_SIM_ICCID") == 0) || (strcmp(getKeyString(key), "RFX_STATUS_KEY_GSM_IMSI") == 0))
+            {
+                    RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [(has got)], new = [(has got)],\
+is_force = %s, is_default = %s",
+                            m_slot_id, getKeyString(key),
+                            force_notify ? "true" : "false",
+                            is_default ? "true" : "false");
+            }
+            else
+            {
+                    RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [%s], new = [%s],\
 is_force = %s, is_default = %s",
                         m_slot_id, getKeyString(key), old.toString().string(),
                         value.toString().string(),
                         force_notify ? "true" : "false",
                         is_default ? "true" : "false");
+            }
+
+//xf.li@20231120 modify for T8TSK-291 end
             //}
         }
 
diff --git a/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/telephony/sim/RpSimController.cpp b/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/telephony/sim/RpSimController.cpp
index a76d183..ae5896a 100644
--- a/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/telephony/sim/RpSimController.cpp
+++ b/src/telephonyware/3.0/hardware/ril/fusion/libril/rilmipc/telephony/sim/RpSimController.cpp
@@ -48,7 +48,9 @@
 
 static bool isSimInserted(mipc_sim_ps_id_enum sim_ps_id) {
     String8 iccid = RFX_OBJ_GET_INSTANCE(RfxRootController)->getStatusManager(mipc_sim_id_to_slot_id(sim_ps_id))->getString8Value(RFX_STATUS_KEY_SIM_ICCID);
-    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s, iccid: %s", __FUNCTION__, iccid.string());
+//xf.li@20231120 modify for T8TSK-291 start
+    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s, iccid: (has got)", __FUNCTION__);
+//xf.li@20231120 modify for T8TSK-291 end
     if ((!iccid.isEmpty())){
         return true;
     }
@@ -199,7 +201,9 @@
         str.append(",eid:").append("");
     }
     if(strlen(ptr->iccid) > 0) {
-        str.append(",iccid:").append(string(ptr->iccid));
+//xf.li@20231120 modify for T8TSK-291 start
+        str.append(",iccid:").append("(has got)");
+//xf.li@20231120 modify for T8TSK-291 end
     } else {
         str.append(",iccid:").append("");
     }
@@ -337,12 +341,15 @@
     string str("");
     str.append("request:").append(requestToString(info->pCI->requestNumber));
     if(strlen(result_ptr->iccid) > 0 ) {
-        str.append("iccid: ").append(result_ptr->iccid);
+//xf.li@20231120 modify for T8TSK-291 start
+        str.append("iccid: ").append("(has got)");
+//xf.li@20231120 modify for T8TSK-291 end
     } else {
         str.append("");
     }
-
-    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s, iccid: %s, result: %d", __FUNCTION__, str.c_str(), result_ptr->result_code);
+//xf.li@20231120 modify for T8TSK-291 start
+    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s, iccid: (has got), result: %d", __FUNCTION__, result_ptr->result_code);
+//xf.li@20231120 modify for T8TSK-291 end
     if(result_ptr->result_code != MIPC_RESULT_SUCCESS) {
         //result code to ril error transfer
         rfx_enqueue_response_message(NULL,cb_priv_ptr,mipc_sim_id_to_slot_id(sim_ps_id),result_ptr->result_code);
@@ -424,7 +431,9 @@
     string str("");
     str.append("request:").append(requestToString(info->pCI->requestNumber));
     str.append(",result_code:").append(std::to_string(ptr->result_code));
-    str.append(",imsi:").append(string(ptr->imsi));
+//xf.li@20231120 modify for T8TSK-291 start
+    str.append(",imsi:").append("(has got)");
+//xf.li@20231120 modify for T8TSK-291 end
     str.append(",mnc_len:").append(std::to_string(ptr->mnc_len));
     return str;
 }
@@ -744,7 +753,9 @@
 }
 
 static void mipc_sim_iccid_ind_cb(mipc_sim_ps_id_enum sim_ps_id, mipc_sim_iccid_ind_struct *result_ptr, void *cb_priv_ptr) {
-    RFX_LOG_D(getTag(sim_ps_id).c_str(), "%s MIPC_SIM_ICCID_IND, ICCID=%s", __FUNCTION__,string(result_ptr->iccid).c_str());
+//xf.li@20231120 modify for T8TSK-291 start
+    RFX_LOG_D(getTag(sim_ps_id).c_str(), "%s MIPC_SIM_ICCID_IND, ICCID= has got", __FUNCTION__);
+//xf.li@20231120 modify for T8TSK-291 end
     String8 iccid("");
     iccid.append(string(result_ptr->iccid).c_str());
     RFX_OBJ_GET_INSTANCE(RfxRootController)->getStatusManager(mipc_sim_id_to_slot_id(sim_ps_id))->setString8Value(RFX_STATUS_KEY_SIM_ICCID, iccid);
@@ -755,7 +766,9 @@
 }
 
 static void mipc_sim_imsi_get_after_sim_statechanged_cb(mipc_sim_ps_id_enum sim_ps_id, mipc_sim_imsi_struct *result_ptr, void *cb_priv_ptr) {
-    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s %s,%d", __FUNCTION__,result_ptr->imsi,result_ptr->result_code);
+    //xf.li@20231120 modify for T8TSK-291 start
+    RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s imsi (has got),%d", __FUNCTION__,result_ptr->result_code);
+    //xf.li@20231120 modify for T8TSK-291 end
     string mccMncKey("");
     char mccmnc[7] = { 0 };
     mccMncKey.append(PROPERTY_GSM_MCC_MNC_PREIFX);
@@ -767,7 +780,9 @@
         rfx_property_get(mccMncKey.c_str(), old_value, "");
         RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s S imsi", __FUNCTION__);
         imsi.append(string(result_ptr->imsi).c_str());
-        RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s E imsi: %s, mnc len: %d", __FUNCTION__,imsi.string(), result_ptr->mnc_len);
+//xf.li@20231120 modify for T8TSK-291 start
+        RFX_LOG_D(getTag(sim_ps_id).c_str(),"%s E imsi: (has got), mnc len: %d", __FUNCTION__, result_ptr->mnc_len);
+//xf.li@20231120 modify for T8TSK-291 end
         memcpy(mccmnc,result_ptr->imsi,3+result_ptr->mnc_len);
         RFX_LOG_D(getTag(sim_ps_id).c_str(), "%s old_mccmcn:%s, new_mccmnc:%s", __FUNCTION__,(old_value==NULL ? "":string(old_value).c_str()), ((mccmnc==NULL ? "":string(mccmnc).c_str())));
         if(string(mccmnc) != string(old_value) ) {
diff --git a/src/telephonyware/3.0/hardware/ril/platformlib/libmipc/lib/src/api/mipc_sim_api.c b/src/telephonyware/3.0/hardware/ril/platformlib/libmipc/lib/src/api/mipc_sim_api.c
index 2b68b17..9ebec1a 100644
--- a/src/telephonyware/3.0/hardware/ril/platformlib/libmipc/lib/src/api/mipc_sim_api.c
+++ b/src/telephonyware/3.0/hardware/ril/platformlib/libmipc/lib/src/api/mipc_sim_api.c
@@ -368,7 +368,9 @@
         mtkLogD(LOG_TAG, "[id%d]val_len %d, MIPC_MAX_IMSI_LEN %d", msg_cnf_ptr->hdr.msg_sim_ps_id, val_len, MIPC_MAX_IMSI_LEN);
         MEMSET(result_ptr->imsi, 0, MIPC_MAX_IMSI_LEN+1);
         MEMCPY(result_ptr->imsi, val_ptr, val_len < (MIPC_MAX_IMSI_LEN) ? val_len:(MIPC_MAX_IMSI_LEN+1));
-        mtkLogD(LOG_TAG, "[id%d]imsi %s", msg_cnf_ptr->hdr.msg_sim_ps_id, result_ptr->imsi);
+//xf.li@20231120 modify for T8TSK-291 start
+        mtkLogD(LOG_TAG, "[id%d]imsi (has got)", msg_cnf_ptr->hdr.msg_sim_ps_id);
+//xf.li@20231120 modify for T8TSK-291 end
         val_ptr = mipc_msg_get_val_ptr(msg_cnf_ptr, MIPC_SIM_IMSI_CNF_T_MNC_LEN, &val_len);
         if (NULL == val_ptr) break;
         result_ptr->mnc_len =  (uint8_t)(*((uint32_t*)val_ptr));
diff --git a/src/telephonyware/3.0/hardware/ril/platformlib/telematics/libmtkproperty/mtk_properties.c b/src/telephonyware/3.0/hardware/ril/platformlib/telematics/libmtkproperty/mtk_properties.c
index 9dc57f6..c723dd6 100644
--- a/src/telephonyware/3.0/hardware/ril/platformlib/telematics/libmtkproperty/mtk_properties.c
+++ b/src/telephonyware/3.0/hardware/ril/platformlib/telematics/libmtkproperty/mtk_properties.c
@@ -1,4 +1,5 @@
 #include <mtk_log.h>
+#include <string.h>
 #include "mtk_properties.h"
 
 #define LOG_TAG "mtk_properties"
@@ -13,7 +14,23 @@
 int mtk_property_get(const char *key, char *value, const char *default_value)
 {
     int ali_pro_res =  property_get(key, value, default_value);
-    mtkLogD(LOG_TAG, "get key is %s, value is %s", key, value);
+//xf.li@20231120 modify for T8TSK-291 start
+    if((strcmp(key, "vendor.ril.iccid.sim1") != 0) && (strcmp(key, "vendor.ril.iccid.sim2") != 0))
+    {
+        mtkLogD(LOG_TAG, "get key is %s, value is %s", key, value);
+    }
+    else
+    {
+	if(value != NULL && strlen(value) > 0)
+        {
+            mtkLogD(LOG_TAG, "get key is %s, value is (has got)", key);
+        }
+        else
+        {
+            mtkLogD(LOG_TAG, "get key is %s, value is ", key);
+        }
+    }
+//xf.li@20231120 modify for T8TSK-291 end
     return ali_pro_res;
 }
 
@@ -25,6 +42,22 @@
 int mtk_property_set(const char *key, const char *value)
 {
     int ret_val = property_set(key, value);
-    mtkLogD(LOG_TAG, "set key is %s, value is %s", key, value);
+//xf.li@20231120 modify for T8TSK-291 start
+    if((strcmp(key, "vendor.ril.iccid.sim1") != 0) && (strcmp(key, "vendor.ril.iccid.sim2") != 0))
+    {
+        mtkLogD(LOG_TAG, "set key is %s, value is %s", key, value);
+    }
+    else
+    {
+	if(value != NULL && strlen(value) > 0)
+        {
+            mtkLogD(LOG_TAG, "set key is %s, value is (has got)", key);
+        }
+        else
+        {
+            mtkLogD(LOG_TAG, "set key is %s, value is ", key);
+        }
+    }
+//xf.li@20231120 modify for T8TSK-291 end
     return ret_val;
 }
diff --git a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/base/RfxTransferUtils.cpp b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/base/RfxTransferUtils.cpp
index 5f0362a..ad71e64 100755
--- a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/base/RfxTransferUtils.cpp
+++ b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/base/RfxTransferUtils.cpp
@@ -1725,7 +1725,20 @@
     dataStart;
     if (p->dataAvail() > 0) {
         string8 = strdupReadString(p);
-        appendPrintBuf("%s",string8);
+//xf.li@20231120 modify for T8TSK-291 start
+        if(strcmp(requestToString(id), "RIL_REQUEST_QUERY_ICCID") == 0)
+        {
+                appendPrintBuf("(has got)");
+        }
+        else if(strcmp(requestToString(id), "GET_IMSI") == 0)
+        {
+                appendPrintBuf("(has got)");
+        }
+        else
+        {
+                appendPrintBuf("%s",string8);
+        }
+//xf.li@20231120 modify for T8TSK-291 end
         stringlen = strlen(string8);
     }
 
@@ -2247,7 +2260,16 @@
                 goto calloc_error;
             }
             p->read(line, size);
-            appendPrintBuf("line=%s,", line);
+//xf.li@20231120 modify for T8TSK-291 start
+            if(strncmp("+CNUM:", line, strlen("+CNUM:")) == 0)
+            {
+	        appendPrintBuf("line=+CNUM: (has got),");
+            }
+            else
+            {
+                appendPrintBuf("line=%s,", line);
+            }
+//xf.li@20231120 modify for T8TSK-291 end
         }
     }
     dataEnd;
@@ -2263,7 +2285,16 @@
 
     dataStart;
     if( line != NULL){
-        appendPrintBuf("size=%d, line=%s", size,line);
+//xf.li@20231120 modify for T8TSK-291 start
+        if(strncmp("+CNUM:", line, strlen("+CNUM:")) == 0)
+        {
+	    appendPrintBuf("size=%d, line=+CNUM: (has got)", size);
+        }
+        else
+        {
+            appendPrintBuf("size=%d, line=%s", size,line);
+        }
+//xf.li@20231120 modify for T8TSK-291 end
     }
 
     dataEnd;
diff --git a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/core/RfxStatusManager.cpp b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/core/RfxStatusManager.cpp
index 0888c20..1b6cdb7 100644
--- a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/core/RfxStatusManager.cpp
+++ b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/framework/core/RfxStatusManager.cpp
@@ -120,19 +120,39 @@
     if (m_status_list[key] == NULL) {
         m_status_list[key] = new StatusListEntry();
         m_status_list[key]->value = value;
-        RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [%s]",
+//xf.li@20231120 modify for T8TSK-291 start
+        if((strcmp(getKeyString(key), "RFX_STATUS_KEY_SIM_ICCID") == 0) || (strcmp(getKeyString(key), "RFX_STATUS_KEY_GSM_IMSI") == 0))
+        {
+            RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = (has got)",
+                               m_slot_id, getKeyString(key));
+        }
+        else
+        {
+            RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, value = [%s]",
                                m_slot_id, getKeyString(key), value.toString().string());
+        }
+//xf.li@20231120 modify for T8TSK-291 end
     } else {
         RfxVariant old = m_status_list[key]->value;
         bool notify = false;
         bool is_dif = (old != value);
-
-        RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [%s], new = [%s], is_force = %s, is_default = %s",
-                               m_slot_id, getKeyString(key), old.toString().string(),
-                               value.toString().string(),
-                               force_notify ? "true" : "false",
-                               is_default ? "true" : "false");
-
+//xf.li@20231120 modify for T8TSK-291 start
+        if((strcmp(getKeyString(key), "RFX_STATUS_KEY_SIM_ICCID") == 0) || (strcmp(getKeyString(key), "RFX_STATUS_KEY_GSM_IMSI") == 0))
+        {
+            RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [(has got)], new = [(has got)], is_force = %s, is_default = %s",
+                                   m_slot_id, getKeyString(key),
+                                   force_notify ? "true" : "false",
+                                   is_default ? "true" : "false");
+        }
+        else
+        {
+            RFX_LOG_D(RFX_LOG_TAG, "setValue() slot(%d) key = %s, old = [%s], new = [%s], is_force = %s, is_default = %s",
+                                   m_slot_id, getKeyString(key), old.toString().string(),
+                                   value.toString().string(),
+                                   force_notify ? "true" : "false",
+                                   is_default ? "true" : "false");
+        }
+//xf.li@20231120 modify for T8TSK-291 end
         if ((is_dif && !is_default) || force_notify) {
             // if setting default value and not force notify, don't notify
             notify = true;
diff --git a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/telephony/sim/RpSimController.cpp b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/telephony/sim/RpSimController.cpp
index cb837bf..1f57a7b 100644
--- a/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/telephony/sim/RpSimController.cpp
+++ b/src/telephonyware/3.0/libvendor-ril/mtk-rilproxy/telephony/sim/RpSimController.cpp
@@ -901,7 +901,9 @@
     if (message->getError() == RIL_E_SUCCESS) {
         // Get IMSI then notify.
         String8 str8(req->readString16Inplace(&s16Len));
-        RLOGD("[RpSimController] handleGetImsiRsp : %s", str8.string());
+//xf.li@20231120 modify for T8TSK-291 start
+        RLOGD("[RpSimController] handleGetImsiRsp : (has got)");
+//xf.li@20231120 modify for T8TSK-291 end
     #if  (defined(TELEPHONYWARE) || defined(TELE_FWK))
         source = choiceDestByCardType();
     #else