diff --git a/iotapi/receive_sanlien.php b/iotapi/receive_sanlien.php index eb8c5950..d7e59a6b 100644 --- a/iotapi/receive_sanlien.php +++ b/iotapi/receive_sanlien.php @@ -13,4 +13,103 @@ fclose($myfile); #echo $data; -?> +// gary_start + +if ($postData) { + $data = json_decode($postData, true); + + $NETWORK_STATUS = isset($data['NETWORK STATUS']) ? $data['NETWORK STATUS'] : ""; + $SS_SYS_YEAR = isset($data['SS_SYS_YEAR']) ? $data['SS_SYS_YEAR'] : ""; + $SS_SYS_MONTH = isset($data['SS_SYS_MONTH']) ? $data['SS_SYS_MONTH'] : ""; + $SS_SYS_DAY = isset($data['SS_SYS_DAY']) ? $data['SS_SYS_DAY'] : ""; + $SS_SYS_HOUR = isset($data['SS_SYS_HOUR']) ? $data['SS_SYS_HOUR'] : ""; + $SS_SYS_MINUTE = isset($data['SS_SYS_MINUTE']) ? $data['SS_SYS_MINUTE'] : ""; + $SS_SYS_SECOND = isset($data['SS_SYS_SECOND']) ? $data['SS_SYS_SECOND'] : ""; + $SS_STATUS = isset($data['SS_STATUS']) ? $data['SS_STATUS'] : ""; + $ELE_STATUS = isset($data['ELE_STATUS']) ? $data['ELE_STATUS'] : ""; + //地震事件時間、年 + $SS_EVENT_YEAR = isset($data['SS_EVENT_YEAR']) ? $data['SS_EVENT_YEAR'] : ""; + //地震事件時間、月 + $SS_EVENT_MONTH = isset($data['S_EVENT_MONTH']) ? $data['SS_EVENT_MONTH'] : ""; + //地震事件時間、日 + $SS_EVENT_DAY = isset($data['SS_EVENT_DAY']) ? $data['SS_EVENT_DAY'] : ""; + //地震事件時間、時 + $SS_EVENT_HOUR = isset($data['SS_EVENT_HOUR']) ? $data['SS_EVENT_HOUR'] : ""; + //地震事件時間、分 + $SS_EVENT_MINUTE = isset($data['SS_EVENT_MINUTE']) ? $data['SS_EVENT_MINUTE'] : ""; + //地震事件時間、秒 + $SS_EVENT_SECOND = isset($data['SS_EVENT_SECOND']) ? $data['SS_EVENT_SECOND'] : ""; + + //地震震度 請除10,5級以上為表示強弱, + //51為5弱59為5強,61為6弱69為6強,以此類推 + //這裡40代表為4級地震 + $SS_INTENSITY = isset($data['SS_INTENSITY']) ? $data['SS_INTENSITY'] : ""; + + //地震gal值 請除10 這裡為 2144 / 10 = 214.4 gal + $SS_INTENSITY_PGA = isset($data['SS_INTENSITY_PGA']) ? $data['SS_INTENSITY_PGA'] : ""; + //地震速度值 請除10 這裡為 1251 / 10 = 125.1 mm / second + $SS_INTENSITY_PGV = isset($data['SS_INTENSITY_PGV']) ? $data['SS_INTENSITY_PGV'] : ""; + //X軸加速度分量 為int16_t + //64889轉換後為 -647 + //-647 請除10 = -64.7 gal 代表地震時X軸瞬間加速度為負向 + $SS_INTENSITY_PGA_VX = isset($data['SS_INTENSITY_PGA_VX']) ? $data['SS_INTENSITY_PGA_VX'] : ""; + //Y軸加速度分量 為int16_t + //2044轉換後為 2044 + //2044 請除10 = 204.4 gal 代表地震時Y軸瞬間加速度為正向 + $SS_INTENSITY_PGA_VY = isset($data['SS_INTENSITY_PGA_VY']) ? $data['SS_INTENSITY_PGA_VY'] : ""; + //X軸速度分量 為int16_t + //331轉換後為 331 + //331 請除10 = 331 / 10 = 33.1 mm / second 代表地震時X軸瞬間速度為正向 + $SS_INTENSITY_PGA_VZ = isset($data['SS_INTENSITY_PGA_VZ']) ? $data['SS_INTENSITY_PGA_VZ'] : ""; + //Y軸加速度分量 為int16_t + //46轉換後為 46 + //46 請除10 = 4.6 gal 代表地震時Z軸瞬間加速度為正向 + $SS_INTENSITY_PGV_VX = isset($data['SS_INTENSITY_PGV_VX']) ? $data['SS_INTENSITY_PGV_VX'] : ""; + //Y軸速度分量 為int16_t + //64333轉換後為 -1203 + //-1203請除10 = -1203 / 10 = -120.3 mm / second 代表地震時Y軸瞬間速度為負向 + $SS_INTENSITY_PGV_VY = isset($data['SS_INTENSITY_PGV_VY']) ? $data['SS_INTENSITY_PGV_VY'] : ""; + //Z軸速度分量 為int16_t + //65444轉換後為 -92 + //-92請除10 = -92 / 10 = -9.2 mm / second 代表地震時Z軸瞬間速度為負向 + $SS_INTENSITY_PGV_VZ = isset($data['SS_INTENSITY_PGV_VZ']) ? $data['SS_INTENSITY_PGV_VZ'] : ""; + //X軸加速度分量 為int16_t + //64889轉換後為 -647 + //-647 請除10 = -64.7 gal 代表地震時X軸瞬間加速度為負向 + $SS_INTENSITY_PGA_VX = isset($data['SS_INTENSITY_PGA_VX']) ? $data['SS_INTENSITY_PGA_VX'] : ""; + //Y軸加速度 請除10,2044 / 10 = 204.4 gal + $SS_INTENSITY_PGAY = isset($data['SS_INTENSITY_PGAY']) ? $data['SS_INTENSITY_PGAY'] : ""; + //Z軸加速度 請除10,279 / 10 = 27.9 gal + $SS_INTENSITY_PGAZ = isset($data['SS_INTENSITY_PGAZ']) ? $data['SS_INTENSITY_PGAZ'] : ""; + //X軸速度 請除10,431 / 10 = 43.1 mm / second + $SS_INTENSITY_PGVX = isset($data['SS_INTENSITY_PGVX']) ? $data['SS_INTENSITY_PGVX'] : ""; + //Y軸速度請除10,1203 / 10 = 120.3 mm / second + $SS_INTENSITY_PGVY = isset($data['SS_INTENSITY_PGVY']) ? $data['SS_INTENSITY_PGVY'] : ""; + //Z軸速度 請除10,161 / 10 = 16.1 mm / second + $SS_INTENSITY_PGVZ = isset($data['S_INTENSITY_PGVZ']) ? $data['SS_INTENSITY_PGVZ'] : ""; + + //地震開關Relay狀態 + // 0 = OFF 1 = ON,bit0-2對應Relay0-2 + $SS_INTENSITY_DO = isset($data['SS_INTENSITY_DO']) ? $data['SS_INTENSITY_DO'] : ""; + + //地震狀態, START為地震開始,END為地震結束。 + $STATUS = isset($data['STATUS']) ? $data['STATUS'] : ""; + + //地震開關序號 + $SERIAL_NO = isset($data['SERIAL NO.']) ? $data['SERIAL NO.'] : ""; + + //封包序號 + $ID = isset($data['ID']) ? $data['ID'] : ""; + + + // 地震開始 + if ($data['STATUS'] == "START") { + } + + // 地震結束 + if ($data['STATUS'] == "END") { + } +} + + +// gary_end \ No newline at end of file diff --git a/iotapi/receive_sanlien.txt b/iotapi/receive_sanlien.txt index 688b5681..85739eaf 100644 --- a/iotapi/receive_sanlien.txt +++ b/iotapi/receive_sanlien.txt @@ -1,12 +1,647 @@ -{"a":"weqweqwe","b":2}2023-08-19 23:21:22 -{"a":"weqweqwe","b":2}2023-08-19 23:22:09 -2023-08-25 14:40:54 -2023-08-28 08:19:31 -{"a":"weqweqwe","b":2}2023-08-28 08:36:13 -2023-09-01 10:23:15 -2023-09-05 11:48:55 -2023-09-05 12:11:37 -2023-09-05 13:49:43 -2023-09-07 11:58:40 -2023-09-07 12:45:05 -2023-09-07 13:51:05 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"11","SS_SYS_SECOND":"58","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:22:58 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"08","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:08 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"18","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:18 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"28","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:28 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"38","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:37 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"47","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:47 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"57","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:23:57 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"07","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:07 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"17","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:17 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"27","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:27 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"37","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:37 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"47","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:46 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"56","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:24:56 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"06","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:06 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"16","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:16 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"26","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:26 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"36","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:36 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"46","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:46 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"55","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:25:55 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"05","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:26:05 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"15","SS_STATUS":"0","ELE_STATUS":"1"}2024-02-16 11:26:15 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"29","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:26:29 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"42","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:26:43 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"56","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:26:57 +{"SS_SYS_YEAR":"2080","SS_SYS_MONTH":"01","SS_SYS_DAY":"06","SS_SYS_HOUR":"09","SS_SYS_MINUTE":"16","SS_SYS_SECOND":"08","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:27:08 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:27:36 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"11","SS_SYS_MINUTE":"27","SS_SYS_SECOND":"58","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:28:06 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:28:10 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:28:36 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"11","SS_SYS_MINUTE":"28","SS_SYS_SECOND":"38","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 11:28:46 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:29:08 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:29:34 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:30:00 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 11:30:25 +2024-02-16 12:02:40 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:03:05 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:03:31 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:03:56 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:04:21 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:04:47 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:05:12 +2024-02-16 12:13:12 +2024-02-16 12:21:01 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:21:47 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:22:32 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:23:18 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:24:05 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:24:51 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:25:36 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:26:21 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:27:07 +2024-02-16 12:32:09 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:32:57 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:33:45 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:34:35 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:35:23 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:36:11 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:36:59 +2024-02-16 12:41:13 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:42:02 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:42:49 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:43:39 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:44:27 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:45:15 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:46:03 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:46:51 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"12","SS_SYS_MINUTE":"47","SS_SYS_SECOND":"22","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 12:47:29 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:47:46 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:48:34 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:49:22 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:50:11 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:50:59 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:51:47 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:52:35 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:53:23 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:54:11 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:54:59 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 12:55:48 +2024-02-16 13:00:18 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:01:11 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"01","SS_SYS_SECOND":"25","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:01:33 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"01","SS_SYS_SECOND":"31","SS_STATUS":"1","ELE_STATUS":"0"}2024-02-16 13:01:38 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"01","SS_SYS_SECOND":"36","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:01:44 +2024-02-16 13:01:46 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:02:19 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:03:10 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"03","SS_SYS_SECOND":"11","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:03:19 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"03","SS_SYS_SECOND":"30","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:03:38 +2024-02-16 13:03:39 +2024-02-16 13:03:40 +2024-02-16 13:03:40 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"03","SS_SYS_SECOND":"38","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:03:46 +2024-02-16 13:03:48 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:04:20 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:05:10 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:06:01 +2024-02-16 13:07:30 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"13","SS_EVENT_MINUTE":"7","SS_EVENT_SECOND":"42","SS_INTENSITY":"40","SS_INTENSITY_PGA":"1052","SS_INTENSITY_PGV":"438","SS_INTENSITY_PGA_VX":"898","SS_INTENSITY_PGA_VY":"546","SS_INTENSITY_PGA_VZ":"65502","SS_INTENSITY_PGV_VX":"375","SS_INTENSITY_PGV_VY":"227","SS_INTENSITY_PGV_VZ":"65534","SS_INTENSITY_PGAX":"898","SS_INTENSITY_PGAY":"546","SS_INTENSITY_PGAZ":"40","SS_INTENSITY_PGVX":"375","SS_INTENSITY_PGVY":"227","SS_INTENSITY_PGVZ":"7","SS_INTENSITY_DO":"7","STATUS":"START"}2024-02-16 13:07:46 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:08:12 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"13","SS_EVENT_MINUTE":"7","SS_EVENT_SECOND":"42","SS_INTENSITY":"40","SS_INTENSITY_PGA":"1052","SS_INTENSITY_PGV":"438","SS_INTENSITY_PGA_VX":"898","SS_INTENSITY_PGA_VY":"546","SS_INTENSITY_PGA_VZ":"65502","SS_INTENSITY_PGV_VX":"375","SS_INTENSITY_PGV_VY":"227","SS_INTENSITY_PGV_VZ":"65534","SS_INTENSITY_PGAX":"898","SS_INTENSITY_PGAY":"546","SS_INTENSITY_PGAZ":"40","SS_INTENSITY_PGVX":"375","SS_INTENSITY_PGVY":"227","SS_INTENSITY_PGVZ":"7","SS_INTENSITY_DO":"7","STATUS":"END"}2024-02-16 13:08:17 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:08:56 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:09:38 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:10:20 +2024-02-16 13:17:05 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:07 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:09 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:11 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:16 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:17 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:18 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:19 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:20 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:21 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:22 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:23 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:25 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:28 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:30 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:31 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:32 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:33 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:35 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:36 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:37 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:38 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:41 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:42 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:43 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:44 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:45 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:47 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:48 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:51 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:53 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:54 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:55 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:56 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:58 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:17:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:00 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:01 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:02 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:03 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:03 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:04 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:05 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:07 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:09 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:11 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:16 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:17 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:18 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:19 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:20 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:21 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:22 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:23 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:25 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:28 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:30 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:31 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:32 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:33 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:35 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:36 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:37 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:38 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:18:38 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:41 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:42 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:43 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:44 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:45 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:47 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:48 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:51 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:53 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:54 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:55 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:56 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:58 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:18:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:00 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:01 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:02 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:03 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:04 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:05 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:07 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:09 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:11 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:16 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:17 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:18 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:19 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:20 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:21 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:22 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:23 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:25 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:28 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:30 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:31 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:32 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:33 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:35 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:36 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:37 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:38 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:41 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:42 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:43 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:44 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:45 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:47 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:48 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:51 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:53 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:54 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:55 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:56 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:58 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:19:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:00 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:01 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:02 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:03 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:04 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:05 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:07 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:09 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:11 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:20:11 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:16 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:17 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:18 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:19 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:20 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:21 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:22 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:23 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:25 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:28 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:30 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:31 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:32 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:33 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:35 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:36 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:37 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:37 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:38 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:41 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:42 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:43 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:44 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:45 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:47 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:48 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:51 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:53 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:54 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:55 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:56 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:58 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:20:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:00 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:01 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:02 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:02 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:03 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:04 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:05 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:06 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:07 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:09 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:11 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:13 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:14 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:15 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:16 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:17 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:18 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:19 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:20 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:21 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:22 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:23 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:24 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:25 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:26 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:27 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:28 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:29 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:30 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:31 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:32 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:33 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:35 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:36 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:38 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:39 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:40 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:41 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:42 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:43 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:44 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:45 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:21:45 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:46 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:47 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:48 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:49 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:50 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:51 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:52 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:53 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:54 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:55 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:56 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:58 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:21:59 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:22:00 +2024-02-16 13:26:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:26:09 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:26:34 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:27:00 +2024-02-16 13:50:08 +{"System Status":"0","Operational Status":"4","Door Status":"3","Current Floor":"0","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"1","17-24 behind door hall outside":"216","25-32 behind door hall outside":"10","33-40 behind door hall outside":"7","41-48 behind door hall outside":"60","49-56 behind door hall outside":"5","Highest Floor":"0","Lowest Floor":"0","Speed":"0","Location":"0","Cumulative execution time":"0","Cumulative Runs High":"0","Cumulative Runs Low":"0"}2024-02-16 13:50:09 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"13","SS_EVENT_MINUTE":"50","SS_EVENT_SECOND":"19","SS_INTENSITY":"40","SS_INTENSITY_PGA":"880","SS_INTENSITY_PGV":"225","SS_INTENSITY_PGA_VX":"64872","SS_INTENSITY_PGA_VY":"64962","SS_INTENSITY_PGA_VZ":"65471","SS_INTENSITY_PGV_VX":"203","SS_INTENSITY_PGV_VY":"92","SS_INTENSITY_PGV_VZ":"65511","SS_INTENSITY_PGAX":"664","SS_INTENSITY_PGAY":"579","SS_INTENSITY_PGAZ":"152","SS_INTENSITY_PGVX":"203","SS_INTENSITY_PGVY":"93","SS_INTENSITY_PGVZ":"62","SS_INTENSITY_DO":"7","STATUS":"START"}2024-02-16 13:50:23 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:50:40 +2024-02-16 13:50:49 +{"System Status":"0","Operational Status":"4","Door Status":"3","Current Floor":"0","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"1","17-24 behind door hall outside":"216","25-32 behind door hall outside":"10","33-40 behind door hall outside":"7","41-48 behind door hall outside":"60","49-56 behind door hall outside":"5","Highest Floor":"0","Lowest Floor":"0","Speed":"0","Location":"0","Cumulative execution time":"0","Cumulative Runs High":"0","Cumulative Runs Low":"0"}2024-02-16 13:50:50 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"13","SS_EVENT_MINUTE":"50","SS_EVENT_SECOND":"19","SS_INTENSITY":"40","SS_INTENSITY_PGA":"880","SS_INTENSITY_PGV":"225","SS_INTENSITY_PGA_VX":"64872","SS_INTENSITY_PGA_VY":"64962","SS_INTENSITY_PGA_VZ":"65471","SS_INTENSITY_PGV_VX":"203","SS_INTENSITY_PGV_VY":"92","SS_INTENSITY_PGV_VZ":"65511","SS_INTENSITY_PGAX":"664","SS_INTENSITY_PGAY":"579","SS_INTENSITY_PGAZ":"152","SS_INTENSITY_PGVX":"203","SS_INTENSITY_PGVY":"93","SS_INTENSITY_PGVZ":"62","SS_INTENSITY_DO":"7","STATUS":"START"}2024-02-16 13:50:51 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"13","SS_EVENT_MINUTE":"50","SS_EVENT_SECOND":"19","SS_INTENSITY":"40","SS_INTENSITY_PGA":"880","SS_INTENSITY_PGV":"225","SS_INTENSITY_PGA_VX":"64872","SS_INTENSITY_PGA_VY":"64962","SS_INTENSITY_PGA_VZ":"65471","SS_INTENSITY_PGV_VX":"203","SS_INTENSITY_PGV_VY":"92","SS_INTENSITY_PGV_VZ":"65511","SS_INTENSITY_PGAX":"664","SS_INTENSITY_PGAY":"579","SS_INTENSITY_PGAZ":"152","SS_INTENSITY_PGVX":"203","SS_INTENSITY_PGVY":"93","SS_INTENSITY_PGVZ":"62","SS_INTENSITY_DO":"7","STATUS":"END"}2024-02-16 13:50:54 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:51:16 +{"System Status":"0","Operational Status":"4","Door Status":"3","Current Floor":"0","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"1","17-24 behind door hall outside":"216","25-32 behind door hall outside":"10","33-40 behind door hall outside":"5","41-48 behind door hall outside":"60","49-56 behind door hall outside":"5","Highest Floor":"0","Lowest Floor":"0","Speed":"0","Location":"0","Cumulative execution time":"0","Cumulative Runs High":"0","Cumulative Runs Low":"0"}2024-02-16 13:51:32 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:51:42 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"13","SS_SYS_MINUTE":"51","SS_SYS_SECOND":"51","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 13:51:59 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:52:14 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:52:39 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:53:05 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:53:30 +{"System Status":"0","Operational Status":"4","Door Status":"3","Current Floor":"0","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"1","17-24 behind door hall outside":"216","25-32 behind door hall outside":"10","33-40 behind door hall outside":"7","41-48 behind door hall outside":"60","49-56 behind door hall outside":"5","Highest Floor":"0","Lowest Floor":"0","Speed":"0","Location":"0","Cumulative execution time":"0","Cumulative Runs High":"0","Cumulative Runs Low":"0"}2024-02-16 13:53:36 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:53:56 +2024-02-16 13:58:57 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 13:58:58 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:59:23 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 13:59:49 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:00:14 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:00:39 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:01:05 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:01:31 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:01:56 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:02:21 +2024-02-16 14:05:08 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:05:08 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:05:34 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:05:59 +{"System Status":"5","Operational Status":"0","Door Status":"0","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"53","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:06:12 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:06:25 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:06:51 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:07:16 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:07:41 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:08:07 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:08:32 +2024-02-16 14:11:34 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:11:35 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:12:00 +{"System Status":"5","Operational Status":"0","Door Status":"0","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"53","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:12:22 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:12:26 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"42","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 14:12:50 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:12:58 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"07","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 14:13:15 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:13:30 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:14:01 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:14:26 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"29","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 14:14:37 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"37","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 14:14:44 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:15:04 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"01","SS_STATUS":"1","ELE_STATUS":"1"}2024-02-16 14:15:10 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:15:12 +{"System Status":"7","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:15:13 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:15:38 +2024-02-16 14:20:21 +{"System Status1":"3","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:20:22 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:20:48 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:21:13 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"14","SS_EVENT_MINUTE":"21","SS_EVENT_SECOND":"34","SS_INTENSITY":"40","SS_INTENSITY_PGA":"1783","SS_INTENSITY_PGV":"567","SS_INTENSITY_PGA_VX":"333","SS_INTENSITY_PGA_VY":"63785","SS_INTENSITY_PGA_VZ":"65494","SS_INTENSITY_PGV_VX":"156","SS_INTENSITY_PGV_VY":"64991","SS_INTENSITY_PGV_VZ":"65531","SS_INTENSITY_PGAX":"339","SS_INTENSITY_PGAY":"1751","SS_INTENSITY_PGAZ":"135","SS_INTENSITY_PGVX":"156","SS_INTENSITY_PGVY":"545","SS_INTENSITY_PGVZ":"42","SS_INTENSITY_DO":"7","STATUS":"START"}2024-02-16 14:21:38 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:21:39 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"14","SS_EVENT_MINUTE":"21","SS_EVENT_SECOND":"34","SS_INTENSITY":"40","SS_INTENSITY_PGA":"1783","SS_INTENSITY_PGV":"567","SS_INTENSITY_PGA_VX":"333","SS_INTENSITY_PGA_VY":"63785","SS_INTENSITY_PGA_VZ":"65494","SS_INTENSITY_PGV_VX":"156","SS_INTENSITY_PGV_VY":"64991","SS_INTENSITY_PGV_VZ":"65531","SS_INTENSITY_PGAX":"339","SS_INTENSITY_PGAY":"1751","SS_INTENSITY_PGAZ":"135","SS_INTENSITY_PGVX":"156","SS_INTENSITY_PGVY":"545","SS_INTENSITY_PGVZ":"42","SS_INTENSITY_DO":"7","STATUS":"END"}2024-02-16 14:22:09 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:22:10 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:22:35 +{"System Status1":"0","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"53","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"5","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:22:38 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:23:02 +{"System Status1":"3","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094"}2024-02-16 14:23:16 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:23:29 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:23:54 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:24:20 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:24:45 +2024-02-16 14:24:47 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:25:10 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:25:36 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:26:01 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:26:27 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:26:53 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:27:18 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:27:43 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:28:09 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:28:34 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:29:00 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:29:28 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:29:51 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:30:16 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:30:42 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:31:07 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:31:32 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:31:58 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:32:23 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:32:49 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:33:14 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:33:40 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:34:05 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:34:30 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:34:56 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:35:21 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:35:46 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:36:12 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:36:37 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:37:03 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:37:28 +{"NETWORK STATUS":"NORMAL OPERATION"}2024-02-16 14:37:54 +2024-02-16 14:40:51 +{"System Status1":"3","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094","SERIAL NO.":"5710","ID":"0"}2024-02-16 14:40:52 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"1"}2024-02-16 14:41:28 +{"System Status1":"0","Operational Status":"0","Door Status":"0","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"53","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"5","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094","SERIAL NO.":"5710","ID":"2"}2024-02-16 14:41:54 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"3"}2024-02-16 14:42:05 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"4"}2024-02-16 14:42:42 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"5"}2024-02-16 14:43:19 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"6"}2024-02-16 14:43:55 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"7"}2024-02-16 14:44:31 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"44","SS_SYS_SECOND":"39","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"8"}2024-02-16 14:44:47 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"9"}2024-02-16 14:45:16 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"10"}2024-02-16 14:45:52 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"11"}2024-02-16 14:46:29 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"12"}2024-02-16 14:47:06 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"47","SS_SYS_SECOND":"25","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"13"}2024-02-16 14:47:32 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"14"}2024-02-16 14:47:49 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"48","SS_SYS_SECOND":"03","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"15"}2024-02-16 14:48:11 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"16"}2024-02-16 14:48:33 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"17"}2024-02-16 14:49:10 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"14","SS_EVENT_MINUTE":"49","SS_EVENT_SECOND":"32","SS_INTENSITY":"40","SS_INTENSITY_PGA":"757","SS_INTENSITY_PGV":"303","SS_INTENSITY_PGA_VX":"64792","SS_INTENSITY_PGA_VY":"65397","SS_INTENSITY_PGA_VZ":"65523","SS_INTENSITY_PGV_VX":"294","SS_INTENSITY_PGV_VY":"22","SS_INTENSITY_PGV_VZ":"65469","SS_INTENSITY_PGAX":"744","SS_INTENSITY_PGAY":"401","SS_INTENSITY_PGAZ":"204","SS_INTENSITY_PGVX":"294","SS_INTENSITY_PGVY":"84","SS_INTENSITY_PGVZ":"94","SS_INTENSITY_DO":"7","STATUS":"START","SERIAL NO.":"5710","ID":"18"}2024-02-16 14:49:36 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"19"}2024-02-16 14:49:47 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"14","SS_EVENT_MINUTE":"49","SS_EVENT_SECOND":"32","SS_INTENSITY":"40","SS_INTENSITY_PGA":"757","SS_INTENSITY_PGV":"303","SS_INTENSITY_PGA_VX":"64792","SS_INTENSITY_PGA_VY":"65397","SS_INTENSITY_PGA_VZ":"65523","SS_INTENSITY_PGV_VX":"294","SS_INTENSITY_PGV_VY":"22","SS_INTENSITY_PGV_VZ":"65469","SS_INTENSITY_PGAX":"744","SS_INTENSITY_PGAY":"401","SS_INTENSITY_PGAZ":"204","SS_INTENSITY_PGVX":"294","SS_INTENSITY_PGVY":"84","SS_INTENSITY_PGVZ":"94","SS_INTENSITY_DO":"7","STATUS":"END","SERIAL NO.":"5710","ID":"20"}2024-02-16 14:50:07 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"21"}2024-02-16 14:50:24 +{"System Status1":"2","Operational Status":"0","Door Status":"0","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094","SERIAL NO.":"5710","ID":"22"}2024-02-16 14:50:43 +{"System Status1":"3","Operational Status":"0","Door Status":"4","Current Floor":"3","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"60","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7094","SERIAL NO.":"5710","ID":"23"}2024-02-16 14:50:44 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"24"}2024-02-16 14:51:03 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"25"}2024-02-16 14:51:40 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"26"}2024-02-16 14:52:18 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"27"}2024-02-16 14:52:55 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"28"}2024-02-16 14:53:31 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"29"}2024-02-16 14:54:08 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"30"}2024-02-16 14:54:44 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"54","SS_SYS_SECOND":"51","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"31"}2024-02-16 14:54:59 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"32"}2024-02-16 14:55:29 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"33"}2024-02-16 14:56:05 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"34"}2024-02-16 14:56:42 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"35"}2024-02-16 14:57:18 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"36"}2024-02-16 14:57:54 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"37"}2024-02-16 14:58:31 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"38"}2024-02-16 14:59:07 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"14","SS_SYS_MINUTE":"59","SS_SYS_SECOND":"17","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"39"}2024-02-16 14:59:27 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"40"}2024-02-16 14:59:51 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"41"}2024-02-16 15:00:28 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"42"}2024-02-16 15:01:04 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"43"}2024-02-16 15:01:41 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"44"}2024-02-16 15:02:17 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"15","SS_EVENT_MINUTE":"2","SS_EVENT_SECOND":"21","SS_INTENSITY":"40","SS_INTENSITY_PGA":"2144","SS_INTENSITY_PGV":"1251","SS_INTENSITY_PGA_VX":"64889","SS_INTENSITY_PGA_VY":"2044","SS_INTENSITY_PGA_VZ":"46","SS_INTENSITY_PGV_VX":"331","SS_INTENSITY_PGV_VY":"64333","SS_INTENSITY_PGV_VZ":"65444","SS_INTENSITY_PGAX":"647","SS_INTENSITY_PGAY":"2044","SS_INTENSITY_PGAZ":"279","SS_INTENSITY_PGVX":"431","SS_INTENSITY_PGVY":"1203","SS_INTENSITY_PGVZ":"161","SS_INTENSITY_DO":"7","STATUS":"START","SERIAL NO.":"5710","ID":"45"}2024-02-16 15:02:25 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"02","SS_SYS_SECOND":"44","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"46"}2024-02-16 15:02:52 +{"SS_EVENT_YEAR":"2024","SS_EVENT_MONTH":"2","SS_EVENT_DAY":"16","SS_EVENT_HOUR":"15","SS_EVENT_MINUTE":"2","SS_EVENT_SECOND":"21","SS_INTENSITY":"40","SS_INTENSITY_PGA":"2144","SS_INTENSITY_PGV":"1251","SS_INTENSITY_PGA_VX":"64889","SS_INTENSITY_PGA_VY":"2044","SS_INTENSITY_PGA_VZ":"46","SS_INTENSITY_PGV_VX":"331","SS_INTENSITY_PGV_VY":"64333","SS_INTENSITY_PGV_VZ":"65444","SS_INTENSITY_PGAX":"647","SS_INTENSITY_PGAY":"2044","SS_INTENSITY_PGAZ":"279","SS_INTENSITY_PGVX":"431","SS_INTENSITY_PGVY":"1203","SS_INTENSITY_PGVZ":"161","SS_INTENSITY_DO":"7","STATUS":"END","SERIAL NO.":"5710","ID":"47"}2024-02-16 15:02:56 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"48"}2024-02-16 15:03:11 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"49"}2024-02-16 15:03:48 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"50"}2024-02-16 15:04:27 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"51"}2024-02-16 15:05:04 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"05","SS_SYS_SECOND":"44","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"54"}2024-02-16 15:05:53 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"55"}2024-02-16 15:06:00 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"06","SS_SYS_SECOND":"33","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"56"}2024-02-16 15:06:41 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"57"}2024-02-16 15:06:49 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"07","SS_SYS_SECOND":"16","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"58"}2024-02-16 15:07:25 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"59"}2024-02-16 15:07:31 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"60"}2024-02-16 15:08:08 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"08","SS_SYS_SECOND":"07","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"2536","ID":"61"}2024-02-16 15:08:15 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"08","SS_SYS_SECOND":"19","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"62"}2024-02-16 15:08:28 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"63"}2024-02-16 15:09:01 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"64"}2024-02-16 15:09:37 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"09","SS_SYS_SECOND":"40","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"65"}2024-02-16 15:09:49 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"66"}2024-02-16 15:10:22 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"67"}2024-02-16 15:10:58 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"11","SS_SYS_SECOND":"05","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"68"}2024-02-16 15:11:14 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"69"}2024-02-16 15:11:40 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"11","SS_SYS_SECOND":"58","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"70"}2024-02-16 15:12:06 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"20","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"71"}2024-02-16 15:12:28 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"72"}2024-02-16 15:12:31 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"31","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"73"}2024-02-16 15:12:38 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"12","SS_SYS_SECOND":"44","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"74"}2024-02-16 15:12:52 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"01","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"75"}2024-02-16 15:13:09 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"08","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"76"}2024-02-16 15:13:15 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"77"}2024-02-16 15:13:36 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"13","SS_SYS_SECOND":"48","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"78"}2024-02-16 15:13:56 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"79"}2024-02-16 15:14:28 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"38","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"80"}2024-02-16 15:14:46 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"14","SS_SYS_SECOND":"55","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"81"}2024-02-16 15:15:03 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"15","SS_SYS_SECOND":"03","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"82"}2024-02-16 15:15:11 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"83"}2024-02-16 15:15:25 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"84"}2024-02-16 15:16:02 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"16","SS_SYS_SECOND":"19","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"85"}2024-02-16 15:16:28 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"16","SS_SYS_SECOND":"29","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"86"}2024-02-16 15:16:37 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"87"}2024-02-16 15:16:55 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"17","SS_SYS_SECOND":"05","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"88"}2024-02-16 15:17:13 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"17","SS_SYS_SECOND":"19","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"89"}2024-02-16 15:17:27 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"90"}2024-02-16 15:17:47 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"91"}2024-02-16 15:18:23 +2024-02-16 15:19:01 +{"System Status1":"3","Operational Status":"0","Door Status":"4","Current Floor":"5","Sedan Loading Information":"0","Fault Code":"0","1-16 front door sedan inside":"0","17-32 front door sedan inside":"0","33-48 front door sedan inside":"0","49-56 front door sedan inside":"0","1-8 front door sedan outside":"0","9-16 front door sedan outside":"0","17-24 front door sedan outside":"0","25-32 front door sedan outside":"0","33-40 front door sedan outside":"0","40-48 front door sedan outside":"0","49-56 front door sedan outside":"0","1-16 behind door sedan inside":"0","17-32 behind door sedan inside":"0","33-48 behind door sedan inside":"0","49-56 behind door sedan inside":"0","1-8 behind door hall outside":"0","9-16 behind door hall outside":"0","17-24 behind door hall outside":"0","25-32 behind door hall outside":"0","33-40 behind door hall outside":"0","41-48 behind door hall outside":"0","49-56 behind door hall outside":"0","Highest Floor":"10","Lowest Floor":"1","System Status2":"7","Speed":"0","Location":"120","Cumulative execution time":"252","Cumulative Runs High":"5","Cumulative Runs Low":"7095","SERIAL NO.":"5710","ID":"0"}2024-02-16 15:19:02 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"19","SS_SYS_SECOND":"08","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"1"}2024-02-16 15:19:16 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"2"}2024-02-16 15:19:51 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"20","SS_SYS_SECOND":"09","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"3"}2024-02-16 15:20:17 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"4"}2024-02-16 15:20:35 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"5"}2024-02-16 15:21:12 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"21","SS_SYS_SECOND":"18","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"6"}2024-02-16 15:21:26 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"7"}2024-02-16 15:21:54 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"8"}2024-02-16 15:22:31 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"9"}2024-02-16 15:23:07 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"23","SS_SYS_SECOND":"05","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"10"}2024-02-16 15:23:13 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"11"}2024-02-16 15:23:49 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"12"}2024-02-16 15:24:28 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"13"}2024-02-16 15:25:04 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"14"}2024-02-16 15:25:41 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"15"}2024-02-16 15:26:17 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"26","SS_SYS_SECOND":"23","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"16"}2024-02-16 15:26:31 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"26","SS_SYS_SECOND":"31","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"17"}2024-02-16 15:26:39 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"18"}2024-02-16 15:27:09 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"19"}2024-02-16 15:27:46 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"28","SS_SYS_SECOND":"04","SS_STATUS":"1","ELE_STATUS":"1","SERIAL NO.":"5710","ID":"20"}2024-02-16 15:28:12 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"21"}2024-02-16 15:28:28 +{"SS_SYS_YEAR":"2024","SS_SYS_MONTH":"02","SS_SYS_DAY":"16","SS_SYS_HOUR":"15","SS_SYS_MINUTE":"28","SS_SYS_SECOND":"28","SS_STATUS":"0","ELE_STATUS":"1","SERIAL NO.":"1","ID":"22"}2024-02-16 15:28:37 +{"NETWORK STATUS":"NORMAL OPERATION","SERIAL NO.":"5710","ID":"23"}2024-02-16 15:29:13 diff --git a/wms/gary.php b/wms/gary.php index efabf743..0f3ea302 100644 --- a/wms/gary.php +++ b/wms/gary.php @@ -1,153 +1,323 @@ connect_error) { + die("连接失败: " . $conn->connect_error); } -// 获取用户的 IP 地址 -$user_ip = getUserIP(); -echo $test = "123"; -// 输出用户的 IP 地址 -echo "用户的 IP 地址是:$user_ip"; -exit; - - - - -$encodedString = urlencode("expression-index.php?function_name=expression&id=83"); -?> -永佳捷外事系統 -"; - date_default_timezone_set('Asia/Taipei'); - $currentTimestamp = time(); - $hashReferer = ""; - for ($i = -3; $i <= 3; $i++) { - $modifiedTimestamp = strtotime("$i seconds", $currentTimestamp); - $formattedTime = date("Y-m-d H:i:s", $modifiedTimestamp); - $hashReferer .= md5("https://bpm.masada.com.twMasada@2023" . $formattedTime); - } - echo $hashReferer; - if (strpos($hashReferer, $referer)) { - echo "login"; +// 指定要查询的 facilityno +$facilitynos = array( + '3TX19201', + '3TX19202', + '3TX19203', + '3JX06604', + '3JX08605', + '3TX19206', + '3TX00401', + '3TX00301', + '3TX01401', + '3JX07401', + '3JX05101', + '3JX05102', + '3JX05104', + '3JX05103', + '3JX05105', + '3JX05106', + '3JX02501', + '3JX02512', + '3JX02505', + '3JX02504', + '3JX02502', + '3JX02506', + '3JX02507', + '3JX02508', + '3JX02509', + '3JX02510', + '3JX02511', + '3JX02503', + '3JX05701', + '3JX05702', + '3TX38002', + '3TX38003', + '3TX38004', + '3TX38005', + '3TX38006', + '3TX38001', + '3TX23101', + '3TX41501', + '3TX27001', + '3TX27002', + '3TX40301', + '3TZ41701', + '3JX08505', + '3JX08504', + '3JX08503', + '3JX08502', + '3JX08501', + '3TX45701', + '3TX47401', + '3MH00111', + '3MH00205', + '3MH00206', + '3MH00002', + '4JX00601', + '4JX00602', + '4JX00603', + '4JX00604', + '4JX00605', + '4JX00606', + '4JX00607', + '4TX00401', + '4TW02601', + '4TW03101', + '4TW04901', + '4TW05001', + '4TH00601', + '4TH00701', + '4TX00501', + '3TX52701', + '3TX42901', + '3TH44501', + '2MX00029', + '2MX00030', + '2MX00031', + '2MX00032', + '2MX00033', + '2MX00034', + '2MX00035', + '2MX00036', + '2MX00037', + '3TX01303', + '3TX01304', + '3TX01301', + '3TX01302', + '3TX08501', + '3TX08504', + '3TX08503', + '3TX08502', + '3TX20601', + '3TX20602', + '3TX20603', + '3TX20604', + '3TX20605', + '3TX20606', + '3TX20607', + '3JX05501', + '3TX22101', + '3TX37101', + '3TX37102', + '3TX37103', + '3TX37104', + '3TX37105', + '3TX45801', + '3TX45901', + '2MW00027', + '4JX01001', + '4JX01002', + '4JX01003', + '4JX01004', + '4JX01005', + '4JX01201', + '4JX01202', + '4JX01203', + '4JX01204', + '4JX01205', + '4JX01206', + '4JX01207', + '4JX01208', + '4JX01209', + '4JX01210', + '4JX00401', + '4JX00402', + '4JX00403', + '4JX00404', + '4JX00405', + '4JX00406', + '4JX00407', + '4TW02301', + '4JX01302', + '4JX01301', + '4JX01801', + '4JX01802', + '3TX47901', + '3TX52601', + '3TX24501', + '3TX25401', + '3TX15501', + '3TX15502', + '3TX01201', + '22TX0002704', + '22TX0002705', + '22TX0002706', + '22TX0002707', + '22TX0002708', + '22TX0002709', + '22TX0002710', + '22TX0002711', + '22TX0002701', + '22TX0002702', + '22TX0002703', + '3TX01501', + '3TH06501', + '3JX00301', + '3JX00302', + '3TW14601', + '3TX07301', + '3TX07401', + '3TX07701', + '3TX37603', + '3TX37602', + '3TX37601', + '3TX37604', + '3TX37201', + '3JX06401', + '3TX43001', + '3TX43002', + '3TX43003', + '3TX43004', + '3TX43005', + '3TX43006', + '3TX43007', + '3TX43008', + '3TX43009', + '3TX43010', + '3TX43011', + '3TX43012', + '3TX43013', + '3JX07301', + '3JX07302', + '3JX08001', + '3JX08002', + '3JX08003', + '3JX08004', + '3JX08005', + '3JX08006', + '3JX08007', + '3JX08008', + '3JX08009', + '3TX47001', + '3TX47901', + '3TX48001', + '3TX47801', + '3TX54201', + '4JX00801', + '4JX00802', + '4JX00803', + '4JX00804', + '4JX00805', + '4JX00701', + '4JX00702', + '4JX00703', + '4JX00704', + '4JX00705', + '4JX00706', + '3MH00540', + '4TH07101', + '4TH06901', + '4TW06801', + '3JX01601', + '3MH00513', + '4TH06701', + '3TX26501', + '3JX07001', + '3JX07002', + '3JX07003', + '3JX07004', + '3JX07005', + '3JX07006', + '3JX07007', + '3JX07008', + '3JX07009', + '3JX07010', + '3JX07011', + '3JX07012', + '3JX07013', + '3JX07014', + '3JX07015', + '3JX07016', + '3JX07017', + '3JX07018', + '3JX07019', + '3JX07020', + '3JX07021', + '3JX07022', + '3JX07023', + '3JX07024', + '3JX07025', + '3JX07026', + '3JX07027', + '3JX07028', + '3JX07029', + '3JX07030', + '3JX07031', + '3JX07032', + '3JX07033', + '3JX07034', + '3JX07035', + '3JX07036', + '3JX07037', + '3JX07038', + '3JX07039', + '3JX07040', + '3JX00901', + '3JX00902', + '3JX00903', + '3JX04501', + '3JX04502', + '3JX04503', + '3JX04504', + '3TX40401', + '3TX40402', + '3JX08201', + '3JX08202', + '3MH00036', + '3TX54101', + '4TW04301', + '4JX00901', + '4JX00902', + '4JX00903', + '3TX22001', + '3TX22001', + '3TX20701' +); +$facilityno_tmp = []; +// 循环遍历 facilityno +foreach ($facilitynos as $facilityno) { + // 准备查询语句 + $sql = "SELECT COUNT(*) AS count FROM schedule WHERE facilityno = '$facilityno'"; + + // 执行查询 + $result = $conn->query($sql); + + // 检查是否找到记录 + if ($result && $result->num_rows > 0) { + $row = $result->fetch_assoc(); + $count = $row['count']; + + // 如果记录不存在,则记录到另一个表中 + if ($count == 0) { + // 准备插入语句 + array_push($facilityno_tmp, $facilityno); + } + } else { + echo "查询 $facilityno 时出错: " . $conn->error . "\n"; } -} else { - echo "沒有 HTTP_REFERER 資訊可用"; -} -echo "
"; -if (isset($_SERVER['HTTP_REFERER'])) { - $referrer = $_SERVER['HTTP_REFERER']; - echo "來自於: $referrer"; -} else { - echo "沒有 referrer 資訊可用"; } -echo "
"; -if (isset($_SERVER['REMOTE_ADDR'])) { - $visitor_ip = $_SERVER['REMOTE_ADDR']; - echo "訪問者的 IP 地址是: $visitor_ip"; -} else { - echo "REMOTE_ADDR : 無法獲取訪問者的 IP 地址"; -} -echo "
"; -if (isset($_SERVER['HTTP_CLIENT_IP'])) { - $visitor_ip = $_SERVER['HTTP_CLIENT_IP']; - echo "訪問者的 IP 地址是: $visitor_ip"; -} else { - echo "HTTP_CLIENT_IP : 無法獲取訪問者的 IP 地址"; -} -echo "
"; -if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { - $visitor_ip = $_SERVER['HTTP_X_FORWARDED_FOR']; - echo "訪問者的 IP 地址是: $visitor_ip"; -} else { - echo "HTTP_X_FORWARDED_FOR : 法獲取訪問者的 IP 地址"; +// 关闭连接 +$conn->close(); +$i = 1; +foreach($facilityno_tmp as $row){ + echo $i++.":".$row."
"; } -echo "
"; - - -?> - - $row) : -// echo $row['accountid']."
"; -// echo $J++; -// if (empty($row['accountid'])) { - -// $accountid = $row['contractno']; -// $name = $row['custom']; -// echo $sql2 = " -// INSERT INTO account ( -// accounttype, -// accountid, -// pwd, -// name, -// creater, -// create_at -// ) VALUES ( -// '$accounttype', -// '$accountid', -// '$pwd', -// '$name', -// '$creater', -// '$create_at' -// ) -// "; -// echo "
"; -// mysqli_query($link, $sql2); -// } -// endforeach; +?> \ No newline at end of file diff --git a/wms/wipwhole-rec-invoice-edit-fileupload.php b/wms/wipwhole-rec-invoice-edit-fileupload.php index 6406aea2..041878dc 100644 --- a/wms/wipwhole-rec-invoice-edit-fileupload.php +++ b/wms/wipwhole-rec-invoice-edit-fileupload.php @@ -8,10 +8,10 @@ function fileIUpload($post_name) if (!empty($file_name)) { $temp_file_name = $_FILES[$post_name]["tmp_name"]; $target_dir = empty($file_name) ? "" : "public-wipwhole/"; - $sales_spec_verify_file = strtolower($target_dir . basename($datetime . $file_name)); - if (file_exists($sales_spec_verify_file)) - unlink($sales_spec_verify_file); - move_uploaded_file($temp_file_name, $sales_spec_verify_file); + $real_file_name = strtolower($target_dir . basename($datetime . $file_name)); + if (file_exists($real_file_name)) + unlink($real_file_name); + move_uploaded_file($temp_file_name, $real_file_name); return strtolower($target_dir . basename($datetime . $file_name)); } else { return ""; @@ -50,6 +50,15 @@ $customer_planning_verify_file = fileIUpload("customer_planning_verify_file"); $customer_color_verify_file = fileIUpload("customer_color_verify_file"); $customer_style_verify_file = fileIUpload("customer_style_verify_file"); $site_survey_contact_form_verify_file = fileIUpload("site_survey_contact_form_verify_file"); + +$official_check_1_file= fileIUpload("official_check_1_file"); +$official_check_2_file= fileIUpload("official_check_2_file"); +$official_check_3_file= fileIUpload("official_check_3_file"); +$official_check_4_file= fileIUpload("official_check_4_file"); +$official_check_5_file= fileIUpload("official_check_5_file"); +$official_check_6_file= fileIUpload("official_check_6_file"); +$official_check_7_file= fileIUpload("official_check_7_file"); + // 設計 $desin_spec_verify_file = fileIUpload("desin_spec_verify_file"); $desin_planning_verify_file = fileIUpload("desin_planning_verify_file"); diff --git a/wms/wipwhole-rec-invoice-edit-notice-mail.php b/wms/wipwhole-rec-invoice-edit-notice-mail.php new file mode 100644 index 00000000..1b46a79d --- /dev/null +++ b/wms/wipwhole-rec-invoice-edit-notice-mail.php @@ -0,0 +1,253 @@ +fetch_row()[0]; + if (!empty($form_key)) { + $sql = "UPDATE wipwholestatus + SET warehouseid = '$warehouseid' + WHERE id = '$id'; + "; + mysqli_query($link, $sql); + $sql = "UPDATE subflow + SET current_assigner = '$warehouseid' + WHERE 1 = 1 + AND seq = '1' + AND form_key = '$form_key'; + "; + mysqli_query($link, $sql); + } + } +} + +// 官檢日變更 +if (!empty($official_check_date)) { + if ($official_check_date !== $old_official_check_date) { + $sql = " + SELECT accountid + FROM account + WHERE department_id = '250' + AND role_id IN ('1','2','3','4'); + "; + $result = mysqli_query($link, $sql); + foreach ($result as $row) { + $permission = $row["accountid"]; + $title = "客戶:$custom 作番:$facilityno 官檢日變更"; + $content = "客戶:$custom +作番:$facilityno +官檢日 $old_official_check_date => $official_check_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } + + $permission = "M0168"; + $title = "官檢日變更 客戶:$custom 作番:$facilityno"; + $content = "客戶:$custom +作番:$facilityno +官檢日 $old_official_check_date => $official_check_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } +} + +// 工勘變更 +if ($site_survey_contact_verify !== $old_site_survey_contact_verify) { + $site_survey_status = array( + "1" => "請選擇", + "0" => "已確認", + "2" => "無工勘需求", + "A" => "未動工", + "B" => "地下室施工", + "C" => "打樁", + "D" => "地基", + "E" => "挖土", + "G" => "機房", + "H" => "機械式淨高", + "M" => "樓中樓", + "OH" => "最高層(頂樓高度)", + "P" => "PIT(機坑深度)", + "R" => "R 樓", + "S" => "停工", + "T" => "TOP", + "TC" => "頂部間隙", + "TS" => "行程", + "TH" => "全高", + "Y" => "已搭、已出", + "YB" => "退購結案", + "YF" => "既有建物", + "YN" => "已搭、未出" + ); + $sql = " + SELECT accountid + FROM account + WHERE department_id = '321' + AND role_id IN ('2','3','5'); + "; + $result = mysqli_query($link, $sql); + foreach ($result as $row) { + $permission = $row["accountid"]; + $title = "客戶:$custom 作番:$facilityno 工勘狀態更改"; + $content = "客戶:$custom +作番:$facilityno +工勘狀態 $site_survey_status[$old_site_survey_contact_verify] => $site_survey_status[$site_survey_contact_verify]"; + + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } +} + +// 追加技術文件變更 +if (!empty($desin_documents_verify_file)) { + $title = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件"; + $content = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件 +前往下載 +"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => "M0168", + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); +} + + +// 移交日變更 +if (!empty($delivery_date)) { + if ($delivery_date !== $old_delivery_date) { + $permission_arr = ['M0168', 'M0012']; + foreach ($permission_arr as $permission) { + $title = "移交日變更 客戶:$custom 作番:$facilityno"; + $content = "客戶:$custom +作番:$facilityno +移交日 $old_delivery_date => $delivery_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } + + + if (empty($change_all_contractno)) { + $mail_title = "作番大日程(新梯)合約號:" . $contractno . "-移交日變更通知"; + $mail_content = "作番大日程(新梯) +合約號:" . $contractno. "移交日:" . $old_delivery_date . " => " . $delivery_date; + } else { + $mail_title = "作番大日程(新梯)合約號:" . $contractno . "作番號:" . $facilityno . "-移交日變更通知"; + $mail_content = "作番大日程(新梯) +合約號:" . $contractno. " +作番號:" . $facilityno. " +移交日:" . $old_delivery_date . " => " . $delivery_date; + } + + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail] + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} + +// 當試車完工日變更 +if (!empty($tryrun_end_date)) { + if ($tryrun_end_date !== $old_tryrun_end_date) { + $mail_title = "作番大日程(新梯)合約號:" . $contractno . "作番號:" . $facilityno . "客戶名稱:" . $custom . "-試車已完成通知"; + $mail_content = "作番大日程(新梯) +合約號:" . $contractno . " +作番號:" . $facilityno . " +客戶名稱:" . $custom . " +已完成試車, 請注意後續交車時間, 如需要官檢, 請提供如下資料 + +"; + + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail], + [ + accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], + accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] + ], + ['張崇傑', 'jaychang@masada.com.tw'], + ['賴定國', 'guo@masada.com.tw'] + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} + +// 移交日附件變更 +if (!empty($delivery_date_file) || !empty($delivery_date_file2)) { + if ($delivery_date_file !== $old_delivery_date_file || $delivery_date_file2 !== $old_delivery_date_file) { + $delivery_date_file_tmp = $delivery_date_file !== $old_delivery_date_file ? $delivery_date_file : $delivery_date_file2; + $mail_title = "作番大日程(新梯)合約號:" . $contractno . "-交車完成通知"; + $mail_content = "作番大日程(新梯) +合約號:" . $contractno . " +作番號:" . $facilityno . " +客戶名稱:" . $custom . " +已完成交車並已上傳交車單或竣工單, 請至OA系統中填寫移交日, 並準備後續請款事宜! +"; + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail], + [ + accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], + accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] + ], + ['葉俊麟', 'darren@masada.com.tw'], + ['蘇淑娥 ', 'supe1218@masada.com.tw'] + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} diff --git a/wms/wipwhole-rec-invoice-edit-submit.php b/wms/wipwhole-rec-invoice-edit-submit.php index ebf61c7d..d692f24f 100644 --- a/wms/wipwhole-rec-invoice-edit-submit.php +++ b/wms/wipwhole-rec-invoice-edit-submit.php @@ -13,6 +13,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $datetime = date("Y-m-d H:i:s"); $create_at = date("Y-m-d H:i:s"); + $renovate_type = isset($_POST['renovate_type']) ? $_POST['renovate_type'] : $row['renovate_type']; $contractno = isset($_POST['contractno']) ? $_POST['contractno'] : $row['contractno']; $facility_temp_no = isset($_POST['facility_temp_no']) ? $_POST['facility_temp_no'] : $row['facility_temp_no']; $facilityno = isset($_POST['facilityno']) ? $_POST['facilityno'] : $row['facilityno']; @@ -140,13 +141,55 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $association_check_type = isset($_POST['association_check_type']) ? $_POST['association_check_type'] : $row['association_check_type']; $old_delivery_date_file = isset($_POST['old_delivery_date_file']) ? $_POST['old_delivery_date_file'] : $row['delivery_date_file']; - $desin_taiwan_items_no = isset($_POST['desin_taiwan_items_no']) ? $_POST['desin_taiwan_items_no'] : ""; - $desin_taiwan_items_name = isset($_POST['desin_taiwan_items_name']) ? $_POST['desin_taiwan_items_name'] : ""; + $outsourcer_type = isset($_POST['outsourcer_type']) ? $_POST['outsourcer_type'] : $outsourcer_type; + $qc_official_type = isset($_POST['qc_official_type2']) ? $_POST['qc_official_type2'] : $qc_official_type; + $qc_date = isset($_POST['qc_date2']) ? $_POST['qc_date2'] : $qc_date; + $qc_date_owner = isset($_POST['qc_date2_owner']) ? $_POST['qc_date2_owner'] : $qc_date_owner; + $end_qc_date = isset($_POST['end_qc_date2']) ? $_POST['end_qc_date2'] : $end_qc_date; + $end_qc_date_owner = isset($_POST['end_qc_date2_owner']) ? $_POST['end_qc_date2_owner'] : $end_qc_date_owner; + $official_check_date = isset($_POST['official_check_date2']) ? $_POST['official_check_date2'] : $official_check_date; + $old_official_check_date = isset($_POST['old_official_check_date2']) ? $_POST['old_official_check_date2'] : $old_official_check_date; + $official_check_date_owner = isset($_POST['official_check_date2_owner']) ? $_POST['official_check_date2_owner'] : $official_check_date_owner; + $delivery_date = isset($_POST['delivery_date2']) ? $_POST['delivery_date2'] : $delivery_date; + $delivery_date_owner = isset($_POST['delivery_date2_owner']) ? $_POST['delivery_date2_owner'] : $delivery_date_owner; + $install_start_date = isset($_POST['install_start_date2']) ? $_POST['install_start_date2'] : $install_start_date; + $install_start_date_owner = isset($_POST['install_start_date2_owner']) ? $_POST['install_start_date2_owner'] : $install_start_date_owner; + $install_end_date = isset($_POST['install_end_date2']) ? $_POST['install_end_date2'] : $install_end_date; + $install_end_date_owner = isset($_POST['install_end_date2_owner']) ? $_POST['install_end_date2_owner'] : $install_end_date_owner; + $tryrun_start_date = isset($_POST['tryrun_start_date2']) ? $_POST['tryrun_start_date2'] : $tryrun_start_date; + $tryrun_start_date_owner = isset($_POST['tryrun_start_date2_owner']) ? $_POST['tryrun_start_date2_owner'] : $tryrun_start_date_owner; + $tryrun_end_date = isset($_POST['tryrun_end_date2']) ? $_POST['tryrun_end_date2'] : $tryrun_end_date; + $tryrun_end_date_owner = isset($_POST['tryrun_end_date2_owner']) ? $_POST['tryrun_end_date2_owner'] : $tryrun_end_date_owner; + + $desin_taiwan_items_no = isset($_POST['desin_taiwan_items_no']) ? $_POST['desin_taiwan_items_no'] : []; + $desin_taiwan_items_name = isset($_POST['desin_taiwan_items_name']) ? $_POST['desin_taiwan_items_name'] : []; $desin_taiwan_items_no = json_encode($desin_taiwan_items_no, JSON_UNESCAPED_UNICODE); $desin_taiwan_items_name = json_encode($desin_taiwan_items_name, JSON_UNESCAPED_UNICODE); $desin_taiwan_items_no = $desin_taiwan_items_no == 'null' ? null : $desin_taiwan_items_no; $desin_taiwan_items_name = $desin_taiwan_items_name == 'null' ? null : $desin_taiwan_items_name; + $official_check_file_date = isset($_POST['official_check_file_date']) ? $_POST['official_check_file_date'] : $row['official_check_file_date']; + $official_check_file_owner = isset($_POST['official_check_file_owner']) ? $_POST['official_check_file_owner'] : $row['official_check_file_owner']; + $official_check_1_file_date = isset($_POST['official_check_1_file_date']) ? $_POST['official_check_1_file_date'] : $row['official_check_1_file_date']; + $official_check_2_file_date = isset($_POST['official_check_2_file_date']) ? $_POST['official_check_2_file_date'] : $row['official_check_2_file_date']; + $official_check_3_file_date = isset($_POST['official_check_3_file_date']) ? $_POST['official_check_3_file_date'] : $row['official_check_3_file_date']; + $official_check_4_file_date = isset($_POST['official_check_4_file_date']) ? $_POST['official_check_4_file_date'] : $row['official_check_4_file_date']; + $official_check_5_file_date = isset($_POST['official_check_5_file_date']) ? $_POST['official_check_5_file_date'] : $row['official_check_5_file_date']; + $official_check_6_file_date = isset($_POST['official_check_6_file_date']) ? $_POST['official_check_6_file_date'] : $row['official_check_6_file_date']; + $official_check_7_file_date = isset($_POST['official_check_7_file_date']) ? $_POST['official_check_7_file_date'] : $row['official_check_7_file_date']; + $official_check_8_file_date = isset($_POST['official_check_8_file_date']) ? $_POST['official_check_8_file_date'] : $row['official_check_8_file_date']; + $official_check_9_file_date = isset($_POST['official_check_9_file_date']) ? $_POST['official_check_9_file_date'] : $row['official_check_9_file_date']; + $official_check_1_file_owner = isset($_POST['official_check_1_file_owner']) ? $_POST['official_check_1_file_owner'] : $row['official_check_1_file_owner']; + $official_check_2_file_owner = isset($_POST['official_check_2_file_owner']) ? $_POST['official_check_2_file_owner'] : $row['official_check_2_file_owner']; + $official_check_3_file_owner = isset($_POST['official_check_3_file_owner']) ? $_POST['official_check_3_file_owner'] : $row['official_check_3_file_owner']; + $official_check_4_file_owner = isset($_POST['official_check_4_file_owner']) ? $_POST['official_check_4_file_owner'] : $row['official_check_4_file_owner']; + $official_check_5_file_owner = isset($_POST['official_check_5_file_owner']) ? $_POST['official_check_5_file_owner'] : $row['official_check_5_file_owner']; + $official_check_6_file_owner = isset($_POST['official_check_6_file_owner']) ? $_POST['official_check_6_file_owner'] : $row['official_check_6_file_owner']; + $official_check_7_file_owner = isset($_POST['official_check_7_file_owner']) ? $_POST['official_check_7_file_owner'] : $row['official_check_7_file_owner']; + $official_check_8_file_owner = isset($_POST['official_check_8_file_owner']) ? $_POST['official_check_8_file_owner'] : $row['official_check_8_file_owner']; + $official_check_9_file_owner = isset($_POST['official_check_9_file_owner']) ? $_POST['official_check_9_file_owner'] : $row['official_check_9_file_owner']; + + $salesname = accountid2name($salesid)[$salesid]; $salesmail = accountid2email([$salesid])[$salesid]; $creater = $user_id; @@ -154,608 +197,11 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { // 上傳附件 include "wipwhole-rec-invoice-edit-fileupload.php"; - - $updatesql = " - UPDATE wipwholestatus - SET - "; - - if (in_array($user_department_id, [311, 312, 313, 314, 315])) { - // 營業更新; - $updatesql .= " - sales_spec_verify = '$sales_spec_verify', - sales_spec_verify_at = '$sales_spec_verify_at', - sales_spec_verify_owner = '$sales_spec_verify_owner', - customer_planning_verify = '$customer_planning_verify', - customer_planning_verify_at = '$customer_planning_verify_at', - customer_planning_verify_owner = '$customer_planning_verify_owner', - customer_color_verify = '$customer_color_verify', - customer_color_verify_at = '$customer_color_verify_at', - customer_color_verify_owner = '$customer_color_verify_owner', - customer_style_verify = '$customer_style_verify', - customer_style_verify_at = '$customer_style_verify_at', - customer_style_verify_owner = '$customer_style_verify_owner', - site_survey_contact_form_verify = '$site_survey_contact_form_verify', - site_survey_contact_form_verify_at = '$site_survey_contact_form_verify_at', - site_survey_contact_form_verify_owner = '$site_survey_contact_form_verify_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - marketing_remark = '', - real_custom_name = '$real_custom_name', - association_check_type = '$association_check_type', - "; - if (!empty(trim($marketing_remark))) { - $updatesql .= " - marketing_remark = '', - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $marketing_remark . "

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($sales_spec_verify_file)) - $updatesql .= "sales_spec_verify_file = '$sales_spec_verify_file', "; - if (!empty($customer_planning_verify_file)) - $updatesql .= "customer_planning_verify_file = '$customer_planning_verify_file', "; - if (!empty($customer_color_verify_file)) - $updatesql .= "customer_color_verify_file = '$customer_color_verify_file', "; - if (!empty($customer_style_verify_file)) - $updatesql .= "customer_style_verify_file = '$customer_style_verify_file', "; - if (!empty($site_survey_contact_form_verify_file)) - $updatesql .= "site_survey_contact_form_verify_file = '$site_survey_contact_form_verify_file', "; - if (!empty($official_check_file)) - $updatesql .= "official_check_file = '$official_check_file', "; - if (!empty($delivery_date_file)) - $updatesql .= "delivery_date_file = '$delivery_date_file', "; - } else if ($user_department_id == 911) { - // 設計主管 - if ($role_id == 1) { - $updatesql .= " - desin_leader_verify = '$desin_leader_verify', - desin_leader_verify_at = '$desin_leader_verify_at', - desin_leader_verify_owner = '$desin_leader_verify_owner', - desin_leader_remark = '', - "; - if (!empty(trim($desin_leader_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $desin_leader_remark . "

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($desin_leader_verify_file)) - $updatesql .= "desin_leader_verify_file = '$desin_leader_verify_file', "; - } else { - // 設計更新 - $updatesql .= " - desin_spec_verify = '$desin_spec_verify', - desin_spec_verify_at = '$desin_spec_verify_at', - desin_spec_verify_owner = '$desin_spec_verify_owner', - desin_planning_verify = '$desin_planning_verify', - desin_planning_verify_at = '$desin_planning_verify_at', - desin_planning_verify_owner = '$desin_planning_verify_owner', - desin_color_verify = '$desin_color_verify', - desin_color_verify_at = '$desin_color_verify_at', - desin_color_verify_owner = '$desin_color_verify_owner', - desin_style_verify = '$desin_style_verify', - desin_style_verify_at = '$desin_style_verify_at', - desin_style_verify_owner = '$desin_style_verify_owner', - desin_taiwan_items_no = '$desin_taiwan_items_no', - desin_taiwan_items_name = '$desin_taiwan_items_name', - desin_remark = '', - "; - if (!empty(trim($desin_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $desin_remark . "

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($desin_spec_verify_file)) - $updatesql .= "desin_spec_verify_file = '$desin_spec_verify_file', "; - if (!empty($desin_planning_verify_file)) - $updatesql .= "desin_planning_verify_file = '$desin_planning_verify_file', "; - if (!empty($desin_color_verify_file)) - $updatesql .= "desin_color_verify_file = '$desin_color_verify_file', "; - if (!empty($desin_style_verify_file)) - $updatesql .= "desin_style_verify_file = '$desin_style_verify_file', "; - if (!empty($desin_documents_verify_file)) - $updatesql .= "desin_documents_verify_file = '$desin_documents_verify_file', "; - } - } else if ($user_department_id == 321) { - // 業務更新 - $updatesql .= " - prattford_order_date_verify = '$prattford_order_date_verify' , - prattford_order_date = '$prattford_order_date', - prattford_order_date_owner = '$prattford_order_date_owner', - estimated_shipping_date_verify = '$estimated_shipping_date_verify', - estimated_shipping_date = '$estimated_shipping_date', - estimated_shipping_date_owner = '$estimated_shipping_date_owner', - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - goods_type = '$goods_type', - goods_type_date = '$goods_type_date', - goods_type_owner = '$goods_type_owner', - taiwan_goods_type = '$taiwan_goods_type', - taiwan_goods_type_date = '$taiwan_goods_type_date', - taiwan_goods_type_owner = '$taiwan_goods_type_owner', - shengguanok_status = '$shengguanok_status', - shengguanok_status_at = '$shengguanok_status_at', - shengguanok_status_owner = '$shengguanok_status_owner', - yewu_remark = '', - "; - if (!empty(trim($yewu_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $yewu_remark . "

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($shengguanok_status_file)) - $updatesql .= "shengguanok_status_file = '$shengguanok_status_file', "; - } else if ($user_department_id == 220) { - // 共用更新 - $updatesql .= " - contractno = '$contractno', - facility_temp_no = '$facility_temp_no', - facilityno = '$facilityno', - custom='$custom' , - latitude = '$latitude', - longitude = '$longitude', - weight = '$weight', - numberofpassenger = '$numberofpassenger', - numberofstop = '$numberofstop', - numberoffloor = '$numberoffloor', - opentype = '$opentype', - speed = '$speed', - site_manager = '$site_manager', - address = '$address', - real_address = '$real_address', - contract_arrival_date = '$contract_arrival_date', - facility_kind = '$facility_kind', - "; - } else if ($user_department_id == 912) { - // 品證部 - $updatesql .= " - qc_official_type = '$qc_official_type', - qc_date = '$qc_date', - qc_date_owner = '$qc_date_owner', - end_qc_date = '$end_qc_date', - end_qc_date_owner = '$end_qc_date_owner', - official_check_date = '$official_check_date', - official_check_date_owner = '$official_check_date_owner', - "; - if (!empty($official_check_file)) - $updatesql .= "official_check_file = '$official_check_file', "; - } - - // 暫時可編輯及刪除權限 - if (in_array($user_id, ['M0175', 'M0079', 'M0060'])) { - $updatesql .= " - contractno = '$contractno', - facility_temp_no = '$facility_temp_no', - renovate_type = '$renovate_type', - facilityno = '$facilityno', - custom='$custom' , - latitude = '$latitude', - longitude = '$longitude', - weight = '$weight', - numberofpassenger = '$numberofpassenger', - numberofstop = '$numberofstop', - numberoffloor = '$numberoffloor', - opentype = '$opentype', - speed = '$speed', - site_manager = '$site_manager', - address = '$address', - contract_arrival_date = '$contract_arrival_date', - facility_kind = '$facility_kind', - "; - } - - // 工務助理 - if ( - in_array($user_id, ['M0164', 'M0165', 'M0127', 'M0193', 'M0170', 'M0188', 'M0117', 'M0054']) - || in_array($user_department_id, [521, 531, 541, 542, 543, 544, 545]) - ) { - - $outsourcer_type = isset($_POST['outsourcer_type']) ? $_POST['outsourcer_type'] : $outsourcer_type; - $qc_official_type = isset($_POST['qc_official_type2']) ? $_POST['qc_official_type2'] : $qc_official_type; - $qc_date = isset($_POST['qc_date2']) ? $_POST['qc_date2'] : $qc_date; - $qc_date_owner = isset($_POST['qc_date2_owner']) ? $_POST['qc_date2_owner'] : $qc_date_owner; - $end_qc_date = isset($_POST['end_qc_date2']) ? $_POST['end_qc_date2'] : $end_qc_date; - $end_qc_date_owner = isset($_POST['end_qc_date2_owner']) ? $_POST['end_qc_date2_owner'] : $end_qc_date_owner; - $official_check_date = isset($_POST['official_check_date2']) ? $_POST['official_check_date2'] : $official_check_date; - $old_official_check_date = isset($_POST['old_official_check_date2']) ? $_POST['official_check_date'] : $old_official_check_date; - $official_check_date_owner = isset($_POST['official_check_date2_owner']) ? $_POST['official_check_date2_owner'] : $official_check_date_owner; - - $delivery_date = isset($_POST['delivery_date2']) ? $_POST['delivery_date2'] : $delivery_date; - $delivery_date_owner = isset($_POST['delivery_date2_owner']) ? $_POST['delivery_date2_owner'] : $delivery_date_owner; - $install_start_date = isset($_POST['install_start_date2']) ? $_POST['install_start_date2'] : $install_start_date; - $install_start_date_owner = isset($_POST['install_start_date2_owner']) ? $_POST['install_start_date2_owner'] : $install_start_date_owner; - $install_end_date = isset($_POST['install_end_date2']) ? $_POST['install_end_date2'] : $install_end_date; - $install_end_date_owner = isset($_POST['install_end_date2_owner']) ? $_POST['install_end_date2_owner'] : $install_end_date_owner; - $tryrun_start_date = isset($_POST['tryrun_start_date2']) ? $_POST['tryrun_start_date2'] : $tryrun_start_date; - $tryrun_start_date_owner = isset($_POST['tryrun_start_date2_owner']) ? $_POST['tryrun_start_date2_owner'] : $tryrun_start_date_owner; - $tryrun_end_date = isset($_POST['tryrun_end_date2']) ? $_POST['tryrun_end_date2'] : $tryrun_end_date; - $tryrun_end_date_owner = isset($_POST['tryrun_end_date2_owner']) ? $_POST['tryrun_end_date2_owner'] : $tryrun_end_date_owner; - - - $updatesql .= " - qc_official_type = '$qc_official_type', - install_start_date = '$install_start_date', - install_start_date_owner = '$install_start_date_owner', - install_end_date = '$install_end_date', - install_end_date_owner = '$install_end_date_owner', - tryrun_start_date = '$tryrun_start_date', - tryrun_start_date_owner = '$tryrun_start_date_owner', - tryrun_end_date = '$tryrun_end_date', - tryrun_end_date_owner = '$tryrun_end_date_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - qc_date = '$qc_date', - qc_date_owner = '$qc_date_owner', - end_qc_date = '$end_qc_date', - end_qc_date_owner = '$end_qc_date_owner', - official_check_date = '$official_check_date', - official_check_date_owner = '$official_check_date_owner', - outsourcer_type = '$outsourcer_type', - install_outsourcer = '$install_outsourcer', - install_outsourcer_owner = '$install_outsourcer_owner', - install_outsourcer_date = '$install_outsourcer_date', - install_outsourcer_date_owner = '$install_outsourcer_date_owner', - estimate_install_start_date = '$estimate_install_start_date', - estimate_install_start_date_owner = '$estimate_install_start_date_owner', - estimate_install_end_date = '$estimate_install_end_date', - estimate_install_end_date_owner = '$estimate_install_end_date_owner', - tryrun_outsourcer = '$tryrun_outsourcer', - tryrun_outsourcer_owner = '$tryrun_outsourcer_owner', - tryrun_outsourcer_date = '$tryrun_outsourcer_date', - tryrun_outsourcer_date_owner = '$tryrun_outsourcer_date_owner', - estimate_tryrun_start_date = '$estimate_tryrun_start_date', - estimate_tryrun_start_date_owner = '$estimate_tryrun_start_date_owner', - estimate_tryrun_end_date = '$estimate_tryrun_end_date', - estimate_tryrun_end_date_owner = '$estimate_tryrun_end_date_owner', - warehouse_assistant_remark = '$warehouse_assistant_remark', - building_heigh_verify = '$building_heigh_verify', - building_heigh_verify_at = '$building_heigh_verify_at', - building_heigh_verify_owner = '$building_heigh_verify_owner', - site_survey_contact_verify = '$site_survey_contact_verify', - site_survey_contact_verify_at = '$site_survey_contact_verify_at', - site_survey_contact_verify_owner = '$site_survey_contact_verify_owner', - warehouse_remark = '', - install_start_date = '$install_start_date', - install_start_date_owner = '$install_start_date_owner', - install_end_date = '$install_end_date', - install_end_date_owner = '$install_end_date_owner', - tryrun_start_date = '$tryrun_start_date', - tryrun_start_date_owner = '$tryrun_start_date_owner', - tryrun_end_date = '$tryrun_end_date', - tryrun_end_date_owner = '$tryrun_end_date_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - "; - if (!empty($plan_diagram_file)) { - $updatesql .= "plan_diagram_file = '$plan_diagram_file', "; - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
上傳了安裝圖附件

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($completion_acceptance_file)) { - $updatesql .= "completion_acceptance_file = '$completion_acceptance_file', "; - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
上傳了完工驗收單附件

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($outsourcer_contract_file)) { - echo $updatesql .= "outsourcer_contract_file = '$outsourcer_contract_file', "; - } - if (!empty(trim($warehouse_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $warehouse_remark . "

',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($building_heigh_verify_file)) - $updatesql .= "building_heigh_verify_file = '$building_heigh_verify_file', "; - if (!empty($site_survey_contact_verify_file)) - $updatesql .= "site_survey_contact_verify_file = '$site_survey_contact_verify_file', "; - if (!empty($delivery_date_file2)) - $updatesql .= "delivery_date_file = '$delivery_date_file2', "; - } - - // 許協更新業務確認項目權限 - if ($user_id == 'M0060') { - $updatesql .= " - prattford_order_date_verify = '$prattford_order_date_verify' , - prattford_order_date = '$prattford_order_date', - prattford_order_date_owner = '$prattford_order_date_owner', - estimated_shipping_date_verify = '$estimated_shipping_date_verify', - estimated_shipping_date = '$estimated_shipping_date', - estimated_shipping_date_owner = '$estimated_shipping_date_owner', - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - goods_type = '$goods_type', - goods_type_date = '$goods_type_date', - goods_type_owner = '$goods_type_owner', - taiwan_goods_type = '$taiwan_goods_type', - taiwan_goods_type_date = '$taiwan_goods_type_date', - taiwan_goods_type_owner = '$taiwan_goods_type_owner', - shengguanok_status = '$shengguanok_status', - shengguanok_status_at = '$shengguanok_status_at', - shengguanok_status_owner = '$shengguanok_status_owner', - yewu_remark = '', - "; - } - - // 生管 小雯 預計到貨日(到觀音廠日)權限 - if ($user_id == 'M0168') { - $updatesql .= " - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - "; - } - - $updatesql .= " - creater = '$creater', - create_at = '$create_at' - WHERE id = '$id' - "; - // echo $updatesql; - // exit; + // UPDATE SQL + include "wipwhole-rec-invoice-edit-updatesql.php"; mysqli_query($link, $updatesql); - - // 指派工勘人員 - if ($warehouseid !== $old_warehouseid) { - if (checkNowFormGStatus($link) == 'G') { - $sql = "SELECT form_key FROM flow - WHERE form_id = '$id' - AND flow_id = 'wws01' - AND flow_code = 'G' - "; - $result = mysqli_query($link, $sql); - $form_key = $result->fetch_row()[0]; - if (!empty($form_key)) { - $sql = "UPDATE wipwholestatus - SET warehouseid = '$warehouseid' - WHERE id = '$id'; - "; - mysqli_query($link, $sql); - $sql = "UPDATE subflow - SET current_assigner = '$warehouseid' - WHERE 1 = 1 - AND seq = '1' - AND form_key = '$form_key'; - "; - mysqli_query($link, $sql); - } - } - } - - if (!empty($official_check_date)) { - if ($official_check_date !== $old_official_check_date) { - $sql = " - SELECT accountid - FROM account - WHERE department_id = '250' - AND role_id IN ('1','2','3','4'); - "; - $result = mysqli_query($link, $sql); - foreach ($result as $row) { - $permission = $row["accountid"]; - $title = "客戶:$custom 作番:$facilityno 官檢日變更"; - $content = "客戶:$custom - 作番:$facilityno - 官檢日 $old_official_check_date => $official_check_date"; - $data = array( - 'kind' => 1, - 'related_id' => $id, - 'title' => $title, - 'content' => $content, - 'permission' => $permission, - 'creater' => $creater, - 'create_at' => date("Y-m-d H:i:s") - ); - $cn->sendx($data); - } - } - } - - // 工勘變更通知繪圖人員 - if ($site_survey_contact_verify !== $old_site_survey_contact_verify) { - $site_survey_status = array( - "1" => "請選擇", - "0" => "已確認", - "2" => "無工勘需求", - "A" => "未動工", - "B" => "地下室施工", - "C" => "打樁", - "D" => "地基", - "E" => "挖土", - "G" => "機房", - "H" => "機械式淨高", - "M" => "樓中樓", - "OH" => "最高層(頂樓高度)", - "P" => "PIT(機坑深度)", - "R" => "R 樓", - "S" => "停工", - "T" => "TOP", - "TC" => "頂部間隙", - "TS" => "行程", - "TH" => "全高", - "Y" => "已搭、已出", - "YB" => "退購結案", - "YF" => "既有建物", - "YN" => "已搭、未出" - ); - $sql = " - SELECT accountid - FROM account - WHERE department_id = '321' - AND role_id IN ('2','3','5'); - "; - $result = mysqli_query($link, $sql); - foreach ($result as $row) { - $permission = $row["accountid"]; - $title = "客戶:$custom 作番:$facilityno 工勘狀態更改"; - $content = "客戶:$custom -作番:$facilityno -工勘狀態 $site_survey_status[$old_site_survey_contact_verify] => $site_survey_status[$site_survey_contact_verify]"; - - $data = array( - 'kind' => 1, - 'related_id' => $id, - 'title' => $title, - 'content' => $content, - 'permission' => $permission, - 'creater' => $creater, - 'create_at' => date("Y-m-d H:i:s") - ); - $cn->sendx($data); - } - } - - if (!empty($desin_documents_verify_file)) { - $title = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件"; - $content = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件 - 前往下載 -"; - $data = array( - 'kind' => 1, - 'related_id' => $id, - 'title' => $title, - 'content' => $content, - 'permission' => "M0168", - 'creater' => $creater, - 'create_at' => date("Y-m-d H:i:s") - ); - $cn->sendx($data); - } - - - // 官檢日及移交日通知生管人員 - if (!empty($official_check_date)) { - if ($official_check_date !== $old_official_check_date) { - $permission = "M0168"; - $title = "官檢日變更 客戶:$custom 作番:$facilityno"; - $content = "客戶:$custom - 作番:$facilityno - 官檢日 $old_official_check_date => $official_check_date"; - $data = array( - 'kind' => 1, - 'related_id' => $id, - 'title' => $title, - 'content' => $content, - 'permission' => $permission, - 'creater' => $creater, - 'create_at' => date("Y-m-d H:i:s") - ); - $cn->sendx($data); - } - } - - if (!empty($delivery_date)) { - if ($delivery_date !== $old_delivery_date) { - $permission_arr = ['M0168', 'M0012']; - foreach ($permission_arr as $permission) { - $title = "移交日變更 客戶:$custom 作番:$facilityno"; - $content = "客戶:$custom - 作番:$facilityno - 移交日 $old_delivery_date => $delivery_date"; - $data = array( - 'kind' => 1, - 'related_id' => $id, - 'title' => $title, - 'content' => $content, - 'permission' => $permission, - 'creater' => $creater, - 'create_at' => date("Y-m-d H:i:s") - ); - $cn->sendx($data); - } - } - } - - if (!empty($delivery_date)) { - if ($old_delivery_date !== $delivery_date) { - - if (empty($change_all_contractno)) { - $mail_title = "作番大日程(新梯)合約號:" . $contractno . "-移交日變更通知"; - $mail_content = "作番大日程(新梯) - 合約號:" . $contractno - . " - 移交日:" . $old_delivery_date . " => " . $delivery_date; - } else { - $mail_title = "作番大日程(新梯)合約號:" . $contractno . "作番號:" . $facilityno . "-移交日變更通知"; - $mail_content = "作番大日程(新梯) - 合約號:" . $contractno - . " - 作番號:" . $facilityno - . " - 移交日:" . $old_delivery_date . " => " . $delivery_date; - } - $cmail->sendx( - $mail_title, - $mail_content, - [ - [$salesname, $salesmail] - // ['gary', 'gary_chen@masada.com.tw'] - ], - "永佳捷科技" - ); - } - } - - // 當試車完工日更改時 發出通知 - if (!empty($tryrun_end_date)) { - if ($tryrun_end_date !== $old_tryrun_end_date) { - $mail_title = "作番大日程(新梯)合約號:" . $contractno . "作番號:" . $facilityno . "客戶名稱:" . $custom . "-試車已完成通知"; - $mail_content = "作番大日程(新梯) - 合約號:" . $contractno . " - 作番號:" . $facilityno . " - 客戶名稱:" . $custom . " - 已完成試車, 請注意後續交車時間, 如需要官檢, 請提供如下資料 - -"; - - $cmail->sendx( - $mail_title, - $mail_content, - [ - [$salesname, $salesmail], - [ - accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], - accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] - ], - ['張崇傑', 'jaychang@masada.com.tw'], - ['賴定國', 'guo@masada.com.tw'] - // ['gary', 'gary_chen@masada.com.tw'] - ], - "永佳捷科技" - ); - } - } - - // 當移交日附件更改時 發出通知 - if (!empty($delivery_date_file) || !empty($delivery_date_file2)) { - if ($delivery_date_file !== $old_delivery_date_file || $delivery_date_file2 !== $old_delivery_date_file) { - $delivery_date_file_tmp = $delivery_date_file !== $old_delivery_date_file ? $delivery_date_file : $delivery_date_file2; - $mail_title = "作番大日程(新梯)合約號:" . $contractno . "-交車完成通知"; - $mail_content = "作番大日程(新梯) - 合約號:" . $contractno . " - 作番號:" . $facilityno . " - 客戶名稱:" . $custom . " - 已完成交車並已上傳交車單或竣工單, 請至OA系統中填寫移交日, 並準備後續請款事宜! -"; - $cmail->sendx( - $mail_title, - $mail_content, - [ - [$salesname, $salesmail], - [ - accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], - accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] - ], - ['葉俊麟', 'darren@masada.com.tw'], - ['蘇淑娥 ', 'supe1218@masada.com.tw'] - // ['gary', 'gary_chen@masada.com.tw'] - ], - "永佳捷科技" - ); - } - } + // 系統通知信及系統通知 + include "wipwhole-rec-invoice-edit-notice-mail.php"; echo " "; -// } -// } - if ($_SERVER["REQUEST_METHOD"] == "POST") { if ($_POST['form_name'] == 'update_shengguan_form') { foreach ($_POST as $k => $v) $$k = htmlspecialchars(stripslashes(trim($v))); - // $creater = $_POST['creater']; $creater = $user_id; $datetime = date("Y-m-d H:i:s"); $shengguan_remark = $_POST['shengguan_remark']; diff --git a/wms/wipwhole-rec-invoice-edit-updatesql.php b/wms/wipwhole-rec-invoice-edit-updatesql.php new file mode 100644 index 00000000..099f5818 --- /dev/null +++ b/wms/wipwhole-rec-invoice-edit-updatesql.php @@ -0,0 +1,220 @@ +" . $warehouse_remark . "

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty(trim($marketing_remark))) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $marketing_remark . "

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty(trim($desin_leader_remark))) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $desin_leader_remark . "

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty(trim($desin_remark))) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $desin_remark . "

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty(trim($yewu_remark))) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
" . $yewu_remark . "

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty($plan_diagram_file)) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
上傳了安裝圖附件

',IF(all_remark IS NULL,'',all_remark)), + "; +} +if (!empty($completion_acceptance_file)) { + $updatesql .= " + all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
上傳了完工驗收單附件

',IF(all_remark IS NULL,'',all_remark)), + "; +} + + +$updatesql .= " + creater = '$creater', + create_at = '$create_at' + WHERE 1=1 + AND id = '$id' +"; diff --git a/wms/wipwhole-rec-invoice-edit.php b/wms/wipwhole-rec-invoice-edit.php index 0e1f6cd2..87108d72 100644 --- a/wms/wipwhole-rec-invoice-edit.php +++ b/wms/wipwhole-rec-invoice-edit.php @@ -1,5 +1,5 @@ 官檢類型 - /> + /> - /> + /> @@ -501,6 +501,149 @@ include "wipwhole-rec-invoice-edit-submit.php"; + + 官檢資料上傳 + + + 項目 1 <B-17>建築物昇降設備竣工檢查申請書(正本)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 2 <B-18>建築物昇降機竣工檢查表(請單獨置於整份文件上)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 3 使用執照掛號證明或承造人與監造人共同出具之設備完竣證明(影本)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 4 建築執照或雜項執照(影本)x3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 5 耐用基準表(正本)X3(起造人與技術人員用印) + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 6 昇降設備詳圖X3(需建築師或專業廠商用印)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 7 各樓層平面圖X3(需建築師或主管機關用印,並以螢光筆或其他方式明顯標示出此案昇降設備於圖中之詳細位置;一樓平面圖為最必要) + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + 備註 @@ -754,6 +897,49 @@ include "wipwhole-rec-invoice-edit-submit.php"; $taiwan_item_id = 0; } ?> + + 官檢資料上傳 + + + 昇降機設計書. + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 強度計算書. + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + @@ -1513,6 +1699,7 @@ include "wipwhole-rec-invoice-edit-submit.php"; +

注意填寫後不可更改!

確認人 @@ -1522,15 +1709,28 @@ include "wipwhole-rec-invoice-edit-submit.php"; - - 官檢附件 - - > + + 官檢資料上傳 + + + 試驗報告表X1 + + + + > 下載附件" : ""; + echo !empty($row['official_check_file']) ? "下載附件" : ""; ?> - + 確認時間 + + 確認人 + + + @@ -2027,6 +2227,7 @@ include "wipwhole-rec-invoice-edit-submit.php"; $('#site_survey_contact_verify').select2(); checkCustomerPlanningVerifyFileKeyinStatus(); checkDeliveryDateKeyinStatus(); + checkAssociationCheckTypeStatus(); }); function checkCustomerPlanningVerifyFileKeyinStatus() { @@ -2056,6 +2257,22 @@ include "wipwhole-rec-invoice-edit-submit.php"; $("#delivery_date").prop("disabled", true); } } + + function checkAssociationCheckTypeStatus() { + if ($("input[name*='association_check_type']:checked").val() == "1") { + $(".official_check_tr").show(); + } else { + $(".official_check_tr").hide(); + } + $("input[name*='association_check_type']").on("change", function() { + if ($("input[name*='association_check_type']:checked").val() == "1") { + $(".official_check_tr").show(); + } else { + $(".official_check_tr").hide(); + } + }); + } + $(function() { $("title").text("合約號:作番號:"); var tab = $('#tab').val(); @@ -2140,6 +2357,21 @@ include "wipwhole-rec-invoice-edit-submit.php"; inputChangeOutsourcer2(oursourcer_input_arr[i]); } + var files_arr = [ + 'official_check_file', + 'official_check_1_file', + 'official_check_2_file', + 'official_check_3_file', + 'official_check_4_file', + 'official_check_5_file', + 'official_check_6_file', + 'official_check_7_file', + 'official_check_8_file', + 'official_check_9_file' + ] + for (var i = 0; i < files_arr.length; i++) { + inputFilesChange(files_arr[i]); + } }); function inputChangeCatchTime(input_name) { @@ -2149,11 +2381,6 @@ include "wipwhole-rec-invoice-edit-submit.php"; }); } - // function inputChangeOutsourcer(input_name) { - // $("#" + input_name + "_tmp").on("change", function() { - // $("#" + input_name + "_owner_tmp").val(""); - // }); - // } function inputChangeOutsourcer(input_name) { $("#" + input_name).on("change", function() { $("#" + input_name + "_owner").val(""); @@ -2166,6 +2393,13 @@ include "wipwhole-rec-invoice-edit-submit.php"; }); } + function inputFilesChange(input_name) { + $("#" + input_name).on("change", function() { + $("#" + input_name + "_owner").val(""); + $("#" + input_name + "_date").val(formatDate()); + }) + } + function formatDate() { var timestamp = Date.now(); var date = new Date(timestamp); diff --git a/wms/wipwhole-rec-invoice.php b/wms/wipwhole-rec-invoice.php index d9372d11..bfb159bd 100644 --- a/wms/wipwhole-rec-invoice.php +++ b/wms/wipwhole-rec-invoice.php @@ -135,7 +135,7 @@ if ($department_id == "321" || $department_id == "220") { $shengguanok_status_owner = ''; $creater = ''; $create_at = ''; - + $area_no = ''; if ($_SERVER["REQUEST_METHOD"] == "POST") { @@ -226,6 +226,7 @@ if ($department_id == "321" || $department_id == "220") { $shengguanok_status_at = postCheck('shengguanok_status_at'); $shengguanok_status_owner = postCheck('shengguanok_status_owner'); $qc_official_type = postCheck('qc_official_type'); + $area_no = postCheck('area_no'); $creater = postCheck('creater'); $create_at = date('Y-m-d H:i:s'); @@ -319,6 +320,7 @@ if ($department_id == "321" || $department_id == "220") { shengguanok_status_at, shengguanok_status_owner, qc_official_type, + area_no, creater, create_at ) VALUES ( @@ -408,6 +410,7 @@ if ($department_id == "321" || $department_id == "220") { '$shengguanok_status_at', '$shengguanok_status_owner', '$qc_official_type', + '$area_no', '$creater', '$create_at' ) @@ -645,6 +648,18 @@ if ($department_id == "321" || $department_id == "220") { ?> + + 分區 + + + + diff --git a/wms/wipwhole-renovate-index-function.php b/wms/wipwhole-renovate-index-function.php index 8fdc1ea6..cfe5fed4 100644 --- a/wms/wipwhole-renovate-index-function.php +++ b/wms/wipwhole-renovate-index-function.php @@ -49,7 +49,7 @@ function getForm_key($link, $form_id) "; $result = mysqli_query($link, $sql); $row = mysqli_fetch_array($result); - return $row['form_key']; + return empty($row['form_key']) ? '' : $row['form_key']; } function getWipwholestatusData($link, $id) @@ -275,7 +275,7 @@ function checkNowFormStatus($link) "; $result = mysqli_query($link, $sql); $row = mysqli_fetch_array($result); - return $row['0']; + return empty($row['0']) ? '' : $row['0']; } function getWipwholeSearchSql() diff --git a/wms/wipwhole-renovate-index.php b/wms/wipwhole-renovate-index.php index 754adc79..107332f5 100644 --- a/wms/wipwhole-renovate-index.php +++ b/wms/wipwhole-renovate-index.php @@ -66,7 +66,7 @@ $tableArr = array( "A" => "A", "B" => "B", "C" => "C", - "D" => "D", + "E" => "E", "Z" => "Z", "F" => "F", ); @@ -77,6 +77,7 @@ if (empty($sheetNum) || $sheetNum == "All") { $sql = getDataSqlByFlowCode($department_id, $role_id, $user_id, $tableArr[$sheetNum]); } // 取得資料 sql +// echo $sql;exit; $data = mysqli_query($link, $sql); @@ -220,7 +221,7 @@ $data = mysqli_query($link, $sql); 設計確認中
  • - 生管理確認中 + 生管理確認中
  • 已結案 @@ -468,8 +469,8 @@ mysqli_close($link); window.location.href = "" + "&sheetNum=" + sheetNum; } - function showDTable() { - sheetNum = "D"; + function showETable() { + sheetNum = "E"; window.location.href = "" + "&sheetNum=" + sheetNum; } @@ -485,7 +486,7 @@ mysqli_close($link); "B": "3", "F": "4", "C": "5", - "D": "6", + "E": "6", "Z": "7", } $("nav.navbar.navbar-tabs div > ul > li").attr("class", ""); diff --git a/wms/wipwhole-renovate-rec-invoice-edit-notice-mail.php b/wms/wipwhole-renovate-rec-invoice-edit-notice-mail.php new file mode 100644 index 00000000..22cbb4e9 --- /dev/null +++ b/wms/wipwhole-renovate-rec-invoice-edit-notice-mail.php @@ -0,0 +1,252 @@ +fetch_row()[0]; + if (!empty($form_key)) { + $sql = "UPDATE wipwholestatus + SET warehouseid = '$warehouseid' + WHERE id = '$id'; + "; + mysqli_query($link, $sql); + $sql = "UPDATE subflow + SET current_assigner = '$warehouseid' + WHERE 1 = 1 + AND seq = '1' + AND form_key = '$form_key'; + "; + mysqli_query($link, $sql); + } + } +} + +// 官檢日變更 +if (!empty($official_check_date)) { + if ($official_check_date !== $old_official_check_date) { + $sql = " + SELECT accountid + FROM account + WHERE department_id = '250' + AND role_id IN ('1','2','3','4'); + "; + $result = mysqli_query($link, $sql); + foreach ($result as $row) { + $permission = $row["accountid"]; + $title = "客戶:$custom 作番:$facilityno 官檢日變更"; + $content = "客戶:$custom +作番:$facilityno +官檢日 $old_official_check_date => $official_check_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } + + $permission = "M0168"; + $title = "官檢日變更 客戶:$custom 作番:$facilityno"; + $content = "客戶:$custom +作番:$facilityno +官檢日 $old_official_check_date => $official_check_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } +} + +// 工勘變更 +if ($site_survey_contact_verify !== $old_site_survey_contact_verify) { + $site_survey_status = array( + "1" => "請選擇", + "0" => "已確認", + "2" => "無工勘需求", + "A" => "未動工", + "B" => "地下室施工", + "C" => "打樁", + "D" => "地基", + "E" => "挖土", + "G" => "機房", + "H" => "機械式淨高", + "M" => "樓中樓", + "OH" => "最高層(頂樓高度)", + "P" => "PIT(機坑深度)", + "R" => "R 樓", + "S" => "停工", + "T" => "TOP", + "TC" => "頂部間隙", + "TS" => "行程", + "TH" => "全高", + "Y" => "已搭、已出", + "YB" => "退購結案", + "YF" => "既有建物", + "YN" => "已搭、未出" + ); + $sql = " + SELECT accountid + FROM account + WHERE department_id = '321' + AND role_id IN ('2','3','5'); + "; + $result = mysqli_query($link, $sql); + foreach ($result as $row) { + $permission = $row["accountid"]; + $title = "客戶:$custom 作番:$facilityno 工勘狀態更改"; + $content = "客戶:$custom +作番:$facilityno +工勘狀態 $site_survey_status[$old_site_survey_contact_verify] => $site_survey_status[$site_survey_contact_verify]"; + + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } +} + +// 追加技術文件變更 +if (!empty($desin_documents_verify_file)) { + $title = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件"; + $content = "合約號:$contract_no 作番號:$facilityno 設計上傳追加技術文件 +前往下載 +"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => "M0168", + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); +} + + +// 移交日變更 +if (!empty($delivery_date)) { + if ($delivery_date !== $old_delivery_date) { + $permission_arr = ['M0168', 'M0012']; + foreach ($permission_arr as $permission) { + // $permission = "M0168"; + $title = "移交日變更 客戶:$custom 作番:$facilityno"; + $content = "客戶:$custom + 作番:$facilityno + 移交日 $old_delivery_date => $delivery_date"; + $data = array( + 'kind' => 1, + 'related_id' => $id, + 'title' => $title, + 'content' => $content, + 'permission' => $permission, + 'creater' => $creater, + 'create_at' => date("Y-m-d H:i:s") + ); + $cn->sendx($data); + } + + if (empty($change_all_contractno)) { + $mail_title = "作番大日程(汰改)合約號:" . $contractno . "-移交日變更通知"; + $mail_content = "作番大日程(汰改) +合約號:" . $contractno. " +移交日:" . $old_delivery_date . " => " . $delivery_date; + } else { + $mail_title = "作番大日程(汰改)合約號:" . $contractno . "作番號:" . $facilityno . "-移交日變更通知"; + $mail_content = "作番大日程(汰改) +合約號:" . $contractno. " +作番號:" . $facilityno. " +移交日:" . $old_delivery_date . " => " . $delivery_date; + } + + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail], + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} + +// 試車完工日更改 +if (!empty($tryrun_end_date)) { + if ($tryrun_end_date !== $old_tryrun_end_date) { + $mail_title = "作番大日程(汰改)合約號:" . $contractno . "作番號:" . $facilityno . "客戶名稱:" . $custom . "-試車已完成通知"; + $mail_content = "作番大日程(汰改) +合約號:" . $contractno . " +作番號:" . $facilityno . " +客戶名稱:" . $custom . " +已完成試車, 請注意後續交車時間, 如需要官檢, 請提供如下資料 + +"; + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail], + [ + accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], + accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] + ], + ['張崇傑', 'jaychang@masada.com.tw'], + ['賴定國', 'guo@masada.com.tw'] + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} + +// 當移交日附件變更 +if (!empty($delivery_date_file) || !empty($delivery_date_file2)) { + if ($delivery_date_file !== $old_delivery_date_file || $delivery_date_file2 !== $old_delivery_date_file) { + $delivery_date_file_tmp = $delivery_date_file !== $old_delivery_date_file ? $delivery_date_file : $delivery_date_file2; + $mail_title = "作番大日程(汰改)合約號:" . $contractno . "-交車完成通知"; + $mail_content = "作番大日程(汰改) +合約號:" . $contractno . " +作番號:" . $facilityno . " +客戶名稱:" . $custom . " +已完成交車並已上傳交車單或竣工單, 請至OA系統中填寫移交日, 並準備後續請款事宜! +"; + $cmail->sendx( + $mail_title, + $mail_content, + [ + [$salesname, $salesmail], + [ + accountid2name(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)], + accountid2email(manage_class_gary_ver($salesid))[manage_class_gary_ver($salesid)] + ], + ['葉俊麟', 'darren@masada.com.tw'], + ['蘇淑娥 ', 'supe1218@masada.com.tw'] + // ['gary', 'gary_chen@masada.com.tw'] + ], + "永佳捷科技" + ); + } +} diff --git a/wms/wipwhole-renovate-rec-invoice-edit-submit.php b/wms/wipwhole-renovate-rec-invoice-edit-submit.php index 6e596d9d..898b53e0 100644 --- a/wms/wipwhole-renovate-rec-invoice-edit-submit.php +++ b/wms/wipwhole-renovate-rec-invoice-edit-submit.php @@ -67,7 +67,7 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $site_survey_contact_verify = isset($_POST['site_survey_contact_verify']) ? $_POST['site_survey_contact_verify'] : $row['site_survey_contact_verify']; $site_survey_contact_verify_at = isset($_POST['site_survey_contact_verify_at']) ? $_POST['site_survey_contact_verify_at'] : $row['site_survey_contact_verify_at']; $site_survey_contact_verify_owner = isset($_POST['site_survey_contact_verify_owner']) ? $_POST['site_survey_contact_verify_owner'] : $row['site_survey_contact_verify_owner']; - $old_site_survey_contact_verify = isset($_POST['old_site_survey_contact_verify']) ? $_POST['old_site_survey_contact_verify'] : $row['site_survey_contact_verify_owner']; + $old_site_survey_contact_verify = isset($_POST['old_site_survey_contact_verify']) ? $_POST['old_site_survey_contact_verify'] : $row['site_survey_contact_verify']; $outsourcer_type = isset($_POST['outsourcer_type']) ? $_POST['outsourcer_type'] : $row['outsourcer_type']; $install_outsourcer = isset($_POST['install_outsourcer']) ? $_POST['install_outsourcer'] : $row['install_outsourcer']; $install_outsourcer_owner = isset($_POST['install_outsourcer_owner']) ? $_POST['install_outsourcer_owner'] : $row['install_outsourcer_owner']; @@ -138,12 +138,56 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { $tryrun_end_date_owner = isset($_POST['tryrun_end_date_owner']) ? $_POST['tryrun_end_date_owner'] : $row['tryrun_end_date_owner']; $old_delivery_date_file = isset($_POST['old_delivery_date_file']) ? $_POST['old_delivery_date_file'] : $row['delivery_date_file']; + $desin_taiwan_items_no = isset($_POST['desin_taiwan_items_no']) ? $_POST['desin_taiwan_items_no'] : []; + $desin_taiwan_items_name = isset($_POST['desin_taiwan_items_name']) ? $_POST['desin_taiwan_items_name'] : []; $renovate_type = json_encode($_POST['renovate_type'], JSON_UNESCAPED_UNICODE); - $desin_taiwan_items_no = json_encode($_POST['desin_taiwan_items_no'], JSON_UNESCAPED_UNICODE); - $desin_taiwan_items_name = json_encode($_POST['desin_taiwan_items_name'], JSON_UNESCAPED_UNICODE); + $desin_taiwan_items_no = json_encode($desin_taiwan_items_no, JSON_UNESCAPED_UNICODE); + $desin_taiwan_items_name = json_encode($desin_taiwan_items_name, JSON_UNESCAPED_UNICODE); $desin_taiwan_items_no = $desin_taiwan_items_no == 'null' ? null : $desin_taiwan_items_no; $desin_taiwan_items_name = $desin_taiwan_items_name == 'null' ? null : $desin_taiwan_items_name; + $outsourcer_type = isset($_POST['outsourcer_type']) ? $_POST['outsourcer_type'] : $outsourcer_type; + $qc_official_type = isset($_POST['qc_official_type2']) ? $_POST['qc_official_type2'] : $qc_official_type; + $qc_date = isset($_POST['qc_date2']) ? $_POST['qc_date2'] : $qc_date; + $qc_date_owner = isset($_POST['qc_date2_owner']) ? $_POST['qc_date2_owner'] : $qc_date_owner; + $end_qc_date = isset($_POST['end_qc_date2']) ? $_POST['end_qc_date2'] : $end_qc_date; + $end_qc_date_owner = isset($_POST['end_qc_date2_owner']) ? $_POST['end_qc_date2_owner'] : $end_qc_date_owner; + $official_check_date = isset($_POST['official_check_date2']) ? $_POST['official_check_date2'] : $official_check_date; + $old_official_check_date = isset($_POST['old_official_check_date2']) ? $_POST['old_official_check_date2'] : $old_official_check_date; + $official_check_date_owner = isset($_POST['official_check_date2_owner']) ? $_POST['official_check_date2_owner'] : $official_check_date_owner; + $delivery_date = isset($_POST['delivery_date2']) ? $_POST['delivery_date2'] : $delivery_date; + $delivery_date_owner = isset($_POST['delivery_date2_owner']) ? $_POST['delivery_date2_owner'] : $delivery_date_owner; + $install_start_date = isset($_POST['install_start_date2']) ? $_POST['install_start_date2'] : $install_start_date; + $install_start_date_owner = isset($_POST['install_start_date2_owner']) ? $_POST['install_start_date2_owner'] : $install_start_date_owner; + $install_end_date = isset($_POST['install_end_date2']) ? $_POST['install_end_date2'] : $install_end_date; + $install_end_date_owner = isset($_POST['install_end_date2_owner']) ? $_POST['install_end_date2_owner'] : $install_end_date_owner; + $tryrun_start_date = isset($_POST['tryrun_start_date2']) ? $_POST['tryrun_start_date2'] : $tryrun_start_date; + $tryrun_start_date_owner = isset($_POST['tryrun_start_date2_owner']) ? $_POST['tryrun_start_date2_owner'] : $tryrun_start_date_owner; + $tryrun_end_date = isset($_POST['tryrun_end_date2']) ? $_POST['tryrun_end_date2'] : $tryrun_end_date; + $tryrun_end_date_owner = isset($_POST['tryrun_end_date2_owner']) ? $_POST['tryrun_end_date2_owner'] : $tryrun_end_date_owner; + + $official_check_file_date = isset($_POST['official_check_file_date']) ? $_POST['official_check_file_date'] : $row['official_check_file_date']; + $official_check_file_owner = isset($_POST['official_check_file_owner']) ? $_POST['official_check_file_owner'] : $row['official_check_file_owner']; + $official_check_1_file_date = isset($_POST['official_check_1_file_date']) ? $_POST['official_check_1_file_date'] : $row['official_check_1_file_date']; + $official_check_2_file_date = isset($_POST['official_check_2_file_date']) ? $_POST['official_check_2_file_date'] : $row['official_check_2_file_date']; + $official_check_3_file_date = isset($_POST['official_check_3_file_date']) ? $_POST['official_check_3_file_date'] : $row['official_check_3_file_date']; + $official_check_4_file_date = isset($_POST['official_check_4_file_date']) ? $_POST['official_check_4_file_date'] : $row['official_check_4_file_date']; + $official_check_5_file_date = isset($_POST['official_check_5_file_date']) ? $_POST['official_check_5_file_date'] : $row['official_check_5_file_date']; + $official_check_6_file_date = isset($_POST['official_check_6_file_date']) ? $_POST['official_check_6_file_date'] : $row['official_check_6_file_date']; + $official_check_7_file_date = isset($_POST['official_check_7_file_date']) ? $_POST['official_check_7_file_date'] : $row['official_check_7_file_date']; + $official_check_8_file_date = isset($_POST['official_check_8_file_date']) ? $_POST['official_check_8_file_date'] : $row['official_check_8_file_date']; + $official_check_9_file_date = isset($_POST['official_check_9_file_date']) ? $_POST['official_check_9_file_date'] : $row['official_check_9_file_date']; + $official_check_1_file_owner = isset($_POST['official_check_1_file_owner']) ? $_POST['official_check_1_file_owner'] : $row['official_check_1_file_owner']; + $official_check_2_file_owner = isset($_POST['official_check_2_file_owner']) ? $_POST['official_check_2_file_owner'] : $row['official_check_2_file_owner']; + $official_check_3_file_owner = isset($_POST['official_check_3_file_owner']) ? $_POST['official_check_3_file_owner'] : $row['official_check_3_file_owner']; + $official_check_4_file_owner = isset($_POST['official_check_4_file_owner']) ? $_POST['official_check_4_file_owner'] : $row['official_check_4_file_owner']; + $official_check_5_file_owner = isset($_POST['official_check_5_file_owner']) ? $_POST['official_check_5_file_owner'] : $row['official_check_5_file_owner']; + $official_check_6_file_owner = isset($_POST['official_check_6_file_owner']) ? $_POST['official_check_6_file_owner'] : $row['official_check_6_file_owner']; + $official_check_7_file_owner = isset($_POST['official_check_7_file_owner']) ? $_POST['official_check_7_file_owner'] : $row['official_check_7_file_owner']; + $official_check_8_file_owner = isset($_POST['official_check_8_file_owner']) ? $_POST['official_check_8_file_owner'] : $row['official_check_8_file_owner']; + $official_check_9_file_owner = isset($_POST['official_check_9_file_owner']) ? $_POST['official_check_9_file_owner'] : $row['official_check_9_file_owner']; + + $salesname = accountid2name($salesid)[$salesid]; $salesmail = accountid2email([$salesid])[$salesid]; @@ -152,377 +196,11 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { // 上傳附件 include "wipwhole-rec-invoice-edit-fileupload.php"; - - $updatesql = "update wipwholestatus set "; - - if (in_array($user_department_id, [521, 531, 541, 542, 543, 544, 545]) || $user_id == 'M0054') { - // 工務更新; - $updatesql .= " - building_heigh_verify = '$building_heigh_verify', - building_heigh_verify_at = '$building_heigh_verify_at', - building_heigh_verify_owner = '$building_heigh_verify_owner', - site_survey_contact_verify = '$site_survey_contact_verify', - site_survey_contact_verify_at = '$site_survey_contact_verify_at', - site_survey_contact_verify_owner = '$site_survey_contact_verify_owner', - "; - $updatesql .= "warehouse_remark = '', "; - if (!empty(trim($warehouse_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $warehouse_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - $updatesql .= empty($building_heigh_verify_file) ? "" : "building_heigh_verify_file = '$building_heigh_verify_file',"; - $updatesql .= empty($site_survey_contact_verify_file) ? "" : "site_survey_contact_verify_file = '$site_survey_contact_verify_file',"; - } - - if (in_array($user_department_id, [311, 312, 313, 314, 315, 511, 512, 513, 514, 515])) { - // 契約更新; - $updatesql .= " - sales_spec_verify = '$sales_spec_verify', - sales_spec_verify_at = '$sales_spec_verify_at', - sales_spec_verify_owner = '$sales_spec_verify_owner', - customer_color_verify = '$customer_color_verify', - customer_color_verify_at = '$customer_color_verify_at', - customer_color_verify_owner = '$customer_color_verify_owner', - customer_style_verify = '$customer_style_verify', - customer_style_verify_at = '$customer_style_verify_at', - customer_style_verify_owner = '$customer_style_verify_owner', - site_survey_contact_form_verify = '$site_survey_contact_form_verify', - site_survey_contact_form_verify_at = '$site_survey_contact_form_verify_at', - site_survey_contact_form_verify_owner = '$site_survey_contact_form_verify_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - customer_planning_verify = '$customer_planning_verify', - customer_planning_verify_at = '$customer_planning_verify_at', - customer_planning_verify_owner = '$customer_planning_verify_owner', - association_check_type = '$association_check_type', - marketing_remark = '', - "; - if (!empty(trim($marketing_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $marketing_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - $updatesql .= empty($customer_planning_verify_file) ? "" : "customer_planning_verify_file = '$customer_planning_verify_file',"; - $updatesql .= empty($sales_spec_verify_file) ? "" : "sales_spec_verify_file = '$sales_spec_verify_file',"; - $updatesql .= empty($customer_color_verify_file) ? "" : "customer_color_verify_file = '$customer_color_verify_file',"; - $updatesql .= empty($customer_style_verify_file) ? "" : "customer_style_verify_file = '$customer_style_verify_file',"; - $updatesql .= empty($site_survey_contact_form_verify_file) ? "" : "site_survey_contact_form_verify_file = '$site_survey_contact_form_verify_file',"; - if (!empty($official_check_file)) - $updatesql .= "official_check_file = '$official_check_file', "; - if (!empty($delivery_date_file)) - $updatesql .= "delivery_date_file = '$delivery_date_file', "; - } else if ($user_department_id == 911) { - // 設計主管 - if ($role_id == 1) { - $updatesql .= " - desin_leader_verify = '$desin_leader_verify', - desin_leader_verify_at = '$desin_leader_verify_at', - desin_leader_verify_owner = '$desin_leader_verify_owner', - desin_leader_remark = '', - "; - if (!empty(trim($desin_leader_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $desin_leader_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($desin_leader_verify_file)) - $updatesql .= "desin_leader_verify_file = '$desin_leader_verify_file', "; - } else { - // 設計更新 - $updatesql .= " - desin_spec_verify = '$desin_spec_verify', - desin_spec_verify_at = '$desin_spec_verify_at', - desin_spec_verify_owner = '$desin_spec_verify_owner', - desin_planning_verify = '$desin_planning_verify', - desin_planning_verify_at = '$desin_planning_verify_at', - desin_planning_verify_owner = '$desin_planning_verify_owner', - desin_color_verify = '$desin_color_verify', - desin_color_verify_at = '$desin_color_verify_at', - desin_color_verify_owner = '$desin_color_verify_owner', - desin_style_verify = '$desin_style_verify', - desin_style_verify_at = '$desin_style_verify_at', - desin_style_verify_owner = '$desin_style_verify_owner', - desin_taiwan_items_no = '$desin_taiwan_items_no', - desin_taiwan_items_name = '$desin_taiwan_items_name', - desin_remark = '', - "; - if (!empty(trim($desin_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $desin_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - $updatesql .= empty($desin_spec_verify_file) ? "" : "desin_spec_verify_file = '$desin_spec_verify_file',"; - $updatesql .= empty($desin_planning_verify_file) ? "" : "desin_planning_verify_file = '$desin_planning_verify_file',"; - $updatesql .= empty($desin_color_verify_file) ? "" : "desin_color_verify_file = '$desin_color_verify_file',"; - $updatesql .= empty($desin_style_verify_file) ? "" : "desin_style_verify_file = '$desin_style_verify_file',"; - $updatesql .= empty($desin_documents_verify_file) ? "" : "desin_documents_verify_file = '$desin_documents_verify_file',"; - } - } else if ($user_department_id == 321) { - // 共用更新 - // $updatesql .= " - // contractno = '$contractno', - // facility_temp_no = '$facility_temp_no', - // renovate_type = '$renovate_type', - // facilityno = '$facilityno', - // custom='$custom' , - // latitude = '$latitude', - // longitude = '$longitude', - // weight = '$weight', - // numberofpassenger = '$numberofpassenger', - // numberofstop = '$numberofstop', - // numberoffloor = '$numberoffloor', - // opentype = '$opentype', - // speed = '$speed', - // site_manager = '$site_manager', - // address = '$address', - // real_address = '$real_address', - // contract_arrival_date = '$contract_arrival_date', - // facility_kind = '$facility_kind', - // "; - - // 業務更新 - $updatesql .= " - prattford_order_date_verify = '$prattford_order_date_verify' , - prattford_order_date = '$prattford_order_date', - prattford_order_date_owner = '$prattford_order_date_owner', - estimated_shipping_date_verify = '$estimated_shipping_date_verify', - estimated_shipping_date = '$estimated_shipping_date', - estimated_shipping_date_owner = '$estimated_shipping_date_owner', - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - goods_type = '$goods_type', - goods_type_date = '$goods_type_date', - goods_type_owner = '$goods_type_owner', - taiwan_goods_type = '$taiwan_goods_type', - taiwan_goods_type_date = '$taiwan_goods_type_date', - taiwan_goods_type_owner = '$taiwan_goods_type_owner', - shengguanok_status = '$shengguanok_status', - shengguanok_status_at = '$shengguanok_status_at', - shengguanok_status_owner = '$shengguanok_status_owner', - "; - $updatesql .= empty($shengguanok_status_file) ? "" : "shengguanok_status_file = '$shengguanok_status_file',"; - $updatesql .= "yewu_remark = '', "; - if (!empty(trim($yewu_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $yewu_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - } else if ($user_department_id == 220) { - // 共用更新 - $updatesql .= " - contractno = '$contractno', - facility_temp_no = '$facility_temp_no', - renovate_type = '$renovate_type', - facilityno = '$facilityno', - custom='$custom' , - latitude = '$latitude', - longitude = '$longitude', - weight = '$weight', - numberofpassenger = '$numberofpassenger', - numberofstop = '$numberofstop', - numberoffloor = '$numberoffloor', - opentype = '$opentype', - speed = '$speed', - site_manager = '$site_manager', - address = '$address', - real_address = '$real_address', - contract_arrival_date = '$contract_arrival_date', - real_contract_arrival_date = '$real_contract_arrival_date', - facility_kind = '$facility_kind', - "; - } else if ($user_department_id == 912) { - // 品證部 - $updatesql .= " - qc_date = '$qc_date', - qc_date_owner = '$qc_date_owner', - end_qc_date = '$end_qc_date', - end_qc_date_owner = '$end_qc_date_owner', - official_check_date = '$official_check_date', - official_check_date_owner = '$official_check_date_owner', - "; - if (!empty($official_check_file)) - $updatesql .= "official_check_file = '$official_check_file', "; - } - - if (in_array($user_id, ['M0175', 'M0079', 'M0060'])) { - // 暫時可編輯及刪除權限 - $updatesql .= " - contractno = '$contractno', - facility_temp_no = '$facility_temp_no', - renovate_type = '$renovate_type', - facilityno = '$facilityno', - custom='$custom' , - latitude = '$latitude', - longitude = '$longitude', - weight = '$weight', - numberofpassenger = '$numberofpassenger', - numberofstop = '$numberofstop', - numberoffloor = '$numberoffloor', - opentype = '$opentype', - speed = '$speed', - site_manager = '$site_manager', - address = '$address', - contract_arrival_date = '$contract_arrival_date', - facility_kind = '$facility_kind', - "; - } - - // 工務助理 - if ( - in_array($user_id, ['M0164', 'M0165', 'M0127', 'M0193', 'M0170', 'M0188', 'M0117', 'M0054']) - || in_array($user_department_id, [521, 531, 541, 542, 543, 544, 545]) - ) { - - $outsourcer_type = isset($_POST['outsourcer_type']) ? $_POST['outsourcer_type'] : $outsourcer_type; - $qc_official_type = isset($_POST['qc_official_type2']) ? $_POST['qc_official_type2'] : $qc_official_type; - $qc_date = isset($_POST['qc_date2']) ? $_POST['qc_date2'] : $qc_date; - $qc_date_owner = isset($_POST['qc_date2_owner']) ? $_POST['qc_date2_owner'] : $qc_date_owner; - $end_qc_date = isset($_POST['end_qc_date2']) ? $_POST['end_qc_date2'] : $end_qc_date; - $end_qc_date_owner = isset($_POST['end_qc_date2_owner']) ? $_POST['end_qc_date2_owner'] : $end_qc_date_owner; - $official_check_date = isset($_POST['official_check_date2']) ? $_POST['official_check_date2'] : $official_check_date; - $old_official_check_date = isset($_POST['old_official_check_date2']) ? $_POST['old_official_check_date2'] : $old_official_check_date; - $official_check_date_owner = isset($_POST['official_check_date2_owner']) ? $_POST['official_check_date2_owner'] : $official_check_date_owner; - - $delivery_date = isset($_POST['delivery_date2']) ? $_POST['delivery_date2'] : $delivery_date; - $delivery_date_owner = isset($_POST['delivery_date2_owner']) ? $_POST['delivery_date2_owner'] : $delivery_date_owner; - $install_start_date = isset($_POST['install_start_date2']) ? $_POST['install_start_date2'] : $install_start_date; - $install_start_date_owner = isset($_POST['install_start_date2_owner']) ? $_POST['install_start_date2_owner'] : $install_start_date_owner; - $install_end_date = isset($_POST['install_end_date2']) ? $_POST['install_end_date2'] : $install_end_date; - $install_end_date_owner = isset($_POST['install_end_date2_owner']) ? $_POST['install_end_date2_owner'] : $install_end_date_owner; - $tryrun_start_date = isset($_POST['tryrun_start_date2']) ? $_POST['tryrun_start_date2'] : $tryrun_start_date; - $tryrun_start_date_owner = isset($_POST['tryrun_start_date2_owner']) ? $_POST['tryrun_start_date2_owner'] : $tryrun_start_date_owner; - $tryrun_end_date = isset($_POST['tryrun_end_date2']) ? $_POST['tryrun_end_date2'] : $tryrun_end_date; - $tryrun_end_date_owner = isset($_POST['tryrun_end_date2_owner']) ? $_POST['tryrun_end_date2_owner'] : $tryrun_end_date_owner; - - $updatesql .= " - qc_official_type = '$qc_official_type', - install_start_date = '$install_start_date', - install_start_date_owner = '$install_start_date_owner', - install_end_date = '$install_end_date', - install_end_date_owner = '$install_end_date_owner', - tryrun_start_date = '$tryrun_start_date', - tryrun_start_date_owner = '$tryrun_start_date_owner', - tryrun_end_date = '$tryrun_end_date', - tryrun_end_date_owner = '$tryrun_end_date_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - qc_date = '$qc_date', - qc_date_owner = '$qc_date_owner', - end_qc_date = '$end_qc_date', - end_qc_date_owner = '$end_qc_date_owner', - official_check_date = '$official_check_date', - official_check_date_owner = '$official_check_date_owner', - outsourcer_type = '$outsourcer_type', - install_outsourcer = '$install_outsourcer', - install_outsourcer_owner = '$install_outsourcer_owner', - install_outsourcer_date = '$install_outsourcer_date', - install_outsourcer_date_owner = '$install_outsourcer_date_owner', - estimate_install_start_date = '$estimate_install_start_date', - estimate_install_start_date_owner = '$estimate_install_start_date_owner', - estimate_install_end_date = '$estimate_install_end_date', - estimate_install_end_date_owner = '$estimate_install_end_date_owner', - tryrun_outsourcer = '$tryrun_outsourcer', - tryrun_outsourcer_owner = '$tryrun_outsourcer_owner', - tryrun_outsourcer_date = '$tryrun_outsourcer_date', - tryrun_outsourcer_date_owner = '$tryrun_outsourcer_date_owner', - estimate_tryrun_start_date = '$estimate_tryrun_start_date', - estimate_tryrun_start_date_owner = '$estimate_tryrun_start_date_owner', - estimate_tryrun_end_date = '$estimate_tryrun_end_date', - estimate_tryrun_end_date_owner = '$estimate_tryrun_end_date_owner', - warehouse_assistant_remark = '$warehouse_assistant_remark', - building_heigh_verify = '$building_heigh_verify', - building_heigh_verify_at = '$building_heigh_verify_at', - building_heigh_verify_owner = '$building_heigh_verify_owner', - site_survey_contact_verify = '$site_survey_contact_verify', - site_survey_contact_verify_at = '$site_survey_contact_verify_at', - site_survey_contact_verify_owner = '$site_survey_contact_verify_owner', - warehouse_remark = '', - install_start_date = '$install_start_date', - install_start_date_owner = '$install_start_date_owner', - install_end_date = '$install_end_date', - install_end_date_owner = '$install_end_date_owner', - tryrun_start_date = '$tryrun_start_date', - tryrun_start_date_owner = '$tryrun_start_date_owner', - tryrun_end_date = '$tryrun_end_date', - tryrun_end_date_owner = '$tryrun_end_date_owner', - delivery_date = '$delivery_date', - delivery_date_owner = '$delivery_date_owner', - "; - if (!empty($plan_diagram_file)) { - $updatesql .= "plan_diagram_file = '$plan_diagram_file', "; - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    上傳了安裝圖附件

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($completion_acceptance_file)) { - $updatesql .= "completion_acceptance_file = '$completion_acceptance_file', "; - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    上傳了完工驗收單附件

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($outsourcer_contract_file)) { - echo $updatesql .= "outsourcer_contract_file = '$outsourcer_contract_file', "; - } - if (!empty(trim($warehouse_remark))) { - $updatesql .= " - all_remark = CONCAT('" . $user_id . accountidToName($user_id) . "_" . $datetime . "
    " . $warehouse_remark . "

    ',IF(all_remark IS NULL,'',all_remark)), - "; - } - if (!empty($building_heigh_verify_file)) - $updatesql .= "building_heigh_verify_file = '$building_heigh_verify_file', "; - if (!empty($site_survey_contact_verify_file)) - $updatesql .= "site_survey_contact_verify_file = '$site_survey_contact_verify_file', "; - if (!empty($delivery_date_file2)) - $updatesql .= "delivery_date_file = '$delivery_date_file2', "; - } - - // 許協更新業務確認項目權限 - if ($user_id == 'M0060') { - $updatesql .= " - prattford_order_date_verify = '$prattford_order_date_verify' , - prattford_order_date = '$prattford_order_date', - prattford_order_date_owner = '$prattford_order_date_owner', - estimated_shipping_date_verify = '$estimated_shipping_date_verify', - estimated_shipping_date = '$estimated_shipping_date', - estimated_shipping_date_owner = '$estimated_shipping_date_owner', - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - goods_type = '$goods_type', - goods_type_date = '$goods_type_date', - goods_type_owner = '$goods_type_owner', - taiwan_goods_type = '$taiwan_goods_type', - taiwan_goods_type_date = '$taiwan_goods_type_date', - taiwan_goods_type_owner = '$taiwan_goods_type_owner', - shengguanok_status = '$shengguanok_status', - shengguanok_status_at = '$shengguanok_status_at', - shengguanok_status_owner = '$shengguanok_status_owner', - yewu_remark = '', - "; - } - - // 生管 小雯 預計到貨日(到觀音廠日)權限 - if ($user_id == 'M0168') { - $updatesql .= " - estimated_shipping_schedule_date_verify = '$estimated_shipping_schedule_date_verify', - estimated_shipping_schedule_date = '$estimated_shipping_schedule_date', - estimated_shipping_schedule_date_owner = '$estimated_shipping_schedule_date_owner', - "; - } - - $updatesql .= " - creater = '$creater', - create_at = '$create_at' - WHERE 1=1 - AND id = '$id' - "; - // echo $updatesql; - // exit; + // UPDATE SQL + include "wipwhole-rec-invoice-edit-updatesql.php"; mysqli_query($link, $updatesql); - - + // 系統通知信及系統通知 + include "wipwhole-renovate-rec-invoice-edit-notice-mail.php"; // 指派工勘人員 if ($warehouseid !== $old_warehouseid) { @@ -728,9 +406,8 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { } // 當試車完工日更改時 發出通知 - if (!empty($tryrun_end_date) || !empty($tryrun_end_date2)) { - if ($tryrun_end_date !== $old_tryrun_end_date || $tryrun_end_date2 !== $old_tryrun_end_date) { - $tryrun_end_date_tmp = $tryrun_end_date !== $old_tryrun_end_date ? $tryrun_end_date : $tryrun_end_date2; + if (!empty($tryrun_end_date) ) { + if ($tryrun_end_date !== $old_tryrun_end_date) { $mail_title = "作番大日程(汰改)合約號:" . $contractno . "作番號:" . $facilityno . "客戶名稱:" . $custom . "-試車已完成通知"; $mail_content = "作番大日程(汰改) 合約號:" . $contractno . " @@ -1023,91 +700,6 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { } -// if ($_SERVER["REQUEST_METHOD"] == "POST") { -// if ($_POST['form_name'] == 'update_install_date_form') { -// include "./class/Cmail.php"; -// $cmail = new Cmail(); -// foreach ($_POST as $k => $v) -// $$k = htmlspecialchars(stripslashes(trim($v))); - -// $change_all_contractno = $_POST['change_all_contractno']; -// $contractno = $_POST['contractno2']; -// $install_start_date = $_POST['install_start_date']; -// $install_start_date_owner = $_POST['install_start_date_owner']; -// $install_end_date = $_POST['install_end_date']; -// $install_end_date_owner = $_POST['install_end_date_owner']; -// $tryrun_start_date = $_POST['tryrun_start_date']; -// $tryrun_start_date_owner = $_POST['tryrun_start_date_owner']; -// $tryrun_end_date = $_POST['tryrun_end_date']; -// $tryrun_end_date_owner = $_POST['tryrun_end_date_owner']; -// $old_delivery_date = $_POST['old_delivery_date']; -// $delivery_date = $_POST['delivery_date']; -// $delivery_date_owner = $_POST['delivery_date_owner']; -// $contractno = $_POST['contractno']; -// $facilityno = $_POST['facilityno']; -// $salesid = $_POST['salesid']; - -// $salesname = accountid2name($salesid)[$salesid]; -// $salesmail = accountid2email([$salesid])[$salesid]; - -// if ($old_delivery_date !== $delivery_date) { - -// if (empty($change_all_contractno)) { -// $mail_title = "作番大日程(汰改)合約號:" . $contractno . "-移交日變更通知"; -// $mail_content = "作番大日程(汰改)$salesname$salesmail -// 合約號:" . $contractno -// . " -// 移交日:" . $old_delivery_date . " => " . $delivery_date; -// } else { -// $mail_title = "作番大日程(汰改)合約號:" . $contractno . "作番號:" . $facilityno . "-移交日變更通知"; -// $mail_content = "作番大日程(汰改) -// 合約號:" . $contractno -// . " -// 作番號:" . $facilityno -// . " -// 移交日:" . $old_delivery_date . " => " . $delivery_date; -// } -// $cmail->sendx( -// $mail_title, -// $mail_content, -// [ -// [$salesname, $salesmail] -// ], -// "永佳捷科技" -// ); -// } - -// $updatesql = " -// UPDATE wipwholestatus -// SET -// install_start_date = '$install_start_date', -// install_start_date_owner = '$install_start_date_owner', -// install_end_date = '$install_end_date', -// install_end_date_owner = '$install_end_date_owner', -// tryrun_start_date = '$tryrun_start_date', -// tryrun_start_date_owner = '$tryrun_start_date_owner', -// tryrun_end_date = '$tryrun_end_date', -// tryrun_end_date_owner = '$tryrun_end_date_owner', -// delivery_date = '$delivery_date', -// delivery_date_owner = '$delivery_date_owner' -// "; -// if (empty($change_all_contractno)) { -// $updatesql .= "WHERE id = '$id' "; -// } else { -// $updatesql .= "WHERE contractno = '$contractno' "; -// } -// // echo $updatesql; -// // exit; -// mysqli_query($link, $updatesql); - -// echo ""; -// } -// } - - if ($_SERVER["REQUEST_METHOD"] == "POST") { if ($_POST['form_name'] == 'update_shengguan_form') { foreach ($_POST as $k => $v) diff --git a/wms/wipwhole-renovate-rec-invoice-edit.php b/wms/wipwhole-renovate-rec-invoice-edit.php index d0d28515..06e34fdb 100644 --- a/wms/wipwhole-renovate-rec-invoice-edit.php +++ b/wms/wipwhole-renovate-rec-invoice-edit.php @@ -242,7 +242,7 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; 'E' => '營業部門主管已確認
    生管部門確認中', 'Z' => '此作番大日程已結案', ); - if (checkNowFormStatus($link) == '') { + if (empty(checkNowFormStatus($link))) { echo "此作番大日程已結案"; } else { echo $assign_status[checkNowFormStatus($link)]; @@ -624,9 +624,9 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; 官檢類型 - /> + /> - /> + /> @@ -821,6 +821,150 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; 如有複數檔案請放置同個壓縮檔後再上傳 + + 官檢資料上傳 + + + 項目 1 <B-17>建築物昇降設備竣工檢查申請書(正本)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 2 <B-18>建築物昇降機竣工檢查表(請單獨置於整份文件上)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 3 使用執照掛號證明或承造人與監造人共同出具之設備完竣證明(影本)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 4 建築執照或雜項執照(影本)x3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 5 耐用基準表(正本)X3(起造人與技術人員用印) + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 6 昇降設備詳圖X3(需建築師或專業廠商用印)X3 + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 項目 7 各樓層平面圖X3(需建築師或主管機關用印,並以螢光筆或其他方式明顯標示出此案昇降設備於圖中之詳細位置;一樓平面圖為最必要) + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + 備註 @@ -1072,6 +1216,49 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; $taiwan_item_id = 0; } ?> + + 官檢資料上傳 + + + 昇降機設計書. + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + + + 強度計算書. + + + + > + 下載附件" : ""; + ?> + + 確認時間 + + 確認人 + + + + @@ -1512,6 +1699,7 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; +

    注意填寫後不可更改!

    確認人 @@ -1521,15 +1709,28 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; - - 官檢附件 - - > + + 官檢資料上傳 + + + 試驗報告表X1 + + + + > 下載附件" : ""; + echo !empty($row['official_check_file']) ? "下載附件" : ""; ?> - + 確認時間 + + 確認人 + + + @@ -2031,6 +2232,7 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; $('#site_survey_contact_verify').select2(); checkCustomerPlanningVerifyFileKeyinStatus(); checkDeliveryDateKeyinStatus(); + checkAssociationCheckTypeStatus(); }); function checkCustomerPlanningVerifyFileKeyinStatus() { @@ -2060,6 +2262,22 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; $("#delivery_date").prop("disabled", true); } } + + function checkAssociationCheckTypeStatus() { + if ($("input[name*='association_check_type']:checked").val() == "1") { + $(".official_check_tr").show(); + } else { + $(".official_check_tr").hide(); + } + $("input[name*='association_check_type']").on("change", function() { + if ($("input[name*='association_check_type']:checked").val() == "1") { + $(".official_check_tr").show(); + } else { + $(".official_check_tr").hide(); + } + }); + } + $(function() { var tab = $('#tab').val(); $("#tabs").tabs({ @@ -2148,6 +2366,22 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; inputChangeOutsourcer2(oursourcer_input_arr[i]); } + var files_arr = [ + 'official_check_file', + 'official_check_1_file', + 'official_check_2_file', + 'official_check_3_file', + 'official_check_4_file', + 'official_check_5_file', + 'official_check_6_file', + 'official_check_7_file', + 'official_check_8_file', + 'official_check_9_file' + ] + for (var i = 0; i < files_arr.length; i++) { + inputFilesChange(files_arr[i]); + } + }); function inputChangeCatchTime(input_name) { @@ -2169,6 +2403,13 @@ include "wipwhole-renovate-rec-invoice-edit-submit.php"; }); } + function inputFilesChange(input_name) { + $("#" + input_name).on("change", function() { + $("#" + input_name + "_owner").val(""); + $("#" + input_name + "_date").val(formatDate()); + }) + } + function formatDate() { var timestamp = Date.now(); var date = new Date(timestamp); diff --git a/wms/wipwhole-renovate-rec-invoice.php b/wms/wipwhole-renovate-rec-invoice.php index 86a99848..2c01c5b0 100644 --- a/wms/wipwhole-renovate-rec-invoice.php +++ b/wms/wipwhole-renovate-rec-invoice.php @@ -124,6 +124,7 @@ if ($department_id == "321" || $department_id == "220") { $shengguanok_status_file = ''; $shengguanok_status_at = ''; $shengguanok_status_owner = ''; + $area_no = ''; $creater = ''; $create_at = ''; @@ -217,6 +218,7 @@ if ($department_id == "321" || $department_id == "220") { $shengguanok_status_at = postCheck('shengguanok_status_at'); $shengguanok_status_owner = postCheck('shengguanok_status_owner'); $qc_official_type = postCheck('qc_official_type'); + $area_no = postCheck('area_no'); $creater = postCheck('creater'); $create_at = date("Y-m-d H:i:s"); @@ -310,6 +312,7 @@ if ($department_id == "321" || $department_id == "220") { shengguanok_status_at, shengguanok_status_owner, qc_official_type, + area_no, creater, create_at ) VALUES ( @@ -400,6 +403,7 @@ if ($department_id == "321" || $department_id == "220") { '$shengguanok_status_at', '$shengguanok_status_owner', '$qc_official_type', + '$area_no', '$creater', '$create_at' ) @@ -535,8 +539,18 @@ if ($department_id == "321" || $department_id == "220") { - - + + 分區 + + + + diff --git a/wms/wipwholeinstall-index-export-excel.php b/wms/wipwholeinstall-index-export-excel.php index 6a96ab31..61f46a4c 100644 --- a/wms/wipwholeinstall-index-export-excel.php +++ b/wms/wipwholeinstall-index-export-excel.php @@ -112,7 +112,8 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { '營業人員', '安裝圖上傳狀態', '完工驗收單上傳狀態', - '移交日附件(核准函)上傳狀態' + '移交日附件(核准函)上傳狀態', + '工務助理備註' ]; $sheet->setTitle('新梯出貨預定表'); for ($i = 0; $i < count($colTitleArr); $i++) @@ -182,32 +183,13 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { accountidToName($row['salesid']), empty($row['plan_diagram_file']) ? "無" : "已上傳", empty($row['completion_acceptance_file']) ? "無" : "已上傳", - empty($row['delivery_date_file']) ? "無" : "已上傳" + empty($row['delivery_date_file']) ? "無" : "已上傳", + $row['warehouse_assistant_remark'] ]; - // $colContentArr2 = [ - // !empty($row['tryrun_outsourcer']) ? "試車:" . $row['tryrun_outsourcer'] : "", - // substr($row['estimate_tryrun_outsourcer_date'], 0, 10), - // substr($row['tryrun_outsourcer_date'], 0, 10), - // substr($row['estimate_tryrun_start_date'], 0, 10), - // substr($row['tryrun_start_date'], 0, 10), - // substr($row['estimate_tryrun_end_date'], 0, 10), - // substr($row['tryrun_end_date'], 0, 10) - // ]; for ($j = 0; $j < count($colContentArr); $j++) { $sheet->setCellValue(num2alpha($j) . $i, $colContentArr[$j]); - // if ($two_row_status) { - // if ($j < 11 || $j > 17) - // $sheet->mergeCells(num2alpha($j) . $i . ':' . num2alpha($j) . ($i + 1)); - // } } - // if ($two_row_status) { - // for ($j = 0; $j < count($colContentArr2); $j++) - // $sheet->setCellValue(num2alpha($j + 11) . ($i + 1), $colContentArr2[$j]); - // } $i++; - // if ($two_row_status) { - // $i++; - // } } diff --git a/wms/wipwholeinstall-renovate-index-export-excel.php b/wms/wipwholeinstall-renovate-index-export-excel.php index 041587bb..93d93ab8 100644 --- a/wms/wipwholeinstall-renovate-index-export-excel.php +++ b/wms/wipwholeinstall-renovate-index-export-excel.php @@ -113,7 +113,8 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { '營業人員', '安裝圖上傳狀態', '完工驗收單上傳狀態', - '移交日附件(核准函)上傳狀態' + '移交日附件(核准函)上傳狀態', + '工務助理備註' ]; $sheet->setTitle('汰改出貨預定表'); @@ -185,7 +186,8 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") { accountidToName($row['salesid']), empty($row['plan_diagram_file']) ? "無" : "已上傳", empty($row['completion_acceptance_file']) ? "無" : "已上傳", - empty($row['delivery_date_file']) ? "無" : "已上傳" + empty($row['delivery_date_file']) ? "無" : "已上傳", + $row['warehouse_assistant_remark'] ]; for ($j = 0; $j < count($colContentArr); $j++) { $sheet->setCellValue(num2alpha($j) . $i, $colContentArr[$j]);