From ecfd9551e1d91d5ddc6eba8d9a542b02107a861e Mon Sep 17 00:00:00 2001 From: FrankCV2048 <1395405735@qq.com> Date: Tue, 14 Jan 2025 23:02:14 +0800 Subject: [PATCH] =?UTF-8?q?:ambulance:=20update=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=8A=93=E5=8F=96=E5=92=8C=E6=89=94=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- COM/COM_Robot.py | 4 +- CU/Catch.py | 44 +- CU/Feeding.py | 40 +- Config/FeedLine.ini | 213 +- Model/RobotModel.py | 3 +- Seting.ini | 6 +- Util/util_language.py | 10 + log/log.log | 16626 ++++------------------------------------ main.py | 7 +- 9 files changed, 1772 insertions(+), 15181 deletions(-) create mode 100644 Util/util_language.py diff --git a/COM/COM_Robot.py b/COM/COM_Robot.py index 7d306bd..9056c0f 100644 --- a/COM/COM_Robot.py +++ b/COM/COM_Robot.py @@ -107,12 +107,14 @@ class RobotClient(TCPClient): def send_emergency_stop(self): self.sendIOControl(Constant.IO_EmergencyPoint, 0) - def sendIOControl(self, IO_bit, IO_Status: int):# + def sendIOControl(self, IO_bit, IO_Status: int, delay=0,emptyList='0'):# IO_command = CMDInstructRequest() + IO_command.emptyList = emptyList io_instruction = Instruction() io_instruction.IO = True io_instruction.io_status = IO_Status + io_instruction.delay = delay io_instruction.point = IO_bit # {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"15","delay":"0"}]} IO_command.dsID = 'HCRemoteCommand' IO_command.instructions.append(io_instruction) diff --git a/CU/Catch.py b/CU/Catch.py index 4044997..1ec5696 100644 --- a/CU/Catch.py +++ b/CU/Catch.py @@ -1,3 +1,4 @@ +import time from enum import Enum import Constant @@ -17,27 +18,46 @@ class Catch: self.robotClient = robotClient self.catch_status = CatchStatus.CNone self.shake_continue = CTon() + self.drop_continue = CTon() + self.take_continue = CTon() self.shakePulse = CClockPulse() self.shake_count = 5 + self.drop_count = 2 + self.is_send_command = False + self.is_send_take_command = False + self.shake_Q = False def run(self): if self.catch_status == CatchStatus.CNone: return if self.catch_status == CatchStatus.CTake: - self.robotClient.sendIOControl(self.robotClient.con_ios[0],1) - if self.robotClient.check_outputQ(self.robotClient.con_ios[0]) or Constant.Debug: - self.catch_status = CatchStatus.COk + if not self.is_send_take_command: + self.robotClient.sendIOControl(self.robotClient.con_ios[0],1) + self.is_send_take_command = True + else: + if self.take_continue.Q(True,self.robotClient.time_delay_take*1000): + self.is_send_take_command = False + self.catch_status = CatchStatus.COk if self.catch_status == CatchStatus.CDrop: - self.robotClient.sendIOControl(self.robotClient.con_ios[0],0) - self.robotClient.sendIOControl(self.robotClient.con_ios[1],1) - # if Constant.Debug or self.robotClient.check_outputQ(self.robotClient.con_ios[1]) and not self.robotClient.check_outputQ(self.robotClient.con_ios[0]): - self.catch_status = CatchStatus.COk + if not self.is_send_command: + self.robotClient.sendIOControl(self.robotClient.con_ios[0], 0) + for _ in range(self.drop_count): + self.robotClient.sendIOControl(self.robotClient.con_ios[1], 1, delay=self.robotClient.time_delay_put) + self.robotClient.sendIOControl(self.robotClient.con_ios[1], 0) + + self.robotClient.sendIOControl(self.robotClient.con_ios[1], 1) + self.is_send_command = True + if self.drop_continue.Q(True,self.robotClient.time_delay_put*1000*self.drop_count): + # if Constant.Debug or self.robotClient.check_outputQ(self.robotClient.con_ios[1]) and not self.robotClient.check_outputQ(self.robotClient.con_ios[0]): + self.is_send_command = False + self.catch_status = CatchStatus.COk + self.drop_continue.SetReset() + if self.catch_status == CatchStatus.CShake: - if not self.shake_continue.Q(True, 1500): - shakeQ = self.shakePulse.Q(True, 50, 50) - self.robotClient.sendIOControl(self.robotClient.con_ios[2], 1 if shakeQ else 0) - print("正在震动" if shakeQ else "震动结束") + if not self.shake_continue.Q(True, 600): # 1500 + self.shake_Q = not self.shake_Q # 10 + self.robotClient.sendIOControl(self.robotClient.con_ios[2], 1 if self.shake_Q else 0) else: self.shake_continue.SetReset() self.catch_status = CatchStatus.COk @@ -46,7 +66,7 @@ class Catch: print("震动结束") if self.catch_status == CatchStatus.COk: - self.robotClient.sendIOControl(self.robotClient.con_ios[1], 0) + self.robotClient.sendIOControl(self.robotClient.con_ios[1], 0,emptyList='1') pass diff --git a/CU/Feeding.py b/CU/Feeding.py index 484123b..8a9f7d9 100644 --- a/CU/Feeding.py +++ b/CU/Feeding.py @@ -208,6 +208,7 @@ class Feeding(QObject): self.init_detection_image() self.pause = False self.cRis_photo = CRisOrFall() + self.cRis_shake = CRisOrFall() self.feed_Mid_Status = FeedMidStatus.FMid_Start self.is_reverse = False # 复位集合 @@ -316,9 +317,10 @@ class Feeding(QObject): elif self.feedStatus == FeedStatus.FMid: - self.log_signal.emit(logging.INFO, Constant.str_feed_mid) + feed_pos = self.get_current_position(self.is_reverse) if feed_pos.get_position().compare(real_position): + self.log_signal.emit(logging.INFO, Constant.str_feed_mid) self.next_position(self.is_reverse) @@ -450,7 +452,7 @@ class Feeding(QObject): if self.catch.catch_status == CatchStatus.COk : self.catch.catch_status = CatchStatus.CNone #self.feedConfig.feedLine.set_take_position(None) - time.sleep(self.robotClient.time_delay_take) + # time.sleep(self.robotClient.time_delay_take) self.log_signal.emit(logging.INFO, Constant.str_feed_take_success) self.next_position() @@ -466,21 +468,23 @@ class Feeding(QObject): elif self.feedStatus == FeedStatus.FBroken1: - self.log_signal.emit(logging.INFO, Constant.str_feed_broken) + if self.get_current_position().get_position().compare(real_position): + self.log_signal.emit(logging.INFO, Constant.str_feed_broken) self.next_position() elif self.feedStatus == FeedStatus.FBroken2: - self.log_signal.emit(logging.INFO, Constant.str_feed_broken) + if self.get_current_position().get_position().compare(real_position): + self.log_signal.emit(logging.INFO, Constant.str_feed_broken) self.next_position() elif self.feedStatus == FeedStatus.FShake: - self.log_signal.emit(logging.INFO, Constant.str_feed_shake) + if self.get_current_position().get_position().compare(real_position,is_action=True): # TODO 震动方案 - + self.log_signal.emit(logging.INFO, Constant.str_feed_shake) if self.catch.catch_status == CatchStatus.CNone: self.catch.catch_status = CatchStatus.CShake @@ -489,7 +493,6 @@ class Feeding(QObject): return if self.catch.catch_status == CatchStatus.COk: self.catch.catch_status = CatchStatus.CNone - time.sleep(self.robotClient.time_delay_shake) self.next_position() elif self.feedStatus == FeedStatus.FDropBag: @@ -507,7 +510,7 @@ class Feeding(QObject): return if self.catch.catch_status == CatchStatus.COk: self.catch.catch_status = CatchStatus.CNone - time.sleep(self.robotClient.time_delay_put) + # time.sleep(self.robotClient.time_delay_put) # self.detection.get_position(Point_isVision=False, Box_isPoint=True, First_Depth=True, Iter_Max_Pixel=30, save_img_point=0, Height_reduce=30, width_reduce=30) # self.feedConfig.feedLine.set_take_position(self.get_take_position()) if self.detect.detect_status == DetectStatus.DNone: @@ -587,9 +590,6 @@ class Feeding(QObject): self.reset_status = ResetStatus.RNone self.send_emergency_stop() - - - def return_original_position(self): self.run_reverse = True @@ -672,6 +672,10 @@ class Feeding(QObject): self.log_signal.emit(logging.INFO, f'{Constant.str_feed_io_control}{IO_bit},{IO_Status}') pass + def sendTargPosition1(self, real_position, move_type: MoveType = MoveType.WORLD, speed=5,real_position1=None): + pass + + def sendTargPosition(self, real_position, move_type: MoveType = MoveType.WORLD, speed=5,real_position1=None): position_instruction = Instruction() position_instruction.speed = speed @@ -705,10 +709,12 @@ class Feeding(QObject): try: + print('fuck1',log_str) self.log_signal.emit(logging.INFO, log_str) + print('fuck2',log_str) except: return - + print(request_command) self.robotClient.add_sendQuene(request_command) pass # def get_take_position(self): @@ -778,6 +784,16 @@ class Feeding(QObject): move_type=MoveType.AXIS) else: + # if not reverse and self.feedStatus == FeedStatus.FShake: + # if not reverse: + # if self.cRis_shake.Q(self.feedStatus == FeedStatus.FShake, True): + # pass + # elif self.cRis_shake.Q(self.feedStatus == FeedStatus.FShake, False): + # self.feedStatus = FeedStatus.FShake + # self.sendTargPosition(real_position=feed_pos.get_position(),speed=self.robotClient.feed_speed) + # return + + self.sendTargPosition(real_position=feed_pos.get_position(),speed=self.robotClient.feed_speed) def get_current_position(self,is_reverse=False): diff --git a/Config/FeedLine.ini b/Config/FeedLine.ini index baf99b6..5770eff 100644 --- a/Config/FeedLine.ini +++ b/Config/FeedLine.ini @@ -19,39 +19,26 @@ lineid = 2 status = 3 linetype = 0 -[Position4] -x = 1868.06311 -y = 872.854065 -z = 1265.651855 -u = 12.479004 -v = 1.611398 -w = -127.729263 -id = 4 -order = 2 -lineid = 1 -status = 4 -linetype = 0 - [Position1] -x = 348.84654634488436 -y = 1836.958560527403 -z = 223.84778176988266 -u = 2.3775411141593388 -v = -0.7172354339862681 -w = 95.0492701673298 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 1 order = 4 lineid = 1 -status = 5 +status = 3 linetype = 0 [Position7] -x = 2218.886475 -y = 483.322144 -z = 1371.784302 -u = 8.190439 -v = 7.692511 -w = -143.628922 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 7 order = 0 lineid = 1 @@ -59,94 +46,68 @@ status = 3 linetype = 0 [Position8] -x = 807.391785 -y = 2337.584473 -z = 1852.736816 -u = -0.412497 -v = 9.080836 -w = -110.687553 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 8 -order = 5 +order = 9 lineid = 1 status = 6 linetype = 0 [Position9] -x = 1759.061523 -y = 1738.14978 -z = 1852.472412 -u = 0.723375 -v = 9.708878 -w = -126.572548 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 9 -order = 6 +order = 10 lineid = 1 status = 7 linetype = 0 [Position10] -x = 1759.061523 -y = 1738.14978 -z = 1852.472412 -u = 0.723375 -v = 9.708878 -w = -126.572548 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 10 -order = 7 +order = 11 lineid = 1 status = 8 linetype = 0 -[Position11] -x = 1960.667847 -y = 837.290405 -z = 1688.202637 -u = -0.347183 -v = 0.356827 -w = -147.846161 -id = 11 -order = 8 -lineid = 1 -status = 3 -linetype = 0 - [Position12] -x = 1643.540039 -y = -24.557989 -z = 995.504272 -u = 0.167181 -v = 2.42627 -w = 177.088989 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 12 -order = 9 +order = 12 lineid = 1 status = 9 linetype = 0 [Position2] -x = 762.708984 -y = 1915.674561 -z = 1265.639648 -u = 12.478849 -v = 1.611004 -w = -84.483177 +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 id = 2 order = 3 lineid = 1 -status = 3 -linetype = 0 - -[Position5] -x = 1868.06311 -y = 872.854065 -z = 1265.651855 -u = 12.479004 -v = 1.611398 -w = -127.729263 -id = 5 -order = 1 -lineid = 1 -status = 2 +status = 4 linetype = 0 [Position6] @@ -162,3 +123,81 @@ lineid = 2 status = 2 linetype = 0 +[Position13] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 13 +order = 1 +lineid = 1 +status = 3 +linetype = 0 + +[Position14] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 14 +order = 5 +lineid = 1 +status = 3 +linetype = 0 + +[Position5] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 5 +order = 6 +lineid = 1 +status = 5 +linetype = 0 + +[Position15] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 15 +order = 2 +lineid = 1 +status = 2 +linetype = 0 + +[Position4] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 4 +order = 7 +lineid = 1 +status = 3 +linetype = 0 + +[Position16] +x = 7.0 +y = 50.0 +z = 1.0 +u = 12.0 +v = 0.0 +w = 1.0 +id = 16 +order = 8 +lineid = 1 +status = 3 +linetype = 0 + diff --git a/Model/RobotModel.py b/Model/RobotModel.py index 6a82a53..a215f95 100644 --- a/Model/RobotModel.py +++ b/Model/RobotModel.py @@ -149,7 +149,6 @@ class Instruction: self.m5_p = 0.0 self.ckStatus = '0x3F' self.speed = 10 - self.delay = 1.0 self.smooth = 0 self.tool=2 self.IO = False @@ -181,7 +180,7 @@ class CMDInstructRequest: def __init__(self): self.dsID = 'www.hc-system.com.HCRemoteCommand' self.reqType = "AddRCC" - self.emptyList = '1' #清空机械臂的远程命令数据 + self.emptyList = '0' #清空机械臂的远程命令数据 self.instructions = [] def toString(self): diff --git a/Seting.ini b/Seting.ini index 451f0df..dd86660 100644 --- a/Seting.ini +++ b/Seting.ini @@ -47,7 +47,7 @@ photo_v5 = 0.0 photo_w5 = 1.0 linecount = 2 remain_linename = 1 -remain_count = 998 +remain_count = 999 io_take_addr = 8 io_zip_addr = 11 io_shake_addr = 12 @@ -55,10 +55,12 @@ takedelay = 0.2 putdelay = 0.1 shakedelay = 1.0 max_angle_interval = 20 +smooth = 9 +dynamic_height = 520.0 [Speed] debug_speed = 50 -feed_speed = 10 +feed_speed = 550 reset_speed = 35 [Origin] diff --git a/Util/util_language.py b/Util/util_language.py new file mode 100644 index 0000000..87e9c3b --- /dev/null +++ b/Util/util_language.py @@ -0,0 +1,10 @@ +from PyQt5.QtCore import QTranslator, QLocale, QLibraryInfo + + +def show_translated_message_box(app): + # 加载翻译文件 + translator = QTranslator() + locale = QLocale.system().name() # 获取系统语言 + qt_translations_path = QLibraryInfo.path(QLibraryInfo.TranslationsPath) + translator.load(f"qtbase_{locale}", qt_translations_path) + app.installTranslator(translator) \ No newline at end of file diff --git a/log/log.log b/log/log.log index 243d174..9138c0a 100644 --- a/log/log.log +++ b/log/log.log @@ -1,15062 +1,1564 @@ -2024-12-19 20:42:01 - INFO - ϵͳ -2024-12-19 20:42:03 - INFO - Ͷϴ:1 -2024-12-19 20:42:04 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:42:04 - INFO - л -2024-12-19 20:42:04 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:42:04 - INFO - лԶ״̬ -2024-12-19 20:42:05 - INFO - һȷ -2024-12-19 20:42:05 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:42:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:42:05 - INFO - IO: 31 -2024-12-19 20:42:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:42:10 - INFO - IO: 30 -2024-12-19 20:42:10 - INFO - ͶϿʼ -2024-12-19 20:42:10 - ERROR - ȸλԭ -2024-12-19 20:42:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:40 - INFO - ԭ:7.0,50.0,1.0 -2024-12-19 20:42:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:40 - INFO - ԭ:7.0,50.0,1.0 -2024-12-19 20:42:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:42 - INFO - Ͷϴ:1 -2024-12-19 20:42:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:43 - INFO - -2024-12-19 20:42:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 20:42:43 - INFO - Ͷֹͣ -2024-12-19 20:42:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:44 - INFO - Ͷϴ:1 -2024-12-19 20:42:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:45 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:42:45 - INFO - л -2024-12-19 20:42:45 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:42:45 - INFO - лԶ״̬ -2024-12-19 20:42:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:45 - INFO - һȷ -2024-12-19 20:42:45 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:42:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:42:45 - INFO - IO: 31 -2024-12-19 20:42:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:42:50 - INFO - IO: 30 -2024-12-19 20:42:50 - INFO - ͶϿʼ -2024-12-19 20:42:50 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:50 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - INFO - ͶϿʼ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:51 - INFO - ƶλλ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - INFO - ƶλλ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - INFO - ǷȫͶ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - INFO - ǷȫͶ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - INFO - ƶλ -2024-12-19 20:42:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:51 - INFO - ƶλ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - ERROR - ʶͼʧ -2024-12-19 20:42:51 - INFO - ƶλ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:51 - ERROR - ʶͼʧ -2024-12-19 20:42:51 - INFO - ƶλλ -2024-12-19 20:42:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - INFO - ƶλλ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - INFO - ƶץλ -2024-12-19 20:42:52 - INFO - ץϵλ -2024-12-19 20:42:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:42:52 - INFO - IO: 81 -2024-12-19 20:42:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:42:52 - INFO - IO: 110 -2024-12-19 20:42:52 - INFO - ƶץλ -2024-12-19 20:42:52 - INFO - ץϵλ -2024-12-19 20:42:52 - INFO - ץϳɹ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - INFO - ƶλλ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - INFO - ƶλλ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:52 - INFO - ƶƴλ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:52 - INFO - ƶƴλ -2024-12-19 20:42:52 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 121 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 120 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 120 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 121 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 121 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 120 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 120 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:53 - INFO - IO: 121 -2024-12-19 20:42:53 - INFO - ҡ -2024-12-19 20:42:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 121 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 120 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 120 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 121 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 121 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 120 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 120 -2024-12-19 20:42:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:42:54 - INFO - IO: 110 -2024-12-19 20:42:54 - INFO - ҡ -2024-12-19 20:42:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:42:55 - INFO - ƶӿմ -2024-12-19 20:42:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:42:56 - INFO - IO: 80 -2024-12-19 20:42:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:42:56 - INFO - IO: 111 -2024-12-19 20:42:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:42:56 - INFO - IO: 110 -2024-12-19 20:42:56 - INFO - ƶӿմ -2024-12-19 20:42:56 - INFO - ʣͶϴ0 -2024-12-19 20:42:56 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:56 - INFO - ƶλ -2024-12-19 20:42:56 - INFO - ͶϽ -2024-12-19 20:42:56 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:42:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:42:56 - INFO - λɹ -2024-12-19 20:42:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:14 - INFO - û˳ -2024-12-19 20:43:23 - INFO - ϵͳ -2024-12-19 20:43:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:27 - INFO - Ͷϴ:1 -2024-12-19 20:43:28 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:43:28 - INFO - л -2024-12-19 20:43:28 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:43:28 - INFO - лԶ״̬ -2024-12-19 20:43:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:28 - INFO - һȷ -2024-12-19 20:43:28 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:43:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:43:29 - INFO - IO: 31 -2024-12-19 20:43:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:43:34 - INFO - IO: 30 -2024-12-19 20:43:34 - INFO - ͶϿʼ -2024-12-19 20:43:34 - ERROR - ȸλԭ -2024-12-19 20:43:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:38 - INFO - ԭ:7.0,50.0,1.0 -2024-12-19 20:43:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:39 - INFO - Ͷϴ:1 -2024-12-19 20:43:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:39 - INFO - -2024-12-19 20:43:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 20:43:39 - INFO - Ͷֹͣ -2024-12-19 20:43:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:43:40 - INFO - л -2024-12-19 20:43:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:43:40 - INFO - лԶ״̬ -2024-12-19 20:43:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:41 - INFO - һȷ -2024-12-19 20:43:41 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:43:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:43:41 - INFO - IO: 31 -2024-12-19 20:43:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:43:46 - INFO - IO: 30 -2024-12-19 20:43:46 - INFO - ͶϿʼ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:46 - INFO - ͶϿʼ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:46 - INFO - ƶλλ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:46 - INFO - ƶλλ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:46 - INFO - ǷȫͶ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:46 - INFO - ǷȫͶ -2024-12-19 20:43:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:47 - INFO - ƶλ -2024-12-19 20:43:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:47 - ERROR - ʶͼʧ -2024-12-19 20:43:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:47 - INFO - ƶλ -2024-12-19 20:43:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:47 - ERROR - ʶͼʧ -2024-12-19 20:43:47 - INFO - ƶλλ -2024-12-19 20:43:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:47 - INFO - ƶλλ -2024-12-19 20:43:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:47 - INFO - ƶץλ -2024-12-19 20:43:47 - INFO - ץϵλ -2024-12-19 20:43:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:43:47 - INFO - IO: 81 -2024-12-19 20:43:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:43:47 - INFO - IO: 110 -2024-12-19 20:43:47 - INFO - ƶץλ -2024-12-19 20:43:47 - INFO - ץϵλ -2024-12-19 20:43:48 - INFO - ץϳɹ -2024-12-19 20:43:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:48 - INFO - ƶλλ -2024-12-19 20:43:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:48 - INFO - ƶλλ -2024-12-19 20:43:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:48 - INFO - ƶƴλ -2024-12-19 20:43:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:48 - INFO - ƶƴλ -2024-12-19 20:43:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:48 - INFO - ҡ -2024-12-19 20:43:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:48 - INFO - IO: 121 -2024-12-19 20:43:48 - INFO - ҡ -2024-12-19 20:43:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:48 - INFO - IO: 120 -2024-12-19 20:43:48 - INFO - ҡ -2024-12-19 20:43:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:48 - INFO - IO: 120 -2024-12-19 20:43:48 - INFO - ҡ -2024-12-19 20:43:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 121 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 121 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 120 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 120 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 121 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 121 -2024-12-19 20:43:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 120 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 120 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:49 - INFO - IO: 121 -2024-12-19 20:43:49 - INFO - ҡ -2024-12-19 20:43:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:43:50 - INFO - IO: 121 -2024-12-19 20:43:50 - INFO - ҡ -2024-12-19 20:43:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:50 - INFO - IO: 120 -2024-12-19 20:43:50 - INFO - ҡ -2024-12-19 20:43:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:43:50 - INFO - IO: 120 -2024-12-19 20:43:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:43:50 - INFO - IO: 110 -2024-12-19 20:43:50 - INFO - ҡ -2024-12-19 20:43:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:51 - INFO - ƶӿմ -2024-12-19 20:43:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:43:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:43:51 - INFO - IO: 80 -2024-12-19 20:43:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:43:51 - INFO - IO: 111 -2024-12-19 20:43:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:43:51 - INFO - IO: 110 -2024-12-19 20:43:51 - INFO - ƶӿմ -2024-12-19 20:43:51 - INFO - ʣͶϴ0 -2024-12-19 20:43:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:51 - INFO - ƶλ -2024-12-19 20:43:51 - INFO - ͶϽ -2024-12-19 20:43:51 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:43:51 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:43:51 - INFO - λɹ -2024-12-19 20:43:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:44:53 - INFO - û˳ -2024-12-19 20:45:02 - INFO - ϵͳ -2024-12-19 20:45:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:06 - INFO - Ͷϴ:1 -2024-12-19 20:45:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:07 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:45:07 - INFO - л -2024-12-19 20:45:07 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:45:07 - INFO - лԶ״̬ -2024-12-19 20:45:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:07 - INFO - һȷ -2024-12-19 20:45:07 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:45:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:45:07 - INFO - IO: 31 -2024-12-19 20:45:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:45:12 - INFO - IO: 30 -2024-12-19 20:45:12 - INFO - ͶϿʼ -2024-12-19 20:45:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:13 - INFO - ͶϿʼ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - INFO - ƶλλ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - INFO - ƶλλ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - INFO - ǷȫͶ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:13 - INFO - ǷȫͶ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - INFO - ƶλ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - ERROR - ʶͼʧ -2024-12-19 20:45:13 - INFO - ƶλ -2024-12-19 20:45:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:13 - ERROR - ʶͼʧ -2024-12-19 20:45:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:14 - INFO - ƶλλ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:14 - INFO - ƶλλ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:14 - INFO - ƶץλ -2024-12-19 20:45:14 - INFO - ץϵλ -2024-12-19 20:45:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:45:14 - INFO - IO: 81 -2024-12-19 20:45:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:45:14 - INFO - IO: 110 -2024-12-19 20:45:14 - INFO - ƶץλ -2024-12-19 20:45:14 - INFO - ץϵλ -2024-12-19 20:45:14 - INFO - ץϳɹ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:14 - INFO - ƶλλ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:14 - INFO - ƶλλ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:14 - INFO - ƶƴλ -2024-12-19 20:45:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:15 - INFO - ƶƴλ -2024-12-19 20:45:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 121 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 120 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 120 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 121 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 121 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 120 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:15 - INFO - IO: 120 -2024-12-19 20:45:15 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 121 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 121 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 120 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 120 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 121 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 121 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 120 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 120 -2024-12-19 20:45:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:45:16 - INFO - IO: 110 -2024-12-19 20:45:16 - INFO - ҡ -2024-12-19 20:45:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:17 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:17 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:17 - INFO - ƶӿմ -2024-12-19 20:45:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:45:18 - INFO - IO: 80 -2024-12-19 20:45:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:45:18 - INFO - IO: 111 -2024-12-19 20:45:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:45:18 - INFO - IO: 110 -2024-12-19 20:45:18 - INFO - ƶӿմ -2024-12-19 20:45:18 - INFO - ʣͶϴ0 -2024-12-19 20:45:18 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:18 - INFO - ƶλ -2024-12-19 20:45:18 - INFO - ͶϽ -2024-12-19 20:45:18 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:45:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:45:18 - INFO - λɹ -2024-12-19 20:45:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:45:35 - INFO - û˳ -2024-12-19 20:46:05 - INFO - ϵͳ -2024-12-19 20:46:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:10 - INFO - Ͷϴ:1 -2024-12-19 20:46:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:46:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:10 - INFO - л -2024-12-19 20:46:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:46:10 - INFO - лԶ״̬ -2024-12-19 20:46:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:11 - INFO - һȷ -2024-12-19 20:46:11 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:46:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:46:11 - INFO - IO: 31 -2024-12-19 20:46:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:46:16 - INFO - IO: 30 -2024-12-19 20:46:16 - INFO - ͶϿʼ -2024-12-19 20:46:16 - ERROR - ȸλԭ -2024-12-19 20:46:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:20 - INFO - ԭ:7.0,50.0,1.0 -2024-12-19 20:46:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:21 - INFO - -2024-12-19 20:46:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 20:46:21 - INFO - Ͷֹͣ -2024-12-19 20:46:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:22 - INFO - Ͷϴ:11 -2024-12-19 20:46:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:23 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:46:23 - INFO - л -2024-12-19 20:46:23 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:46:23 - INFO - лԶ״̬ -2024-12-19 20:46:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:24 - INFO - һȷ -2024-12-19 20:46:24 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:46:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:46:24 - INFO - IO: 31 -2024-12-19 20:46:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:46:29 - INFO - IO: 30 -2024-12-19 20:46:29 - INFO - ͶϿʼ -2024-12-19 20:46:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:29 - INFO - ͶϿʼ -2024-12-19 20:46:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:29 - INFO - ƶλλ -2024-12-19 20:46:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:29 - INFO - ƶλλ -2024-12-19 20:46:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:29 - INFO - ǷȫͶ -2024-12-19 20:46:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - INFO - ǷȫͶ -2024-12-19 20:46:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - INFO - ƶλ -2024-12-19 20:46:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - ERROR - ʶͼʧ -2024-12-19 20:46:30 - INFO - ƶλ -2024-12-19 20:46:30 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:30 - INFO - ƶλ -2024-12-19 20:46:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - ERROR - ʶͼʧ -2024-12-19 20:46:30 - INFO - ƶλλ -2024-12-19 20:46:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:30 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:30 - INFO - ƶλλ -2024-12-19 20:46:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:30 - INFO - ƶץλ -2024-12-19 20:46:30 - INFO - ץϵλ -2024-12-19 20:46:30 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:46:30 - INFO - IO: 81 -2024-12-19 20:46:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:30 - INFO - IO: 110 -2024-12-19 20:46:30 - INFO - ƶץλ -2024-12-19 20:46:30 - INFO - ץϵλ -2024-12-19 20:46:31 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:31 - INFO - ץϳɹ -2024-12-19 20:46:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:31 - INFO - ƶλλ -2024-12-19 20:46:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:31 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:31 - INFO - ƶλλ -2024-12-19 20:46:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:31 - INFO - ƶƴλ -2024-12-19 20:46:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:31 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:31 - INFO - ƶƴλ -2024-12-19 20:46:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:31 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:31 - INFO - ҡ -2024-12-19 20:46:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:31 - INFO - IO: 121 -2024-12-19 20:46:31 - INFO - ҡ -2024-12-19 20:46:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:31 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:31 - INFO - IO: 120 -2024-12-19 20:46:31 - INFO - ҡ -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 120 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 121 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 121 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 120 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 120 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 121 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 121 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 120 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:32 - INFO - IO: 120 -2024-12-19 20:46:32 - INFO - ҡ -2024-12-19 20:46:32 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:33 - INFO - IO: 121 -2024-12-19 20:46:33 - INFO - ҡ -2024-12-19 20:46:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:33 - INFO - IO: 121 -2024-12-19 20:46:33 - INFO - ҡ -2024-12-19 20:46:33 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:33 - INFO - IO: 120 -2024-12-19 20:46:33 - INFO - ҡ -2024-12-19 20:46:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:33 - INFO - IO: 120 -2024-12-19 20:46:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:33 - INFO - IO: 110 -2024-12-19 20:46:33 - INFO - ҡ -2024-12-19 20:46:33 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:33 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:33 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:33 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:34 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:34 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:34 - INFO - ƶӿմ -2024-12-19 20:46:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:46:34 - INFO - IO: 80 -2024-12-19 20:46:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:46:34 - INFO - IO: 111 -2024-12-19 20:46:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:34 - INFO - IO: 110 -2024-12-19 20:46:34 - INFO - ƶӿմ -2024-12-19 20:46:34 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:34 - INFO - ʣͶϴ10 -2024-12-19 20:46:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:34 - INFO - ƶλ -2024-12-19 20:46:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:34 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:34 - ERROR - ʶͼʧ -2024-12-19 20:46:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:34 - INFO - ƶλλ -2024-12-19 20:46:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:35 - INFO - ƶλλ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - INFO - ƶץλ -2024-12-19 20:46:35 - INFO - ץϵλ -2024-12-19 20:46:35 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:46:35 - INFO - IO: 81 -2024-12-19 20:46:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:35 - INFO - IO: 110 -2024-12-19 20:46:35 - INFO - ƶץλ -2024-12-19 20:46:35 - INFO - ץϵλ -2024-12-19 20:46:35 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:35 - INFO - ץϳɹ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - INFO - ƶλλ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:35 - INFO - ƶλλ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - INFO - ƶƴλ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:35 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:35 - INFO - ƶƴλ -2024-12-19 20:46:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 120 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 121 -2024-12-19 20:46:36 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 121 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 120 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 120 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:36 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 121 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 121 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:36 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:36 - INFO - IO: 120 -2024-12-19 20:46:36 - INFO - ҡ -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 120 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 121 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:37 - INFO - IO: 121 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 120 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:37 - INFO - IO: 120 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 121 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 120 -2024-12-19 20:46:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:37 - INFO - IO: 110 -2024-12-19 20:46:37 - INFO - ҡ -2024-12-19 20:46:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:37 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:38 - INFO - ƶӿմ -2024-12-19 20:46:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:46:38 - INFO - IO: 80 -2024-12-19 20:46:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:46:38 - INFO - IO: 111 -2024-12-19 20:46:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:38 - INFO - IO: 110 -2024-12-19 20:46:38 - INFO - ƶӿմ -2024-12-19 20:46:39 - INFO - ʣͶϴ9 -2024-12-19 20:46:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:39 - INFO - ƶλ -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - ERROR - ʶͼʧ -2024-12-19 20:46:39 - INFO - ƶλλ -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:39 - INFO - ƶλλ -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - INFO - ƶץλ -2024-12-19 20:46:39 - INFO - ץϵλ -2024-12-19 20:46:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:46:39 - INFO - IO: 81 -2024-12-19 20:46:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:39 - INFO - IO: 110 -2024-12-19 20:46:39 - INFO - ƶץλ -2024-12-19 20:46:39 - INFO - ץϵλ -2024-12-19 20:46:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:39 - INFO - ץϳɹ -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - INFO - ƶλλ -2024-12-19 20:46:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - ƶλλ -2024-12-19 20:46:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:40 - INFO - ƶƴλ -2024-12-19 20:46:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - ƶƴλ -2024-12-19 20:46:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 121 -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 120 -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 120 -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 121 -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 121 -2024-12-19 20:46:40 - INFO - ҡ -2024-12-19 20:46:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:40 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 121 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 121 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:41 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:41 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 121 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 121 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 120 -2024-12-19 20:46:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:41 - INFO - IO: 110 -2024-12-19 20:46:41 - INFO - ҡ -2024-12-19 20:46:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:43 - INFO - ƶӿմ -2024-12-19 20:46:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:46:43 - INFO - IO: 80 -2024-12-19 20:46:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:46:43 - INFO - IO: 111 -2024-12-19 20:46:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:43 - INFO - IO: 110 -2024-12-19 20:46:43 - INFO - ƶӿմ -2024-12-19 20:46:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:43 - INFO - ʣͶϴ8 -2024-12-19 20:46:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:43 - INFO - ƶλ -2024-12-19 20:46:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:43 - ERROR - ʶͼʧ -2024-12-19 20:46:43 - INFO - ƶλλ -2024-12-19 20:46:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:43 - INFO - ƶλλ -2024-12-19 20:46:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:43 - INFO - ƶץλ -2024-12-19 20:46:43 - INFO - ץϵλ -2024-12-19 20:46:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:46:43 - INFO - IO: 81 -2024-12-19 20:46:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:43 - INFO - IO: 110 -2024-12-19 20:46:43 - INFO - ƶץλ -2024-12-19 20:46:43 - INFO - ץϵλ -2024-12-19 20:46:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:44 - INFO - ץϳɹ -2024-12-19 20:46:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:44 - INFO - ƶλλ -2024-12-19 20:46:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:44 - INFO - ƶλλ -2024-12-19 20:46:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:44 - INFO - ƶƴλ -2024-12-19 20:46:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:44 - INFO - ƶƴλ -2024-12-19 20:46:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:44 - INFO - ҡ -2024-12-19 20:46:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:44 - INFO - IO: 120 -2024-12-19 20:46:44 - INFO - ҡ -2024-12-19 20:46:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:44 - INFO - IO: 121 -2024-12-19 20:46:44 - INFO - ҡ -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 121 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 120 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 120 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 121 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 121 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 120 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 120 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 121 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:45 - INFO - IO: 121 -2024-12-19 20:46:45 - INFO - ҡ -2024-12-19 20:46:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:46 - INFO - IO: 120 -2024-12-19 20:46:46 - INFO - ҡ -2024-12-19 20:46:46 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:46 - INFO - IO: 120 -2024-12-19 20:46:46 - INFO - ҡ -2024-12-19 20:46:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:46:46 - INFO - IO: 121 -2024-12-19 20:46:46 - INFO - ҡ -2024-12-19 20:46:46 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:46:46 - INFO - IO: 120 -2024-12-19 20:46:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:46 - INFO - IO: 110 -2024-12-19 20:46:46 - INFO - ҡ -2024-12-19 20:46:46 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:46 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:46 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:47 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:47 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:47 - INFO - ƶӿմ -2024-12-19 20:46:47 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:46:47 - INFO - IO: 80 -2024-12-19 20:46:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:46:47 - INFO - IO: 111 -2024-12-19 20:46:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:46:47 - INFO - IO: 110 -2024-12-19 20:46:47 - INFO - ƶӿմ -2024-12-19 20:46:47 - INFO - ʣͶϴ7 -2024-12-19 20:46:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:47 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:47 - INFO - ƶλ -2024-12-19 20:46:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:46:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:46:47 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:48 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:48 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:48 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:48 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:48 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:49 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:49 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:49 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:49 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:49 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:50 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:50 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:50 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:50 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:51 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:51 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:51 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:51 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:51 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:52 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:52 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:52 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:52 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:52 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:53 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:53 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:53 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:53 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:53 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:54 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:54 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:54 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:54 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:54 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:55 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:55 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:55 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:55 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:55 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:56 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:56 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:56 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:56 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:57 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:57 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:57 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:57 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:57 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:58 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:58 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:58 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:58 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:58 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:59 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:59 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:46:59 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:59 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:46:59 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:00 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:00 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:00 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:00 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:00 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:01 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:01 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:01 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:01 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:01 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:02 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:02 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:04 - ERROR - ʶͼʧ -2024-12-19 20:47:04 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:05 - INFO - ƶλλ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:05 - INFO - ƶλλ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:05 - INFO - ƶץλ -2024-12-19 20:47:05 - INFO - ץϵλ -2024-12-19 20:47:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:47:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:05 - INFO - IO: 81 -2024-12-19 20:47:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:05 - INFO - IO: 110 -2024-12-19 20:47:05 - INFO - ƶץλ -2024-12-19 20:47:05 - INFO - ץϵλ -2024-12-19 20:47:05 - INFO - ץϳɹ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:05 - INFO - ƶλλ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:05 - INFO - ƶλλ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:05 - INFO - ƶƴλ -2024-12-19 20:47:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:06 - INFO - ƶƴλ -2024-12-19 20:47:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 121 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 120 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 120 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:06 - INFO - IO: 121 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 121 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 120 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:06 - INFO - IO: 120 -2024-12-19 20:47:06 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 121 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 121 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 120 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 120 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 121 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 121 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 120 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 120 -2024-12-19 20:47:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:07 - INFO - IO: 110 -2024-12-19 20:47:07 - INFO - ҡ -2024-12-19 20:47:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:08 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:09 - INFO - ƶӿմ -2024-12-19 20:47:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:47:09 - INFO - IO: 80 -2024-12-19 20:47:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:47:09 - INFO - IO: 111 -2024-12-19 20:47:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:09 - INFO - IO: 110 -2024-12-19 20:47:09 - INFO - ƶӿմ -2024-12-19 20:47:09 - INFO - ʣͶϴ6 -2024-12-19 20:47:09 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:09 - INFO - ƶλ -2024-12-19 20:47:09 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:13 - ERROR - ʶͼʧ -2024-12-19 20:47:13 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:14 - INFO - ƶλλ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:14 - INFO - ƶλλ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:14 - INFO - ƶץλ -2024-12-19 20:47:14 - INFO - ץϵλ -2024-12-19 20:47:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:47:14 - INFO - IO: 81 -2024-12-19 20:47:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:14 - INFO - IO: 110 -2024-12-19 20:47:14 - INFO - ƶץλ -2024-12-19 20:47:14 - INFO - ץϵλ -2024-12-19 20:47:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:14 - INFO - ץϳɹ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:14 - INFO - ƶλλ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:14 - INFO - ƶλλ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:14 - INFO - ƶƴλ -2024-12-19 20:47:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:15 - INFO - ƶƴλ -2024-12-19 20:47:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 120 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 121 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 121 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:15 - INFO - IO: 120 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 120 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 121 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:15 - INFO - IO: 121 -2024-12-19 20:47:15 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 120 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 120 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 121 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 121 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 120 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 120 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 121 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:16 - INFO - IO: 120 -2024-12-19 20:47:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:16 - INFO - IO: 110 -2024-12-19 20:47:16 - INFO - ҡ -2024-12-19 20:47:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:17 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:17 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:17 - INFO - ƶӿմ -2024-12-19 20:47:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:47:18 - INFO - IO: 80 -2024-12-19 20:47:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:47:18 - INFO - IO: 111 -2024-12-19 20:47:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:18 - INFO - IO: 110 -2024-12-19 20:47:18 - INFO - ƶӿմ -2024-12-19 20:47:18 - INFO - ʣͶϴ5 -2024-12-19 20:47:18 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:18 - INFO - ƶλ -2024-12-19 20:47:18 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:38 - ERROR - ʶͼʧ -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - INFO - ƶλλ -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - INFO - ƶλλ -2024-12-19 20:47:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - INFO - ƶץλ -2024-12-19 20:47:38 - INFO - ץϵλ -2024-12-19 20:47:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:47:38 - INFO - IO: 81 -2024-12-19 20:47:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:38 - INFO - IO: 110 -2024-12-19 20:47:38 - INFO - ƶץλ -2024-12-19 20:47:38 - INFO - ץϵλ -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:38 - INFO - ץϳɹ -2024-12-19 20:47:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:38 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:39 - INFO - ƶλλ -2024-12-19 20:47:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:39 - INFO - ƶλλ -2024-12-19 20:47:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:39 - INFO - ƶƴλ -2024-12-19 20:47:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:39 - INFO - ƶƴλ -2024-12-19 20:47:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:39 - INFO - ҡ -2024-12-19 20:47:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:39 - INFO - IO: 121 -2024-12-19 20:47:39 - INFO - ҡ -2024-12-19 20:47:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:39 - INFO - IO: 120 -2024-12-19 20:47:39 - INFO - ҡ -2024-12-19 20:47:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:39 - INFO - IO: 120 -2024-12-19 20:47:39 - INFO - ҡ -2024-12-19 20:47:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:39 - INFO - IO: 121 -2024-12-19 20:47:39 - INFO - ҡ -2024-12-19 20:47:39 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 121 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 120 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 120 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 121 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 121 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 120 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 120 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 121 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:47:40 - INFO - IO: 121 -2024-12-19 20:47:40 - INFO - ҡ -2024-12-19 20:47:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:41 - INFO - IO: 120 -2024-12-19 20:47:41 - INFO - ҡ -2024-12-19 20:47:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:47:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:41 - INFO - IO: 120 -2024-12-19 20:47:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:41 - INFO - IO: 110 -2024-12-19 20:47:41 - INFO - ҡ -2024-12-19 20:47:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:41 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:42 - INFO - ƶӿմ -2024-12-19 20:47:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:47:42 - INFO - IO: 80 -2024-12-19 20:47:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:47:42 - INFO - IO: 111 -2024-12-19 20:47:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:47:42 - INFO - IO: 110 -2024-12-19 20:47:42 - INFO - ƶӿմ -2024-12-19 20:47:42 - INFO - ʣͶϴ4 -2024-12-19 20:47:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:42 - INFO - ƶλ -2024-12-19 20:47:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:47:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:47:42 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:43 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:44 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:47:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:45 - ERROR - 'NoneType' object has no attribute 'copy' -2024-12-19 20:47:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:07 - INFO - ϵͳ -2024-12-19 20:59:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:12 - INFO - Ͷϴ:1 -2024-12-19 20:59:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:12 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:59:12 - INFO - л -2024-12-19 20:59:12 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:59:12 - INFO - лԶ״̬ -2024-12-19 20:59:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:13 - INFO - һȷ -2024-12-19 20:59:13 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:59:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:59:13 - INFO - IO: 31 -2024-12-19 20:59:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:59:18 - INFO - IO: 30 -2024-12-19 20:59:18 - INFO - ͶϿʼ -2024-12-19 20:59:18 - ERROR - ȸλԭ -2024-12-19 20:59:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:24 - INFO - Ͷϴ:1 -2024-12-19 20:59:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:25 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 20:59:25 - INFO - л -2024-12-19 20:59:25 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 20:59:25 - INFO - лԶ״̬ -2024-12-19 20:59:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:25 - INFO - һȷ -2024-12-19 20:59:25 - INFO - Ӧ1:ͶϿʼ -2024-12-19 20:59:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 20:59:25 - INFO - IO: 31 -2024-12-19 20:59:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 20:59:30 - INFO - IO: 30 -2024-12-19 20:59:30 - INFO - ͶϿʼ -2024-12-19 20:59:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - INFO - ͶϿʼ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:31 - INFO - ƶλλ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - INFO - ƶλλ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - INFO - ǷȫͶ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - INFO - ǷȫͶ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - INFO - ƶλ -2024-12-19 20:59:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:31 - INFO - ƶλ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - ERROR - ʶͼʧ -2024-12-19 20:59:31 - INFO - ƶλ -2024-12-19 20:59:31 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:31 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:31 - ERROR - ʶͼʧ -2024-12-19 20:59:32 - INFO - ƶλλ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:32 - INFO - ƶλλ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:32 - INFO - ƶץλ -2024-12-19 20:59:32 - INFO - ץϵλ -2024-12-19 20:59:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 20:59:32 - INFO - IO: 81 -2024-12-19 20:59:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:59:32 - INFO - IO: 110 -2024-12-19 20:59:32 - INFO - ƶץλ -2024-12-19 20:59:32 - INFO - ץϵλ -2024-12-19 20:59:32 - INFO - ץϳɹ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:32 - INFO - ƶλλ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:32 - INFO - ƶλλ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:32 - INFO - ƶƴλ -2024-12-19 20:59:32 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:32 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:33 - INFO - ƶƴλ -2024-12-19 20:59:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 121 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 120 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 120 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 121 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 121 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 120 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:33 - INFO - IO: 120 -2024-12-19 20:59:33 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:34 - INFO - IO: 121 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 121 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 120 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 120 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 121 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 121 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 120 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 120 -2024-12-19 20:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:59:34 - INFO - IO: 110 -2024-12-19 20:59:34 - INFO - ҡ -2024-12-19 20:59:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 20:59:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:35 - INFO - ƶӿմ -2024-12-19 20:59:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 20:59:36 - INFO - IO: 80 -2024-12-19 20:59:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 20:59:36 - INFO - IO: 111 -2024-12-19 20:59:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 20:59:36 - INFO - IO: 110 -2024-12-19 20:59:36 - INFO - ƶӿմ -2024-12-19 20:59:36 - INFO - ʣͶϴ0 -2024-12-19 20:59:36 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:36 - INFO - ƶλ -2024-12-19 20:59:36 - INFO - ͶϽ -2024-12-19 20:59:36 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 20:59:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 20:59:36 - INFO - λɹ -2024-12-19 20:59:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:00:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:04 - INFO - ϵͳ -2024-12-19 21:01:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:07 - INFO - Ͷϴ:1 -2024-12-19 21:01:08 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 21:01:08 - INFO - л -2024-12-19 21:01:08 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 21:01:08 - INFO - лԶ״̬ -2024-12-19 21:01:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:08 - INFO - һȷ -2024-12-19 21:01:08 - INFO - Ӧ1:ͶϿʼ -2024-12-19 21:01:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 21:01:08 - INFO - IO: 31 -2024-12-19 21:01:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 21:01:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:13 - INFO - IO: 30 -2024-12-19 21:01:13 - INFO - ͶϿʼ -2024-12-19 21:01:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:13 - INFO - ͶϿʼ -2024-12-19 21:01:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:13 - INFO - ƶλλ -2024-12-19 21:01:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - INFO - ƶλλ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - INFO - ǷȫͶ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:14 - INFO - ǷȫͶ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - INFO - ƶλ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - ERROR - ʶͼʧ -2024-12-19 21:01:14 - ERROR - take_no_photo_sigal(QString) needs 1 argument(s), 0 given! -2024-12-19 21:01:14 - INFO - ƶλ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:14 - ERROR - ʶͼʧ -2024-12-19 21:01:14 - ERROR - take_no_photo_sigal(QString) needs 1 argument(s), 0 given! -2024-12-19 21:01:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:14 - INFO - ƶλλ -2024-12-19 21:01:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶλλ -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶץλ -2024-12-19 21:01:15 - INFO - ץϵλ -2024-12-19 21:01:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 21:01:15 - INFO - IO: 81 -2024-12-19 21:01:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:15 - INFO - IO: 110 -2024-12-19 21:01:15 - INFO - ƶץλ -2024-12-19 21:01:15 - INFO - ץϵλ -2024-12-19 21:01:15 - INFO - ץϳɹ -2024-12-19 21:01:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶλλ -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶλλ -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶƴλ -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ƶƴλ -2024-12-19 21:01:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:01:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:01:15 - INFO - ҡ -2024-12-19 21:01:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 121 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 120 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 120 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 121 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 121 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 120 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 120 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 121 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:16 - INFO - IO: 121 -2024-12-19 21:01:16 - INFO - ҡ -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 120 -2024-12-19 21:01:17 - INFO - ҡ -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 120 -2024-12-19 21:01:17 - INFO - ҡ -2024-12-19 21:01:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 121 -2024-12-19 21:01:17 - INFO - ҡ -2024-12-19 21:01:17 - INFO - -2024-12-19 21:01:17 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:01:17 - INFO - Ͷֹͣ -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 121 -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 120 -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 120 -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 110 -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 110 -2024-12-19 21:01:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 110 -2024-12-19 21:01:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:17 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:18 - INFO - IO: 110 -2024-12-19 21:01:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:19 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:20 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:21 - INFO - IO: 110 -2024-12-19 21:01:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:22 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:23 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:24 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:25 - INFO - IO: 110 -2024-12-19 21:01:25 - INFO - -2024-12-19 21:01:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:01:25 - INFO - Ͷֹͣ -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:26 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:27 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:28 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:29 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:30 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:31 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:32 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:33 - INFO - IO: 110 -2024-12-19 21:01:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:34 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:35 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:36 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:37 - INFO - IO: 110 -2024-12-19 21:01:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:38 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:39 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:40 - INFO - IO: 110 -2024-12-19 21:01:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:41 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:42 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:43 - INFO - IO: 110 -2024-12-19 21:01:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:44 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:45 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:46 - INFO - IO: 110 -2024-12-19 21:01:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:47 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:48 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:49 - INFO - IO: 110 -2024-12-19 21:01:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:50 - INFO - IO: 110 -2024-12-19 21:01:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:51 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:52 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:53 - INFO - IO: 110 -2024-12-19 21:01:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:54 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:55 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:56 - INFO - IO: 110 -2024-12-19 21:01:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:57 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:58 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:01:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:01:59 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:00 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:01 - INFO - IO: 110 -2024-12-19 21:02:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:02 - INFO - IO: 110 -2024-12-19 21:02:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:03 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:04 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:05 - INFO - IO: 110 -2024-12-19 21:02:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:06 - INFO - IO: 110 -2024-12-19 21:02:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:07 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:08 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:09 - INFO - IO: 110 -2024-12-19 21:02:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:10 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:11 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:12 - INFO - IO: 110 -2024-12-19 21:02:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:13 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:14 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:15 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:16 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:17 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:18 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:19 - INFO - IO: 110 -2024-12-19 21:02:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:20 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:21 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:22 - INFO - IO: 110 -2024-12-19 21:02:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:23 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:24 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:25 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:26 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:27 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:28 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:29 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:30 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:31 - INFO - IO: 110 -2024-12-19 21:02:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:32 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:33 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:34 - INFO - IO: 110 -2024-12-19 21:02:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:35 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:36 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:37 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:38 - INFO - IO: 110 -2024-12-19 21:02:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:39 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:40 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:41 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:42 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:43 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:44 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:45 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:46 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:47 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:48 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:49 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:50 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:51 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:52 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:53 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:54 - INFO - IO: 110 -2024-12-19 21:02:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:55 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:56 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:57 - INFO - IO: 110 -2024-12-19 21:02:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:58 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:02:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:02:59 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:00 - INFO - IO: 110 -2024-12-19 21:03:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:01 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:02 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:03 - INFO - IO: 110 -2024-12-19 21:03:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:04 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:05 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:06 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:07 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:08 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:09 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:10 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:11 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:12 - INFO - IO: 110 -2024-12-19 21:03:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:13 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:14 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:15 - INFO - IO: 110 -2024-12-19 21:03:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:16 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:17 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:18 - INFO - IO: 110 -2024-12-19 21:03:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:19 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:20 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:21 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:22 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:23 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:24 - INFO - IO: 110 -2024-12-19 21:03:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:25 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:26 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:27 - INFO - IO: 110 -2024-12-19 21:03:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:28 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:29 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:30 - INFO - IO: 110 -2024-12-19 21:03:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:31 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:32 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:33 - INFO - IO: 110 -2024-12-19 21:03:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:34 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:35 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:36 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:37 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:38 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:39 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:40 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:41 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:42 - INFO - IO: 110 -2024-12-19 21:03:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:43 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:44 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:45 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:46 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:47 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:48 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:49 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:50 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:51 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:52 - INFO - IO: 110 -2024-12-19 21:03:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:53 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:54 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:55 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:56 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:57 - INFO - IO: 110 -2024-12-19 21:03:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:58 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:03:59 - INFO - IO: 110 -2024-12-19 21:03:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:00 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:01 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:02 - INFO - IO: 110 -2024-12-19 21:04:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:03 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:04 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:05 - INFO - IO: 110 -2024-12-19 21:04:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:06 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:07 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:08 - INFO - IO: 110 -2024-12-19 21:04:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:09 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:10 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:11 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:12 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:13 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:14 - INFO - IO: 110 -2024-12-19 21:04:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:15 - INFO - IO: 110 -2024-12-19 21:04:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:16 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:17 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:18 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:19 - INFO - IO: 110 -2024-12-19 21:04:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:20 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:21 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:22 - INFO - IO: 110 -2024-12-19 21:04:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:23 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:24 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:25 - INFO - IO: 110 -2024-12-19 21:04:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:26 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:27 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:28 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:29 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:30 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:31 - INFO - IO: 110 -2024-12-19 21:04:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:32 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:33 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:34 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:35 - INFO - IO: 110 -2024-12-19 21:04:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:36 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:37 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:38 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:39 - INFO - IO: 110 -2024-12-19 21:04:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:40 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:41 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:42 - INFO - IO: 110 -2024-12-19 21:04:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:43 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:44 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:45 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:46 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:47 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:48 - INFO - IO: 110 -2024-12-19 21:04:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:49 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:50 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:51 - INFO - IO: 110 -2024-12-19 21:04:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:52 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:53 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:54 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:55 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:56 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:57 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:58 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:04:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:04:59 - INFO - IO: 110 -2024-12-19 21:05:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:00 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:01 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:02 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:03 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:04 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:05 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:06 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:07 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:08 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:09 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:10 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:11 - INFO - IO: 110 -2024-12-19 21:05:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:12 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:13 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:14 - INFO - IO: 110 -2024-12-19 21:05:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:15 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:16 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:17 - INFO - IO: 110 -2024-12-19 21:05:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:18 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:19 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:20 - INFO - IO: 110 -2024-12-19 21:05:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:21 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:22 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:23 - INFO - IO: 110 -2024-12-19 21:05:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:24 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:25 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:26 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:27 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:28 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:29 - INFO - IO: 110 -2024-12-19 21:05:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:30 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:31 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:32 - INFO - IO: 110 -2024-12-19 21:05:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:33 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:34 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:35 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:36 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:37 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:38 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:39 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:40 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:41 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:42 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:43 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:44 - INFO - IO: 110 -2024-12-19 21:05:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:45 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:46 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:47 - INFO - IO: 110 -2024-12-19 21:05:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:48 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:49 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:50 - INFO - IO: 110 -2024-12-19 21:05:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:51 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:52 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:53 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:54 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:55 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:56 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:57 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:58 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:05:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:05:59 - INFO - IO: 110 -2024-12-19 21:06:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:00 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:01 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:02 - INFO - IO: 110 -2024-12-19 21:06:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:03 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:04 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:05 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:06 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:07 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:08 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:09 - INFO - IO: 110 -2024-12-19 21:06:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:10 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:11 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:12 - INFO - IO: 110 -2024-12-19 21:06:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:13 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:14 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:14 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:15 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:16 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:17 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:18 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:19 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:20 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:21 - INFO - IO: 110 -2024-12-19 21:06:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:22 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:23 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:24 - INFO - IO: 110 -2024-12-19 21:06:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:25 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:26 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:27 - INFO - IO: 110 -2024-12-19 21:06:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:28 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:29 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:30 - INFO - IO: 110 -2024-12-19 21:06:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:31 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:32 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:33 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:34 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:35 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:36 - INFO - IO: 110 -2024-12-19 21:06:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:37 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:38 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:39 - INFO - IO: 110 -2024-12-19 21:06:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:40 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:41 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:42 - INFO - IO: 110 -2024-12-19 21:06:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:43 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:44 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:45 - INFO - IO: 110 -2024-12-19 21:06:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:46 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:47 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:48 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:49 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:50 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:51 - INFO - IO: 110 -2024-12-19 21:06:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:52 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:53 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:54 - INFO - IO: 110 -2024-12-19 21:06:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:55 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:56 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:57 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:06:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:06:58 - INFO - û˳ -2024-12-19 21:06:58 - INFO - IO: 110 -2024-12-19 21:07:56 - INFO - ϵͳ -2024-12-19 21:07:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:08:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:09:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:16 - INFO - û˳ -2024-12-19 21:10:26 - INFO - ϵͳ -2024-12-19 21:10:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:34 - INFO - Ͷϴ:1 -2024-12-19 21:10:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:34 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 21:10:34 - INFO - л -2024-12-19 21:10:34 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 21:10:34 - INFO - лԶ״̬ -2024-12-19 21:10:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:35 - INFO - һȷ -2024-12-19 21:10:35 - INFO - Ӧ1:ͶϿʼ -2024-12-19 21:10:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 21:10:35 - INFO - IO: 31 -2024-12-19 21:10:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 21:10:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:40 - INFO - IO: 30 -2024-12-19 21:10:40 - INFO - ͶϿʼ -2024-12-19 21:10:40 - ERROR - ȸλԭ -2024-12-19 21:10:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:52 - INFO - -2024-12-19 21:10:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:10:52 - INFO - Ͷֹͣ -2024-12-19 21:10:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:52 - INFO - -2024-12-19 21:10:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:10:52 - INFO - Ͷֹͣ -2024-12-19 21:10:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:10:58 - INFO - -2024-12-19 21:10:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:10:58 - INFO - Ͷֹͣ -2024-12-19 21:10:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:11:04 - INFO - ˳ϵͳ -2024-12-19 21:12:09 - INFO - ϵͳ -2024-12-19 21:12:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:14 - INFO - Ͷϴ:1 -2024-12-19 21:12:14 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 21:12:14 - INFO - л -2024-12-19 21:12:14 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 21:12:14 - INFO - лԶ״̬ -2024-12-19 21:12:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:15 - INFO - һȷ -2024-12-19 21:12:15 - INFO - Ӧ1:ͶϿʼ -2024-12-19 21:12:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 21:12:15 - INFO - IO: 31 -2024-12-19 21:12:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 21:12:20 - INFO - IO: 30 -2024-12-19 21:12:20 - INFO - ͶϿʼ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:20 - INFO - ͶϿʼ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:20 - INFO - ƶλλ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:20 - INFO - ƶλλ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:20 - INFO - ǷȫͶ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:20 - INFO - ǷȫͶ -2024-12-19 21:12:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:21 - INFO - ƶλ -2024-12-19 21:12:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:12:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:12:21 - ERROR - ʶͼʧ -2024-12-19 21:12:21 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["actionPause","1"]} -2024-12-19 21:12:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:27 - INFO - -2024-12-19 21:12:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 21:12:27 - INFO - Ͷֹͣ -2024-12-19 21:12:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:12:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:52 - INFO - ϵͳ -2024-12-19 21:13:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:59 - INFO - Ͷϴ:1 -2024-12-19 21:13:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:13:59 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 21:13:59 - INFO - л -2024-12-19 21:13:59 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 21:13:59 - INFO - лԶ״̬ -2024-12-19 21:13:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:00 - INFO - һȷ -2024-12-19 21:14:00 - INFO - Ӧ1:ͶϿʼ -2024-12-19 21:14:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 21:14:00 - INFO - IO: 31 -2024-12-19 21:14:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 21:14:05 - INFO - IO: 30 -2024-12-19 21:14:05 - INFO - ͶϿʼ -2024-12-19 21:14:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:05 - INFO - ͶϿʼ -2024-12-19 21:14:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:05 - INFO - ƶλλ -2024-12-19 21:14:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:05 - INFO - ƶλλ -2024-12-19 21:14:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:06 - INFO - ǷȫͶ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - INFO - ǷȫͶ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - INFO - ƶλ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:06 - INFO - ƶλ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - INFO - ƶλλ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - INFO - ƶλλ -2024-12-19 21:14:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:06 - INFO - ƶץλ -2024-12-19 21:14:06 - INFO - ץϵλ -2024-12-19 21:14:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 21:14:07 - INFO - IO: 81 -2024-12-19 21:14:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:14:07 - INFO - IO: 110 -2024-12-19 21:14:07 - INFO - ƶץλ -2024-12-19 21:14:07 - INFO - ץϵλ -2024-12-19 21:14:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:07 - INFO - ץϳɹ -2024-12-19 21:14:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:07 - INFO - ƶλλ -2024-12-19 21:14:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:07 - INFO - ƶλλ -2024-12-19 21:14:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:07 - INFO - ƶƴλ -2024-12-19 21:14:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:07 - INFO - ƶƴλ -2024-12-19 21:14:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:07 - INFO - ҡ -2024-12-19 21:14:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:07 - INFO - IO: 121 -2024-12-19 21:14:07 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 120 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 120 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:08 - INFO - IO: 121 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 121 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 120 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 120 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 121 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 121 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:08 - INFO - IO: 120 -2024-12-19 21:14:08 - INFO - ҡ -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 120 -2024-12-19 21:14:09 - INFO - ҡ -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 121 -2024-12-19 21:14:09 - INFO - ҡ -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 121 -2024-12-19 21:14:09 - INFO - ҡ -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 120 -2024-12-19 21:14:09 - INFO - ҡ -2024-12-19 21:14:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 120 -2024-12-19 21:14:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:14:09 - INFO - IO: 110 -2024-12-19 21:14:09 - INFO - ҡ -2024-12-19 21:14:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:10 - INFO - ƶӿմ -2024-12-19 21:14:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 21:14:10 - INFO - IO: 80 -2024-12-19 21:14:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 21:14:10 - INFO - IO: 111 -2024-12-19 21:14:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 21:14:10 - INFO - IO: 110 -2024-12-19 21:14:10 - INFO - ƶӿմ -2024-12-19 21:14:10 - INFO - ʣͶϴ0 -2024-12-19 21:14:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:10 - INFO - ƶλ -2024-12-19 21:14:10 - INFO - ͶϽ -2024-12-19 21:14:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 21:14:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 21:14:11 - INFO - λɹ -2024-12-19 21:14:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:14:23 - INFO - ˳ϵͳ -2024-12-19 21:14:59 - INFO - ϵͳ -2024-12-19 21:14:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:15:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:15:04 - INFO - û˳ -2024-12-19 21:56:16 - INFO - ϵͳ -2024-12-19 21:56:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:56:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:57:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:57:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 21:57:10 - ERROR - ¼ʧ -2024-12-19 21:57:10 - INFO - ˳ϵͳ -2024-12-19 22:29:50 - INFO - ϵͳ -2024-12-19 22:29:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:29:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:29:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:29:59 - INFO - û˳ -2024-12-19 22:29:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:27 - INFO - ϵͳ -2024-12-19 22:31:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:29 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:31:29 - INFO - л -2024-12-19 22:31:29 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:31:29 - INFO - лԶ״̬ -2024-12-19 22:31:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:30 - INFO - һȷ -2024-12-19 22:31:30 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:31:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:31:30 - INFO - IO: 31 -2024-12-19 22:31:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:31:35 - INFO - IO: 30 -2024-12-19 22:31:35 - INFO - ͶϿʼ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - INFO - ͶϿʼ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - INFO - ƶλλ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:35 - INFO - ƶλλ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - INFO - ǷȫͶ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - INFO - ǷȫͶ -2024-12-19 22:31:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:31:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:31:35 - INFO - ƶλ -2024-12-19 22:31:36 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:36 - INFO - ƶλ -2024-12-19 22:31:36 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:36 - INFO - ƶλ -2024-12-19 22:31:36 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:36 - INFO - ƶλ -2024-12-19 22:31:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:36 - INFO - ƶλ -2024-12-19 22:31:36 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:36 - INFO - ƶλ -2024-12-19 22:31:36 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:37 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:37 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:37 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:37 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:37 - INFO - ƶλ -2024-12-19 22:31:38 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:38 - INFO - ƶλ -2024-12-19 22:31:38 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:38 - INFO - ƶλ -2024-12-19 22:31:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:38 - INFO - ƶλ -2024-12-19 22:31:38 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:38 - INFO - ƶλ -2024-12-19 22:31:38 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:38 - INFO - ƶλ -2024-12-19 22:31:38 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:39 - INFO - ƶλ -2024-12-19 22:31:39 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:40 - INFO - ƶλ -2024-12-19 22:31:40 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:40 - INFO - ƶλ -2024-12-19 22:31:40 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:40 - INFO - ƶλ -2024-12-19 22:31:40 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:40 - INFO - ƶλ -2024-12-19 22:31:40 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:40 - INFO - ƶλ -2024-12-19 22:31:41 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:41 - INFO - ƶλ -2024-12-19 22:31:41 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:42 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:42 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:42 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:42 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:42 - INFO - ƶλ -2024-12-19 22:31:43 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:43 - INFO - ƶλ -2024-12-19 22:31:43 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:43 - INFO - ƶλ -2024-12-19 22:31:43 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:43 - INFO - ƶλ -2024-12-19 22:31:43 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:43 - INFO - ƶλ -2024-12-19 22:31:43 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:44 - INFO - ƶλ -2024-12-19 22:31:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:31:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:45 - INFO - ƶλ -2024-12-19 22:31:45 - INFO - û˳ -2024-12-19 22:31:54 - INFO - ϵͳ -2024-12-19 22:31:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:31:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:32:10 - INFO - л -2024-12-19 22:32:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:32:10 - INFO - лԶ״̬ -2024-12-19 22:32:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:11 - INFO - һȷ -2024-12-19 22:32:11 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:32:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:32:11 - INFO - IO: 31 -2024-12-19 22:32:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:32:16 - INFO - IO: 30 -2024-12-19 22:32:16 - INFO - ͶϿʼ -2024-12-19 22:32:16 - ERROR - ȸλԭ -2024-12-19 22:32:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:19 - INFO - -2024-12-19 22:32:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:32:19 - INFO - Ͷֹͣ -2024-12-19 22:32:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:28 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:32:28 - INFO - л -2024-12-19 22:32:28 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:32:28 - INFO - лԶ״̬ -2024-12-19 22:32:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:28 - INFO - һȷ -2024-12-19 22:32:28 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:32:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:32:29 - INFO - IO: 31 -2024-12-19 22:32:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:32:34 - INFO - IO: 30 -2024-12-19 22:32:34 - INFO - ͶϿʼ -2024-12-19 22:32:34 - ERROR - ȸλԭ -2024-12-19 22:32:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:32:40 - INFO - л -2024-12-19 22:32:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:32:40 - INFO - лԶ״̬ -2024-12-19 22:32:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:41 - INFO - -2024-12-19 22:32:41 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:32:41 - INFO - Ͷֹͣ -2024-12-19 22:32:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:42 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:32:42 - INFO - л -2024-12-19 22:32:42 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:32:42 - INFO - лԶ״̬ -2024-12-19 22:32:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:42 - INFO - һȷ -2024-12-19 22:32:42 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:32:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:32:42 - INFO - IO: 31 -2024-12-19 22:32:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:32:47 - INFO - IO: 30 -2024-12-19 22:32:47 - INFO - ͶϿʼ -2024-12-19 22:32:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:47 - INFO - ͶϿʼ -2024-12-19 22:32:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:48 - INFO - ƶλλ -2024-12-19 22:32:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:48 - INFO - ƶλλ -2024-12-19 22:32:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:48 - INFO - ǷȫͶ -2024-12-19 22:32:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:48 - INFO - ǷȫͶ -2024-12-19 22:32:48 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:32:48 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:32:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:48 - INFO - ƶλ -2024-12-19 22:32:48 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:48 - INFO - ƶλ -2024-12-19 22:32:48 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:48 - INFO - ƶλ -2024-12-19 22:32:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:49 - INFO - ƶλ -2024-12-19 22:32:49 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:50 - INFO - ƶλ -2024-12-19 22:32:50 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:50 - INFO - ƶλ -2024-12-19 22:32:50 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:50 - INFO - ƶλ -2024-12-19 22:32:50 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:50 - INFO - ƶλ -2024-12-19 22:32:50 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:50 - INFO - ƶλ -2024-12-19 22:32:51 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:51 - INFO - ƶλ -2024-12-19 22:32:51 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:51 - INFO - ƶλ -2024-12-19 22:32:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:51 - INFO - ƶλ -2024-12-19 22:32:51 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:51 - INFO - ƶλ -2024-12-19 22:32:51 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:51 - INFO - ƶλ -2024-12-19 22:32:51 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:52 - INFO - ƶλ -2024-12-19 22:32:52 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:53 - INFO - ƶλ -2024-12-19 22:32:53 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:53 - INFO - ƶλ -2024-12-19 22:32:53 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:53 - INFO - ƶλ -2024-12-19 22:32:53 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:53 - INFO - ƶλ -2024-12-19 22:32:53 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:53 - INFO - ƶλ -2024-12-19 22:32:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:54 - INFO - ƶλ -2024-12-19 22:32:54 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:55 - INFO - ƶλ -2024-12-19 22:32:55 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:55 - INFO - ƶλ -2024-12-19 22:32:55 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:55 - INFO - ƶλ -2024-12-19 22:32:55 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:55 - INFO - ƶλ -2024-12-19 22:32:55 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:55 - INFO - ƶλ -2024-12-19 22:32:56 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:56 - INFO - ƶλ -2024-12-19 22:32:56 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:56 - INFO - ƶλ -2024-12-19 22:32:56 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:56 - INFO - ƶλ -2024-12-19 22:32:56 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:56 - INFO - ƶλ -2024-12-19 22:32:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:56 - INFO - ƶλ -2024-12-19 22:32:56 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:57 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:57 - INFO - ƶλ -2024-12-19 22:32:58 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:58 - INFO - ƶλ -2024-12-19 22:32:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:58 - INFO - ƶλ -2024-12-19 22:32:58 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:58 - INFO - ƶλ -2024-12-19 22:32:58 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:58 - INFO - ƶλ -2024-12-19 22:32:58 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:58 - INFO - ƶλ -2024-12-19 22:32:58 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:32:59 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:32:59 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:32:59 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:32:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:32:59 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:32:59 - INFO - ƶλ -2024-12-19 22:33:00 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:00 - INFO - ƶλ -2024-12-19 22:33:00 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:01 - INFO - ƶλ -2024-12-19 22:33:01 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:01 - INFO - ƶλ -2024-12-19 22:33:01 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:01 - INFO - ƶλ -2024-12-19 22:33:01 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:01 - INFO - ƶλ -2024-12-19 22:33:01 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:01 - INFO - ƶλ -2024-12-19 22:33:01 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:02 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:02 - INFO - ƶλ -2024-12-19 22:33:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:03 - INFO - ƶλ -2024-12-19 22:33:03 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:04 - INFO - ƶλ -2024-12-19 22:33:04 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:04 - INFO - ƶλ -2024-12-19 22:33:04 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:04 - INFO - ƶλ -2024-12-19 22:33:04 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:04 - INFO - ƶλ -2024-12-19 22:33:04 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:04 - INFO - ƶλ -2024-12-19 22:33:05 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:05 - INFO - ƶλ -2024-12-19 22:33:05 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:06 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:06 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:06 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:06 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:06 - INFO - ƶλ -2024-12-19 22:33:07 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:07 - INFO - ƶλ -2024-12-19 22:33:07 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:07 - INFO - ƶλ -2024-12-19 22:33:07 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:07 - INFO - ƶλ -2024-12-19 22:33:07 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:07 - INFO - ƶλ -2024-12-19 22:33:07 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:08 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:08 - INFO - ƶλ -2024-12-19 22:33:09 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:09 - INFO - ƶλ -2024-12-19 22:33:09 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:10 - INFO - ƶλ -2024-12-19 22:33:10 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:10 - INFO - ƶλ -2024-12-19 22:33:10 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:10 - INFO - ƶλ -2024-12-19 22:33:10 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:10 - INFO - ƶλ -2024-12-19 22:33:10 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:10 - INFO - ƶλ -2024-12-19 22:33:11 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:11 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:11 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:11 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:11 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:11 - INFO - ƶλ -2024-12-19 22:33:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:14 - INFO - ƶλ -2024-12-19 22:33:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:35 - ERROR - 'PositionModel' object has no attribute 'position' -2024-12-19 22:33:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:33:38 - INFO - ƶλ -2024-12-19 22:33:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:33 - INFO - ϵͳ -2024-12-19 22:34:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:36 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:34:36 - INFO - л -2024-12-19 22:34:36 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:34:36 - INFO - лԶ״̬ -2024-12-19 22:34:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:38 - INFO - һȷ -2024-12-19 22:34:38 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:34:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:34:38 - INFO - IO: 31 -2024-12-19 22:34:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:34:43 - INFO - IO: 30 -2024-12-19 22:34:43 - INFO - ͶϿʼ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:43 - INFO - ͶϿʼ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:43 - INFO - ƶλλ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:43 - INFO - ƶλλ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:43 - INFO - ǷȫͶ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:43 - INFO - ǷȫͶ -2024-12-19 22:34:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:34:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:34:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:44 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:44 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:44 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:44 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:44 - INFO - ƶλ -2024-12-19 22:34:45 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:45 - INFO - ƶλ -2024-12-19 22:34:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:45 - INFO - ƶλ -2024-12-19 22:34:45 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:45 - INFO - ƶλ -2024-12-19 22:34:45 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:45 - INFO - ƶλ -2024-12-19 22:34:45 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:45 - INFO - ƶλ -2024-12-19 22:34:45 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:46 - INFO - ƶλ -2024-12-19 22:34:46 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:46 - INFO - ƶλ -2024-12-19 22:34:46 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:46 - INFO - ƶλ -2024-12-19 22:34:46 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:46 - INFO - ƶλ -2024-12-19 22:34:46 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:46 - INFO - ƶλ -2024-12-19 22:34:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:47 - INFO - ƶλ -2024-12-19 22:34:47 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:48 - INFO - ƶλ -2024-12-19 22:34:48 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:48 - INFO - ƶλ -2024-12-19 22:34:48 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:48 - INFO - ƶλ -2024-12-19 22:34:48 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:48 - INFO - ƶλ -2024-12-19 22:34:48 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:48 - INFO - ƶλ -2024-12-19 22:34:49 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:49 - INFO - ƶλ -2024-12-19 22:34:49 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:49 - INFO - ƶλ -2024-12-19 22:34:49 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:49 - INFO - ƶλ -2024-12-19 22:34:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:49 - INFO - ƶλ -2024-12-19 22:34:49 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:49 - INFO - ƶλ -2024-12-19 22:34:49 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:50 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:50 - INFO - ƶλ -2024-12-19 22:34:51 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:51 - INFO - ƶλ -2024-12-19 22:34:51 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:51 - INFO - ƶλ -2024-12-19 22:34:51 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:51 - INFO - ƶλ -2024-12-19 22:34:51 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:51 - INFO - ƶλ -2024-12-19 22:34:51 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:52 - INFO - ƶλ -2024-12-19 22:34:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:34:53 - INFO - ƶλ -2024-12-19 22:34:53 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:53 - INFO - ƶλ -2024-12-19 22:34:53 - ERROR - unsupported operand type(s) for +: 'Real_Position' and 'int' -2024-12-19 22:34:53 - INFO - ƶλ -2024-12-19 22:34:53 - INFO - û˳ -2024-12-19 22:34:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:05 - INFO - ϵͳ -2024-12-19 22:35:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:10 - INFO - Ͷϴ:999 -2024-12-19 22:35:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:35:10 - INFO - л -2024-12-19 22:35:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:35:10 - INFO - лԶ״̬ -2024-12-19 22:35:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:14 - INFO - Ͷϴ:20 -2024-12-19 22:35:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:35:15 - INFO - л -2024-12-19 22:35:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:35:15 - INFO - лԶ״̬ -2024-12-19 22:35:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:16 - INFO - һȷ -2024-12-19 22:35:16 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:35:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:35:16 - INFO - IO: 31 -2024-12-19 22:35:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:35:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:21 - INFO - IO: 30 -2024-12-19 22:35:21 - INFO - ͶϿʼ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - INFO - ͶϿʼ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - INFO - ƶλλ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - INFO - ƶλλ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - INFO - ǷȫͶ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:21 - INFO - ǷȫͶ -2024-12-19 22:35:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:21 - INFO - ƶλ -2024-12-19 22:35:22 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:22 - INFO - ƶλ -2024-12-19 22:35:22 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:22 - INFO - ƶλλ -2024-12-19 22:35:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:22 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:-399.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:35:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"-399.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:35:22 - INFO - ƶλλ -2024-12-19 22:35:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:23 - INFO - ƶλλ -2024-12-19 22:35:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:23 - INFO - ƶλλ -2024-12-19 22:35:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:24 - INFO - ƶλλ -2024-12-19 22:35:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:24 - INFO - ƶλλ -2024-12-19 22:35:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:25 - INFO - ƶλλ -2024-12-19 22:35:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:26 - INFO - ƶλλ -2024-12-19 22:35:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:26 - INFO - ƶλλ -2024-12-19 22:35:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:27 - INFO - ƶλλ -2024-12-19 22:35:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:27 - INFO - ƶλλ -2024-12-19 22:35:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:28 - INFO - ƶλλ -2024-12-19 22:35:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:28 - INFO - ƶλλ -2024-12-19 22:35:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:28 - INFO - ƶλλ -2024-12-19 22:35:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:29 - INFO - ƶλλ -2024-12-19 22:35:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:29 - INFO - ƶλλ -2024-12-19 22:35:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:30 - INFO - ƶλλ -2024-12-19 22:35:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:30 - INFO - ƶλλ -2024-12-19 22:35:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:30 - INFO - ƶλλ -2024-12-19 22:35:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:31 - INFO - ƶλλ -2024-12-19 22:35:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:31 - INFO - ƶλλ -2024-12-19 22:35:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:32 - INFO - ƶλλ -2024-12-19 22:35:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:32 - INFO - ƶλλ -2024-12-19 22:35:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:32 - INFO - ƶλλ -2024-12-19 22:35:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:33 - INFO - ƶλλ -2024-12-19 22:35:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:33 - INFO - ƶλλ -2024-12-19 22:35:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:34 - INFO - ƶλλ -2024-12-19 22:35:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:34 - INFO - ƶλλ -2024-12-19 22:35:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:35 - INFO - ƶλλ -2024-12-19 22:35:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:35 - INFO - ƶλλ -2024-12-19 22:35:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:35 - INFO - ƶλλ -2024-12-19 22:35:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:36 - INFO - ƶλλ -2024-12-19 22:35:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:36 - INFO - ƶλλ -2024-12-19 22:35:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:37 - INFO - ƶλλ -2024-12-19 22:35:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:37 - INFO - ƶλλ -2024-12-19 22:35:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:37 - INFO - ƶλλ -2024-12-19 22:35:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:38 - INFO - ƶλλ -2024-12-19 22:35:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:38 - INFO - ƶλλ -2024-12-19 22:35:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:39 - INFO - ƶλλ -2024-12-19 22:35:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:39 - INFO - ƶλλ -2024-12-19 22:35:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:39 - INFO - ƶλλ -2024-12-19 22:35:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:40 - INFO - ƶλλ -2024-12-19 22:35:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:40 - INFO - ƶλλ -2024-12-19 22:35:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:41 - INFO - ƶλλ -2024-12-19 22:35:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:41 - INFO - ƶλλ -2024-12-19 22:35:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:41 - INFO - ƶλλ -2024-12-19 22:35:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:42 - INFO - ƶλλ -2024-12-19 22:35:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:42 - INFO - ƶλλ -2024-12-19 22:35:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:43 - INFO - ƶλλ -2024-12-19 22:35:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:43 - INFO - ƶλλ -2024-12-19 22:35:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:44 - INFO - ƶλλ -2024-12-19 22:35:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:44 - INFO - ƶλλ -2024-12-19 22:35:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:44 - INFO - ƶλλ -2024-12-19 22:35:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:45 - INFO - ƶλλ -2024-12-19 22:35:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:45 - INFO - ƶλλ -2024-12-19 22:35:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:46 - INFO - ƶλλ -2024-12-19 22:35:46 - INFO - -2024-12-19 22:35:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:35:46 - INFO - Ͷֹͣ -2024-12-19 22:35:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:35:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:36:22 - INFO - л -2024-12-19 22:36:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:36:22 - INFO - лԶ״̬ -2024-12-19 22:36:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:23 - INFO - һȷ -2024-12-19 22:36:23 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:36:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:36:23 - INFO - IO: 31 -2024-12-19 22:36:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:36:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:28 - INFO - IO: 30 -2024-12-19 22:36:28 - INFO - ͶϿʼ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - INFO - ͶϿʼ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - INFO - ƶλλ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - INFO - ƶλλ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - INFO - ǷȫͶ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:28 - INFO - ǷȫͶ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:28 - INFO - ƶλ -2024-12-19 22:36:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:29 - INFO - ƶλ -2024-12-19 22:36:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:29 - INFO - ƶλλ -2024-12-19 22:36:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:-399.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:36:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"-399.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:36:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:29 - INFO - ƶλλ -2024-12-19 22:36:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:29 - INFO - ƶλλ -2024-12-19 22:36:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:30 - INFO - ƶλλ -2024-12-19 22:36:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:31 - INFO - ƶλλ -2024-12-19 22:36:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:31 - INFO - ƶλλ -2024-12-19 22:36:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:32 - INFO - ƶλλ -2024-12-19 22:36:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:32 - INFO - ƶλλ -2024-12-19 22:36:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:33 - INFO - -2024-12-19 22:36:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:36:33 - INFO - Ͷֹͣ -2024-12-19 22:36:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:36:58 - INFO - û˳ -2024-12-19 22:37:07 - INFO - ϵͳ -2024-12-19 22:37:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:14 - ERROR - ¼ʧ -2024-12-19 22:37:14 - INFO - ˳ϵͳ -2024-12-19 22:37:22 - INFO - ϵͳ -2024-12-19 22:37:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:26 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:37:26 - INFO - л -2024-12-19 22:37:26 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:37:26 - INFO - лԶ״̬ -2024-12-19 22:37:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:27 - INFO - һȷ -2024-12-19 22:37:27 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:37:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:37:27 - INFO - IO: 31 -2024-12-19 22:37:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:37:32 - INFO - IO: 30 -2024-12-19 22:37:32 - INFO - ͶϿʼ -2024-12-19 22:37:32 - ERROR - ȸλԭ -2024-12-19 22:37:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:38 - INFO - -2024-12-19 22:37:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:37:38 - INFO - Ͷֹͣ -2024-12-19 22:37:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:37:38 - INFO - л -2024-12-19 22:37:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:37:38 - INFO - лԶ״̬ -2024-12-19 22:37:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:40 - INFO - һȷ -2024-12-19 22:37:40 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:37:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:37:40 - INFO - IO: 31 -2024-12-19 22:37:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:37:45 - INFO - IO: 30 -2024-12-19 22:37:45 - INFO - ͶϿʼ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:45 - INFO - ͶϿʼ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - INFO - ƶλλ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - INFO - ƶλλ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - INFO - ǷȫͶ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:45 - INFO - ǷȫͶ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:45 - INFO - ƶλ -2024-12-19 22:37:45 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:45 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:46 - INFO - ƶλ -2024-12-19 22:37:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:46 - INFO - ƶλλ -2024-12-19 22:37:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:46 - INFO - ƶλλ -2024-12-19 22:37:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:37:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:37:46 - INFO - ƶץλ -2024-12-19 22:37:46 - INFO - ץϵλ -2024-12-19 22:37:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:46 - INFO - IO: 81 -2024-12-19 22:37:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:46 - INFO - IO: 110 -2024-12-19 22:37:46 - INFO - ƶץλ -2024-12-19 22:37:46 - INFO - ץϵλ -2024-12-19 22:37:46 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:46 - INFO - ƶץλ -2024-12-19 22:37:46 - INFO - ץϵλ -2024-12-19 22:37:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:46 - INFO - IO: 81 -2024-12-19 22:37:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:46 - INFO - IO: 110 -2024-12-19 22:37:46 - INFO - ƶץλ -2024-12-19 22:37:46 - INFO - ץϵλ -2024-12-19 22:37:46 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:46 - INFO - ƶץλ -2024-12-19 22:37:46 - INFO - ץϵλ -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 81 -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 110 -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 81 -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 110 -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 81 -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 110 -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 81 -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 110 -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 81 -2024-12-19 22:37:47 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:47 - INFO - IO: 110 -2024-12-19 22:37:47 - INFO - ƶץλ -2024-12-19 22:37:47 - INFO - ץϵλ -2024-12-19 22:37:47 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 81 -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 110 -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 81 -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 110 -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 81 -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 110 -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 81 -2024-12-19 22:37:48 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:48 - INFO - IO: 110 -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:48 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:48 - INFO - ƶץλ -2024-12-19 22:37:48 - INFO - ץϵλ -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 81 -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 110 -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 81 -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 110 -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 81 -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 110 -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 81 -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 110 -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 81 -2024-12-19 22:37:49 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:49 - INFO - IO: 110 -2024-12-19 22:37:49 - INFO - ƶץλ -2024-12-19 22:37:49 - INFO - ץϵλ -2024-12-19 22:37:49 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 81 -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 110 -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 81 -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 110 -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 81 -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 110 -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 81 -2024-12-19 22:37:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:50 - INFO - IO: 110 -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:50 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:50 - INFO - ƶץλ -2024-12-19 22:37:50 - INFO - ץϵλ -2024-12-19 22:37:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 81 -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 110 -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 81 -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 110 -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 81 -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 110 -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 81 -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 110 -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 81 -2024-12-19 22:37:51 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:51 - INFO - IO: 110 -2024-12-19 22:37:51 - INFO - ƶץλ -2024-12-19 22:37:51 - INFO - ץϵλ -2024-12-19 22:37:51 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 81 -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 110 -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 81 -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 110 -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 81 -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 110 -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 81 -2024-12-19 22:37:52 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:52 - INFO - IO: 110 -2024-12-19 22:37:52 - INFO - ƶץλ -2024-12-19 22:37:52 - INFO - ץϵλ -2024-12-19 22:37:52 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 81 -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 110 -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 81 -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 110 -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 81 -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 110 -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 81 -2024-12-19 22:37:53 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:53 - INFO - IO: 110 -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:53 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:53 - INFO - ƶץλ -2024-12-19 22:37:53 - INFO - ץϵλ -2024-12-19 22:37:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 81 -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 110 -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 81 -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 110 -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 81 -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 110 -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 81 -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 110 -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 81 -2024-12-19 22:37:54 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:54 - INFO - IO: 110 -2024-12-19 22:37:54 - INFO - ƶץλ -2024-12-19 22:37:54 - INFO - ץϵλ -2024-12-19 22:37:54 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 81 -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 110 -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 81 -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 110 -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 81 -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 110 -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:55 - INFO - IO: 81 -2024-12-19 22:37:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:55 - INFO - IO: 110 -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:55 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:55 - INFO - ƶץλ -2024-12-19 22:37:55 - INFO - ץϵλ -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 81 -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 110 -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 81 -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 110 -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 81 -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 110 -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 81 -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 110 -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 81 -2024-12-19 22:37:56 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:56 - INFO - IO: 110 -2024-12-19 22:37:56 - INFO - ƶץλ -2024-12-19 22:37:56 - INFO - ץϵλ -2024-12-19 22:37:56 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:57 - INFO - ƶץλ -2024-12-19 22:37:57 - INFO - ץϵλ -2024-12-19 22:37:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:37:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:37:57 - INFO - IO: 81 -2024-12-19 22:37:57 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:37:57 - INFO - IO: 110 -2024-12-19 22:37:57 - INFO - ƶץλ -2024-12-19 22:37:57 - INFO - ץϵλ -2024-12-19 22:37:57 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:37:57 - INFO - -2024-12-19 22:37:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:37:57 - INFO - Ͷֹͣ -2024-12-19 22:37:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:38:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:38:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:39:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:31 - INFO - û˳ -2024-12-19 22:40:42 - INFO - ϵͳ -2024-12-19 22:40:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:40:59 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:40:59 - INFO - л -2024-12-19 22:40:59 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:40:59 - INFO - лԶ״̬ -2024-12-19 22:40:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:00 - INFO - һȷ -2024-12-19 22:41:00 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:41:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:41:00 - INFO - IO: 31 -2024-12-19 22:41:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:41:05 - INFO - IO: 30 -2024-12-19 22:41:05 - INFO - ͶϿʼ -2024-12-19 22:41:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:05 - INFO - ͶϿʼ -2024-12-19 22:41:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:05 - INFO - ƶλλ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ƶλλ -2024-12-19 22:41:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ǷȫͶ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ǷȫͶ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ƶλ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:06 - INFO - ƶλ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ƶλλ -2024-12-19 22:41:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:06 - INFO - ƶλλ -2024-12-19 22:41:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:41:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:41:07 - INFO - ƶץλ -2024-12-19 22:41:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:09 - INFO - ץϵλ -2024-12-19 22:41:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 22:41:13 - INFO - IO: 81 -2024-12-19 22:41:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 22:41:13 - INFO - IO: 110 -2024-12-19 22:41:13 - INFO - ƶץλ -2024-12-19 22:41:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:15 - INFO - ץϵλ -2024-12-19 22:41:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:41:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:15 - INFO - ϵͳ -2024-12-19 22:43:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:20 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:43:20 - INFO - л -2024-12-19 22:43:20 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:43:20 - INFO - лԶ״̬ -2024-12-19 22:43:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:21 - INFO - һȷ -2024-12-19 22:43:21 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:43:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:43:21 - INFO - IO: 31 -2024-12-19 22:43:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:43:26 - INFO - IO: 30 -2024-12-19 22:43:26 - INFO - ͶϿʼ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - INFO - ͶϿʼ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:26 - INFO - ƶλλ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - INFO - ƶλλ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - INFO - ǷȫͶ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - INFO - ǷȫͶ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:26 - INFO - ƶλ -2024-12-19 22:43:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:26 - INFO - ƶλ -2024-12-19 22:43:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:27 - INFO - ƶλ -2024-12-19 22:43:27 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:43:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:27 - INFO - ƶλλ -2024-12-19 22:43:27 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:28 - INFO - ƶλλ -2024-12-19 22:43:28 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:29 - INFO - ƶλλ -2024-12-19 22:43:29 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:30 - INFO - ƶλλ -2024-12-19 22:43:30 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:31 - INFO - ƶλλ -2024-12-19 22:43:31 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:32 - INFO - ƶλλ -2024-12-19 22:43:32 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:33 - INFO - ƶλλ -2024-12-19 22:43:33 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:34 - INFO - ƶλλ -2024-12-19 22:43:34 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:35 - INFO - ƶλλ -2024-12-19 22:43:35 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:36 - INFO - ƶλλ -2024-12-19 22:43:36 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:37 - INFO - ƶλλ -2024-12-19 22:43:37 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:38 - INFO - ƶλλ -2024-12-19 22:43:38 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:39 - INFO - ƶλλ -2024-12-19 22:43:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - INFO - ƶλλ -2024-12-19 22:43:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:41 - INFO - ƶλλ -2024-12-19 22:43:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:42 - INFO - ƶλλ -2024-12-19 22:43:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:43 - INFO - ƶλλ -2024-12-19 22:43:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:44 - INFO - ƶλλ -2024-12-19 22:43:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:45 - INFO - ƶλλ -2024-12-19 22:43:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:46 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:47 - INFO - ƶλλ -2024-12-19 22:43:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:48 - INFO - ƶλλ -2024-12-19 22:43:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:49 - INFO - ƶλλ -2024-12-19 22:43:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:50 - INFO - ƶλλ -2024-12-19 22:43:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - INFO - ƶλλ -2024-12-19 22:43:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:52 - INFO - ƶλλ -2024-12-19 22:43:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:53 - INFO - ƶλλ -2024-12-19 22:43:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:54 - INFO - ƶλλ -2024-12-19 22:43:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:55 - INFO - ƶλλ -2024-12-19 22:43:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:56 - INFO - ƶλλ -2024-12-19 22:43:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:57 - INFO - ƶλλ -2024-12-19 22:43:57 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:58 - INFO - ƶλλ -2024-12-19 22:43:58 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:43:59 - INFO - ƶλλ -2024-12-19 22:43:59 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:44:00 - INFO - ƶλλ -2024-12-19 22:44:00 - INFO - û˳ -2024-12-19 22:44:00 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:44:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:44:00 - INFO - ƶλλ -2024-12-19 22:44:00 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:48:51 - INFO - ϵͳ -2024-12-19 22:48:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:48:54 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:48:54 - INFO - л -2024-12-19 22:48:54 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:48:54 - INFO - лԶ״̬ -2024-12-19 22:48:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:48:55 - INFO - һȷ -2024-12-19 22:48:55 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:48:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:48:55 - INFO - IO: 31 -2024-12-19 22:48:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:49:00 - INFO - IO: 30 -2024-12-19 22:49:00 - INFO - ͶϿʼ -2024-12-19 22:49:00 - ERROR - ȸλԭ -2024-12-19 22:49:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:06 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:49:06 - INFO - л -2024-12-19 22:49:06 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:49:06 - INFO - лԶ״̬ -2024-12-19 22:49:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:08 - INFO - -2024-12-19 22:49:08 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:49:08 - INFO - Ͷֹͣ -2024-12-19 22:49:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:09 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:49:09 - INFO - л -2024-12-19 22:49:09 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:49:09 - INFO - лԶ״̬ -2024-12-19 22:49:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:10 - INFO - һȷ -2024-12-19 22:49:10 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:49:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:49:10 - INFO - IO: 31 -2024-12-19 22:49:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:49:15 - INFO - IO: 30 -2024-12-19 22:49:15 - INFO - ͶϿʼ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:15 - INFO - ͶϿʼ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:15 - INFO - ƶλλ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:15 - INFO - ƶλλ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:15 - INFO - ǷȫͶ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:15 - INFO - ǷȫͶ -2024-12-19 22:49:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:49:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:49:16 - INFO - ƶλ -2024-12-19 22:49:16 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:16 - INFO - ƶλ -2024-12-19 22:49:16 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:16 - INFO - ƶλ -2024-12-19 22:49:16 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:16 - INFO - ƶλ -2024-12-19 22:49:16 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:16 - INFO - ƶλ -2024-12-19 22:49:17 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:17 - INFO - ƶλ -2024-12-19 22:49:17 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:17 - INFO - ƶλ -2024-12-19 22:49:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:17 - INFO - ƶλ -2024-12-19 22:49:17 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:17 - INFO - ƶλ -2024-12-19 22:49:17 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:17 - INFO - ƶλ -2024-12-19 22:49:17 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:18 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:18 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:18 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:18 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:18 - INFO - ƶλ -2024-12-19 22:49:19 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:19 - INFO - ƶλ -2024-12-19 22:49:19 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:19 - INFO - ƶλ -2024-12-19 22:49:19 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:19 - INFO - ƶλ -2024-12-19 22:49:19 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:19 - INFO - ƶλ -2024-12-19 22:49:19 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:19 - INFO - ƶλ -2024-12-19 22:49:20 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:20 - INFO - ƶλ -2024-12-19 22:49:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:20 - INFO - ƶλ -2024-12-19 22:49:20 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:20 - INFO - ƶλ -2024-12-19 22:49:20 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:20 - INFO - ƶλ -2024-12-19 22:49:20 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:20 - INFO - ƶλ -2024-12-19 22:49:20 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:21 - INFO - ƶλ -2024-12-19 22:49:21 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:21 - INFO - ƶλ -2024-12-19 22:49:21 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:21 - INFO - ƶλ -2024-12-19 22:49:21 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:21 - INFO - ƶλ -2024-12-19 22:49:21 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:21 - INFO - ƶλ -2024-12-19 22:49:22 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:22 - INFO - ƶλ -2024-12-19 22:49:22 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:23 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:23 - INFO - ƶλ -2024-12-19 22:49:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:24 - INFO - ƶλ -2024-12-19 22:49:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:24 - INFO - ƶλ -2024-12-19 22:49:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:24 - INFO - ƶλ -2024-12-19 22:49:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:24 - INFO - ƶλ -2024-12-19 22:49:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:25 - INFO - ƶλ -2024-12-19 22:49:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:26 - INFO - ƶλ -2024-12-19 22:49:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:27 - INFO - ƶλ -2024-12-19 22:49:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:27 - INFO - ƶλ -2024-12-19 22:49:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:27 - INFO - ƶλ -2024-12-19 22:49:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:27 - INFO - ƶλ -2024-12-19 22:49:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:28 - INFO - ƶλ -2024-12-19 22:49:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:29 - INFO - ƶλ -2024-12-19 22:49:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:30 - INFO - ƶλ -2024-12-19 22:49:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:30 - INFO - ƶλ -2024-12-19 22:49:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:30 - INFO - ƶλ -2024-12-19 22:49:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:30 - INFO - ƶλ -2024-12-19 22:49:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:30 - INFO - ƶλ -2024-12-19 22:49:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:31 - INFO - ƶλ -2024-12-19 22:49:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:31 - INFO - ƶλ -2024-12-19 22:49:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:31 - INFO - ƶλ -2024-12-19 22:49:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:31 - INFO - ƶλ -2024-12-19 22:49:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:31 - INFO - ƶλ -2024-12-19 22:49:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:32 - INFO - ƶλ -2024-12-19 22:49:32 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:33 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:33 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:33 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:33 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:33 - INFO - ƶλ -2024-12-19 22:49:34 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:34 - INFO - ƶλ -2024-12-19 22:49:34 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:34 - INFO - ƶλ -2024-12-19 22:49:34 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:34 - INFO - ƶλ -2024-12-19 22:49:34 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:34 - INFO - ƶλ -2024-12-19 22:49:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:34 - INFO - ƶλ -2024-12-19 22:49:34 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:35 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:35 - INFO - ƶλ -2024-12-19 22:49:36 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:36 - INFO - ƶλ -2024-12-19 22:49:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:36 - INFO - ƶλ -2024-12-19 22:49:36 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:36 - INFO - ƶλ -2024-12-19 22:49:36 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:36 - INFO - ƶλ -2024-12-19 22:49:36 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:36 - INFO - ƶλ -2024-12-19 22:49:36 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:37 - INFO - ƶλ -2024-12-19 22:49:37 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:37 - INFO - ƶλ -2024-12-19 22:49:37 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:37 - INFO - ƶλ -2024-12-19 22:49:37 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:37 - INFO - ƶλ -2024-12-19 22:49:37 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:37 - INFO - ƶλ -2024-12-19 22:49:38 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:38 - INFO - ƶλ -2024-12-19 22:49:38 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:39 - INFO - ƶλ -2024-12-19 22:49:39 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:40 - INFO - ƶλ -2024-12-19 22:49:40 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:40 - INFO - ƶλ -2024-12-19 22:49:40 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:40 - INFO - ƶλ -2024-12-19 22:49:40 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:40 - INFO - ƶλ -2024-12-19 22:49:40 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:40 - INFO - ƶλ -2024-12-19 22:49:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:41 - INFO - ƶλ -2024-12-19 22:49:41 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:42 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:42 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:42 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:42 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:42 - INFO - ƶλ -2024-12-19 22:49:43 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:43 - INFO - ƶλ -2024-12-19 22:49:43 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:43 - INFO - ƶλ -2024-12-19 22:49:43 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:43 - INFO - ƶλ -2024-12-19 22:49:43 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:43 - INFO - ƶλ -2024-12-19 22:49:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:43 - INFO - ƶλ -2024-12-19 22:49:43 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:44 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:44 - INFO - ƶλ -2024-12-19 22:49:45 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:45 - INFO - ƶλ -2024-12-19 22:49:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:45 - INFO - ƶλ -2024-12-19 22:49:45 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:45 - INFO - ƶλ -2024-12-19 22:49:45 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:45 - INFO - ƶλ -2024-12-19 22:49:45 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:45 - INFO - ƶλ -2024-12-19 22:49:45 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:46 - INFO - ƶλ -2024-12-19 22:49:46 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:47 - INFO - ƶλ -2024-12-19 22:49:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:48 - INFO - ƶλ -2024-12-19 22:49:48 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:48 - INFO - ƶλ -2024-12-19 22:49:48 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:48 - INFO - ƶλ -2024-12-19 22:49:48 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:48 - INFO - ƶλ -2024-12-19 22:49:48 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:48 - INFO - ƶλ -2024-12-19 22:49:48 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:49 - INFO - ƶλ -2024-12-19 22:49:49 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:49 - INFO - ƶλ -2024-12-19 22:49:49 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:49 - INFO - ƶλ -2024-12-19 22:49:49 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:49 - INFO - ƶλ -2024-12-19 22:49:49 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:49 - INFO - ƶλ -2024-12-19 22:49:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:50 - INFO - ƶλ -2024-12-19 22:49:50 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:51 - INFO - ƶλ -2024-12-19 22:49:51 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:51 - INFO - ƶλ -2024-12-19 22:49:51 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:51 - INFO - ƶλ -2024-12-19 22:49:51 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:51 - INFO - ƶλ -2024-12-19 22:49:51 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:51 - INFO - ƶλ -2024-12-19 22:49:52 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:52 - INFO - ƶλ -2024-12-19 22:49:52 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:53 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:53 - INFO - ƶλ -2024-12-19 22:49:54 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:54 - INFO - ƶλ -2024-12-19 22:49:54 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:54 - INFO - ƶλ -2024-12-19 22:49:54 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:54 - INFO - ƶλ -2024-12-19 22:49:54 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:54 - INFO - ƶλ -2024-12-19 22:49:54 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:54 - INFO - ƶλ -2024-12-19 22:49:55 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:55 - INFO - ƶλ -2024-12-19 22:49:55 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:56 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:56 - INFO - ƶλ -2024-12-19 22:49:57 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:57 - INFO - ƶλ -2024-12-19 22:49:57 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:57 - INFO - ƶλ -2024-12-19 22:49:57 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:57 - INFO - ƶλ -2024-12-19 22:49:57 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:57 - INFO - ƶλ -2024-12-19 22:49:57 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:58 - INFO - ƶλ -2024-12-19 22:49:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:49:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:49:59 - INFO - ƶλ -2024-12-19 22:49:59 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:00 - INFO - ƶλ -2024-12-19 22:50:00 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:00 - INFO - ƶλ -2024-12-19 22:50:00 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:00 - INFO - ƶλ -2024-12-19 22:50:00 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:00 - INFO - ƶλ -2024-12-19 22:50:00 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:00 - INFO - ƶλ -2024-12-19 22:50:01 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:01 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:01 - INFO - ƶλ -2024-12-19 22:50:02 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:02 - INFO - ƶλ -2024-12-19 22:50:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:02 - INFO - ƶλ -2024-12-19 22:50:02 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:02 - INFO - ƶλ -2024-12-19 22:50:02 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:02 - INFO - ƶλ -2024-12-19 22:50:02 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:02 - INFO - ƶλ -2024-12-19 22:50:02 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:03 - INFO - ƶλ -2024-12-19 22:50:03 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:03 - INFO - ƶλ -2024-12-19 22:50:03 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:03 - INFO - ƶλ -2024-12-19 22:50:03 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:03 - INFO - ƶλ -2024-12-19 22:50:03 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:03 - INFO - ƶλ -2024-12-19 22:50:04 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:04 - INFO - ƶλ -2024-12-19 22:50:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:04 - INFO - ƶλ -2024-12-19 22:50:04 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:04 - INFO - ƶλ -2024-12-19 22:50:04 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:04 - INFO - û˳ -2024-12-19 22:50:04 - INFO - ƶλ -2024-12-19 22:50:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:15 - INFO - ϵͳ -2024-12-19 22:50:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:16 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:50:16 - INFO - л -2024-12-19 22:50:16 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:50:16 - INFO - лԶ״̬ -2024-12-19 22:50:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:17 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:50:17 - INFO - л -2024-12-19 22:50:17 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:50:17 - INFO - лԶ״̬ -2024-12-19 22:50:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:18 - INFO - һȷ -2024-12-19 22:50:18 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:50:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:50:18 - INFO - IO: 31 -2024-12-19 22:50:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:19 - INFO - һȷ -2024-12-19 22:50:19 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:50:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:50:23 - INFO - IO: 30 -2024-12-19 22:50:23 - INFO - ͶϿʼ -2024-12-19 22:50:23 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:23 - INFO - ͶϿʼ -2024-12-19 22:50:23 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:23 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:24 - INFO - ƶλλ -2024-12-19 22:50:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:24 - INFO - ƶλλ -2024-12-19 22:50:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:24 - INFO - ǷȫͶ -2024-12-19 22:50:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:24 - INFO - ǷȫͶ -2024-12-19 22:50:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:50:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:50:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:24 - INFO - ƶλ -2024-12-19 22:50:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:24 - INFO - ƶλ -2024-12-19 22:50:24 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:24 - INFO - ƶλ -2024-12-19 22:50:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:25 - INFO - ƶλ -2024-12-19 22:50:25 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:26 - INFO - ƶλ -2024-12-19 22:50:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:26 - INFO - ƶλ -2024-12-19 22:50:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:26 - INFO - ƶλ -2024-12-19 22:50:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:26 - INFO - ƶλ -2024-12-19 22:50:26 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:26 - INFO - ƶλ -2024-12-19 22:50:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:27 - INFO - ƶλ -2024-12-19 22:50:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:27 - INFO - ƶλ -2024-12-19 22:50:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:27 - INFO - ƶλ -2024-12-19 22:50:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:27 - INFO - ƶλ -2024-12-19 22:50:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:27 - INFO - ƶλ -2024-12-19 22:50:27 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:28 - INFO - ƶλ -2024-12-19 22:50:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:28 - INFO - ƶλ -2024-12-19 22:50:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:28 - INFO - ƶλ -2024-12-19 22:50:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:28 - INFO - ƶλ -2024-12-19 22:50:28 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:28 - INFO - ƶλ -2024-12-19 22:50:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:29 - INFO - ƶλ -2024-12-19 22:50:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:29 - INFO - ƶλ -2024-12-19 22:50:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:29 - INFO - ƶλ -2024-12-19 22:50:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:29 - INFO - ƶλ -2024-12-19 22:50:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:29 - INFO - ƶλ -2024-12-19 22:50:29 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:30 - INFO - ƶλ -2024-12-19 22:50:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:31 - INFO - ƶλ -2024-12-19 22:50:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:31 - INFO - ƶλ -2024-12-19 22:50:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:31 - INFO - ƶλ -2024-12-19 22:50:31 - ERROR - 'FeedPosition' object has no attribute 'set_position' -2024-12-19 22:50:31 - INFO - ƶλ -2024-12-19 22:50:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:50:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:51:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:46 - INFO - ϵͳ -2024-12-19 22:52:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:48 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:52:48 - INFO - л -2024-12-19 22:52:48 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:52:48 - INFO - лԶ״̬ -2024-12-19 22:52:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:50 - INFO - һȷ -2024-12-19 22:52:50 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:52:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:52:50 - INFO - IO: 31 -2024-12-19 22:52:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:52:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:52:55 - INFO - IO: 30 -2024-12-19 22:52:55 - INFO - ͶϿʼ -2024-12-19 22:52:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:53:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:29 - INFO - ϵͳ -2024-12-19 22:56:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:56:32 - INFO - л -2024-12-19 22:56:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:56:32 - INFO - лԶ״̬ -2024-12-19 22:56:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:33 - INFO - һȷ -2024-12-19 22:56:33 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:56:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:56:33 - INFO - IO: 31 -2024-12-19 22:56:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:56:38 - INFO - IO: 30 -2024-12-19 22:56:38 - INFO - ͶϿʼ -2024-12-19 22:56:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:38 - INFO - ͶϿʼ -2024-12-19 22:56:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:38 - INFO - ƶλλ -2024-12-19 22:56:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:38 - INFO - ƶλλ -2024-12-19 22:56:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:39 - INFO - ǷȫͶ -2024-12-19 22:56:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:39 - INFO - ǷȫͶ -2024-12-19 22:56:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:39 - INFO - ƶλ -2024-12-19 22:56:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:39 - INFO - ƶλ -2024-12-19 22:56:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:56:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:56:39 - INFO - ƶλλ -2024-12-19 22:56:39 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:56:39 - INFO - ƶλλ -2024-12-19 22:56:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:39 - INFO - ƶλλ -2024-12-19 22:56:39 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:40 - INFO - ƶλλ -2024-12-19 22:56:40 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:41 - INFO - ƶλλ -2024-12-19 22:56:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:42 - INFO - ƶλλ -2024-12-19 22:56:42 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:43 - INFO - ƶλλ -2024-12-19 22:56:43 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:44 - INFO - ƶλλ -2024-12-19 22:56:44 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:45 - INFO - ƶλλ -2024-12-19 22:56:45 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:46 - INFO - ƶλλ -2024-12-19 22:56:46 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:47 - INFO - ƶλλ -2024-12-19 22:56:47 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - INFO - ƶλλ -2024-12-19 22:56:48 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:49 - INFO - ƶλλ -2024-12-19 22:56:49 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:50 - INFO - ƶλλ -2024-12-19 22:56:50 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:51 - INFO - ƶλλ -2024-12-19 22:56:51 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:52 - INFO - ƶλλ -2024-12-19 22:56:52 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:53 - INFO - ƶλλ -2024-12-19 22:56:53 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:54 - INFO - ƶλλ -2024-12-19 22:56:54 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:55 - INFO - ƶλλ -2024-12-19 22:56:55 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:56:56 - INFO - ƶλλ -2024-12-19 22:56:56 - INFO - û˳ -2024-12-19 22:56:56 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:57:07 - INFO - ϵͳ -2024-12-19 22:57:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:57:10 - INFO - л -2024-12-19 22:57:10 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:57:10 - INFO - лԶ״̬ -2024-12-19 22:57:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:11 - INFO - һȷ -2024-12-19 22:57:11 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:57:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:57:11 - INFO - IO: 31 -2024-12-19 22:57:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:57:16 - INFO - IO: 30 -2024-12-19 22:57:16 - INFO - ͶϿʼ -2024-12-19 22:57:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:16 - INFO - ͶϿʼ -2024-12-19 22:57:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:20 - INFO - ƶλλ -2024-12-19 22:57:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:21 - INFO - ƶλλ -2024-12-19 22:57:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:21 - INFO - ǷȫͶ -2024-12-19 22:57:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:22 - INFO - ǷȫͶ -2024-12-19 22:57:22 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:22 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:22 - INFO - ƶλ -2024-12-19 22:57:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:24 - INFO - ƶλ -2024-12-19 22:57:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:24 - INFO - ƶλ -2024-12-19 22:57:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:57:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:57:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:30 - INFO - ƶλλ -2024-12-19 22:57:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:35 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:57:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:38 - INFO - ƶλλ -2024-12-19 22:57:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:41 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:57:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:44 - INFO - ƶλλ -2024-12-19 22:57:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:57:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:58:17 - INFO - ƶλλ -2024-12-19 22:58:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:58:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:03 - INFO - ϵͳ -2024-12-19 22:59:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:05 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:59:05 - INFO - л -2024-12-19 22:59:05 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:59:05 - INFO - лԶ״̬ -2024-12-19 22:59:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:06 - INFO - һȷ -2024-12-19 22:59:06 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:59:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:59:06 - INFO - IO: 31 -2024-12-19 22:59:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:59:11 - INFO - IO: 30 -2024-12-19 22:59:11 - INFO - ͶϿʼ -2024-12-19 22:59:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:11 - INFO - ͶϿʼ -2024-12-19 22:59:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:11 - INFO - ƶλλ -2024-12-19 22:59:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ƶλλ -2024-12-19 22:59:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ǷȫͶ -2024-12-19 22:59:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ǷȫͶ -2024-12-19 22:59:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ƶλ -2024-12-19 22:59:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:12 - INFO - ƶλ -2024-12-19 22:59:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ƶλ -2024-12-19 22:59:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:12 - INFO - ƶλλ -2024-12-19 22:59:12 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 22:59:12 - INFO - ƶλλ -2024-12-19 22:59:12 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:13 - INFO - ƶλλ -2024-12-19 22:59:13 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:14 - INFO - ƶλλ -2024-12-19 22:59:14 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:15 - INFO - ƶλλ -2024-12-19 22:59:15 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:16 - INFO - ƶλλ -2024-12-19 22:59:16 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:17 - INFO - ƶλλ -2024-12-19 22:59:17 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:18 - INFO - ƶλλ -2024-12-19 22:59:18 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:19 - INFO - ƶλλ -2024-12-19 22:59:19 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:20 - INFO - ƶλλ -2024-12-19 22:59:20 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:21 - INFO - ƶλλ -2024-12-19 22:59:21 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:22 - INFO - ƶλλ -2024-12-19 22:59:22 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - INFO - ƶλλ -2024-12-19 22:59:23 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:24 - INFO - ƶλλ -2024-12-19 22:59:24 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:25 - INFO - ƶλλ -2024-12-19 22:59:25 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:26 - INFO - ƶλλ -2024-12-19 22:59:26 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 22:59:26 - INFO - -2024-12-19 22:59:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 22:59:26 - INFO - Ͷֹͣ -2024-12-19 22:59:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:29 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 22:59:29 - INFO - л -2024-12-19 22:59:29 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 22:59:29 - INFO - лԶ״̬ -2024-12-19 22:59:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:29 - INFO - һȷ -2024-12-19 22:59:29 - INFO - Ӧ1:ͶϿʼ -2024-12-19 22:59:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 22:59:29 - INFO - IO: 31 -2024-12-19 22:59:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 22:59:34 - INFO - IO: 30 -2024-12-19 22:59:34 - INFO - ͶϿʼ -2024-12-19 22:59:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:34 - INFO - ͶϿʼ -2024-12-19 22:59:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:34 - INFO - ƶλλ -2024-12-19 22:59:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:35 - INFO - ƶλλ -2024-12-19 22:59:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:35 - INFO - ǷȫͶ -2024-12-19 22:59:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:35 - INFO - ǷȫͶ -2024-12-19 22:59:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 22:59:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 22:59:35 - INFO - ƶλ -2024-12-19 22:59:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:35 - INFO - ƶλ -2024-12-19 22:59:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 22:59:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:00:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:00:55 - INFO - ƶλ -2024-12-19 23:00:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:00:55 - INFO - ƶλ -2024-12-19 23:00:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:01:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:01:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:44 - INFO - ƶλλ -2024-12-19 23:01:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:01:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:02:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:39 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 23:03:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:48 - INFO - ƶλλ -2024-12-19 23:03:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:03:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:04:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:04:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:29 - INFO - ϵͳ -2024-12-19 23:05:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:49 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:05:49 - INFO - л -2024-12-19 23:05:49 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:05:49 - INFO - лԶ״̬ -2024-12-19 23:05:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:50 - INFO - һȷ -2024-12-19 23:05:50 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:05:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:05:50 - INFO - IO: 31 -2024-12-19 23:05:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:05:55 - INFO - IO: 30 -2024-12-19 23:05:55 - INFO - ͶϿʼ -2024-12-19 23:05:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:55 - INFO - ͶϿʼ -2024-12-19 23:05:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:55 - INFO - ƶλλ -2024-12-19 23:05:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:55 - INFO - ƶλλ -2024-12-19 23:05:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:55 - INFO - ǷȫͶ -2024-12-19 23:05:55 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:55 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:05:56 - INFO - ǷȫͶ -2024-12-19 23:05:56 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:05:56 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:05:56 - INFO - ƶλ -2024-12-19 23:05:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:03 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:03 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:03 - INFO - ƶλ -2024-12-19 23:06:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:03 - INFO - ƶλ -2024-12-19 23:06:03 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:03 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'X' -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:03 - INFO - ƶλλ -2024-12-19 23:06:03 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:04 - INFO - ƶλλ -2024-12-19 23:06:04 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:05 - INFO - ƶλλ -2024-12-19 23:06:05 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:06 - INFO - ƶλλ -2024-12-19 23:06:06 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:07 - INFO - ƶλλ -2024-12-19 23:06:07 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:08 - INFO - ƶλλ -2024-12-19 23:06:08 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - INFO - û˳ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:09 - INFO - ƶλλ -2024-12-19 23:06:09 - ERROR - 'NoneType' object has no attribute 'compare' -2024-12-19 23:06:29 - INFO - ϵͳ -2024-12-19 23:06:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:31 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:06:31 - INFO - л -2024-12-19 23:06:31 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:06:31 - INFO - лԶ״̬ -2024-12-19 23:06:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:34 - INFO - һȷ -2024-12-19 23:06:34 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:06:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:06:34 - INFO - IO: 31 -2024-12-19 23:06:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:06:39 - INFO - IO: 30 -2024-12-19 23:06:39 - INFO - ͶϿʼ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - INFO - ͶϿʼ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - INFO - ƶλλ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - INFO - ƶλλ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:39 - INFO - ǷȫͶ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - INFO - ǷȫͶ -2024-12-19 23:06:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:06:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:06:39 - INFO - ƶλ -2024-12-19 23:06:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:06:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:07:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:08:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:13 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:09:13 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:09:13 - INFO - ƶλ -2024-12-19 23:09:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:09:54 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:09:54 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:09:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:15 - INFO - ƶλλ -2024-12-19 23:10:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:10:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:11:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:52 - INFO - -2024-12-19 23:12:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 23:12:52 - INFO - Ͷֹͣ -2024-12-19 23:12:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:52 - INFO - -2024-12-19 23:12:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 23:12:52 - INFO - Ͷֹͣ -2024-12-19 23:12:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:55 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:12:55 - INFO - л -2024-12-19 23:12:55 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:12:55 - INFO - лԶ״̬ -2024-12-19 23:12:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:56 - INFO - һȷ -2024-12-19 23:12:56 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:12:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:12:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:19 - INFO - ϵͳ -2024-12-19 23:13:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:13:22 - INFO - л -2024-12-19 23:13:22 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:13:22 - INFO - лԶ״̬ -2024-12-19 23:13:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:23 - INFO - һȷ -2024-12-19 23:13:23 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:13:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:13:23 - INFO - IO: 31 -2024-12-19 23:13:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:13:28 - INFO - IO: 30 -2024-12-19 23:13:28 - INFO - ͶϿʼ -2024-12-19 23:13:28 - ERROR - ȸλԭ -2024-12-19 23:13:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:33 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:13:33 - INFO - л -2024-12-19 23:13:33 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:13:33 - INFO - лԶ״̬ -2024-12-19 23:13:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:34 - INFO - -2024-12-19 23:13:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 23:13:34 - INFO - Ͷֹͣ -2024-12-19 23:13:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:34 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:13:34 - INFO - л -2024-12-19 23:13:34 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:13:34 - INFO - лԶ״̬ -2024-12-19 23:13:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:35 - INFO - һȷ -2024-12-19 23:13:35 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:13:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:13:35 - INFO - IO: 31 -2024-12-19 23:13:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:13:40 - INFO - IO: 30 -2024-12-19 23:13:40 - INFO - ͶϿʼ -2024-12-19 23:13:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:13:52 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:14:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:15:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:27 - INFO - ϵͳ -2024-12-19 23:16:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:28 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:37 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:16:37 - INFO - л -2024-12-19 23:16:37 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:16:37 - INFO - лԶ״̬ -2024-12-19 23:16:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:38 - INFO - һȷ -2024-12-19 23:16:38 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:16:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:16:38 - INFO - IO: 31 -2024-12-19 23:16:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:16:43 - INFO - IO: 30 -2024-12-19 23:16:43 - INFO - ͶϿʼ -2024-12-19 23:16:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:16:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:19 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:31 - INFO - ϵͳ -2024-12-19 23:17:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:17:38 - INFO - л -2024-12-19 23:17:38 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:17:38 - INFO - лԶ״̬ -2024-12-19 23:17:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:39 - INFO - һȷ -2024-12-19 23:17:39 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:17:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:17:39 - INFO - IO: 31 -2024-12-19 23:17:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:17:44 - INFO - IO: 30 -2024-12-19 23:17:44 - INFO - ͶϿʼ -2024-12-19 23:17:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:56 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:17:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:49 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:18:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:19:51 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:06 - INFO - ϵͳ -2024-12-19 23:20:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:20:15 - INFO - л -2024-12-19 23:20:15 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:20:15 - INFO - лԶ״̬ -2024-12-19 23:20:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:16 - INFO - һȷ -2024-12-19 23:20:16 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:20:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:20:16 - INFO - IO: 31 -2024-12-19 23:20:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:20:21 - INFO - IO: 30 -2024-12-19 23:20:21 - INFO - ͶϿʼ -2024-12-19 23:20:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:20:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:01 - INFO - ϵͳ -2024-12-19 23:21:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:03 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:21:03 - INFO - л -2024-12-19 23:21:03 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:21:03 - INFO - лԶ״̬ -2024-12-19 23:21:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:05 - INFO - һȷ -2024-12-19 23:21:05 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:21:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:21:05 - INFO - IO: 31 -2024-12-19 23:21:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:21:10 - INFO - IO: 30 -2024-12-19 23:21:10 - INFO - ͶϿʼ -2024-12-19 23:21:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:21:53 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:22:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:22:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:23:49 - INFO - ϵͳ -2024-12-19 23:23:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:23:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:23:54 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:23:54 - INFO - л -2024-12-19 23:23:54 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:23:54 - INFO - лԶ״̬ -2024-12-19 23:23:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:23:55 - INFO - һȷ -2024-12-19 23:23:55 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:23:55 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:23:55 - INFO - IO: 31 -2024-12-19 23:23:55 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:24:00 - INFO - IO: 30 -2024-12-19 23:24:00 - INFO - ͶϿʼ -2024-12-19 23:24:00 - ERROR - ȸλԭ -2024-12-19 23:24:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:02 - INFO - -2024-12-19 23:24:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[]} -2024-12-19 23:24:02 - INFO - Ͷֹͣ -2024-12-19 23:24:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:03 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:24:03 - INFO - л -2024-12-19 23:24:03 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:24:03 - INFO - лԶ״̬ -2024-12-19 23:24:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:04 - INFO - һȷ -2024-12-19 23:24:04 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:24:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:24:04 - INFO - IO: 31 -2024-12-19 23:24:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:24:09 - INFO - IO: 30 -2024-12-19 23:24:09 - INFO - ͶϿʼ -2024-12-19 23:24:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:26 - INFO - ͶϿʼ -2024-12-19 23:24:26 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:26 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:27 - INFO - ƶλλ -2024-12-19 23:24:27 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:27 - INFO - ƶλλ -2024-12-19 23:24:27 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:27 - INFO - ǷȫͶ -2024-12-19 23:24:27 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:27 - INFO - ǷȫͶ -2024-12-19 23:24:27 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:27 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:27 - INFO - ƶλ -2024-12-19 23:24:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:37 - INFO - ƶλ -2024-12-19 23:24:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:42 - INFO - ƶλλ -2024-12-19 23:24:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:42 - INFO - ƶλλ -2024-12-19 23:24:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:42 - INFO - ƶλλ -2024-12-19 23:24:42 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:42 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:42 - INFO - ƶץλ -2024-12-19 23:24:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:46 - INFO - ץϵλ -2024-12-19 23:24:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:24:50 - INFO - IO: 81 -2024-12-19 23:24:50 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:24:50 - INFO - IO: 110 -2024-12-19 23:24:50 - INFO - ƶץλ -2024-12-19 23:24:50 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:57 - INFO - ץϵλ -2024-12-19 23:24:57 - INFO - ץϳɹ -2024-12-19 23:24:57 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:57 - INFO - ƶλλ -2024-12-19 23:24:57 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:57 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:57 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:58 - INFO - ƶλλ -2024-12-19 23:24:58 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:58 - INFO - ƶλλ -2024-12-19 23:24:58 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:58 - INFO - ƶƴλ -2024-12-19 23:24:58 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:58 - INFO - ƶƴλ -2024-12-19 23:24:58 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:24:58 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:24:58 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:58 - INFO - ҡ -2024-12-19 23:24:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:58 - INFO - IO: 121 -2024-12-19 23:24:58 - INFO - ҡ -2024-12-19 23:24:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:58 - INFO - IO: 120 -2024-12-19 23:24:58 - INFO - ҡ -2024-12-19 23:24:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:58 - INFO - IO: 120 -2024-12-19 23:24:58 - INFO - ҡ -2024-12-19 23:24:58 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:58 - INFO - IO: 121 -2024-12-19 23:24:58 - INFO - ҡ -2024-12-19 23:24:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 121 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 120 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 120 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 121 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 121 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 120 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 120 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 121 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:24:59 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:24:59 - INFO - IO: 121 -2024-12-19 23:24:59 - INFO - ҡ -2024-12-19 23:25:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:00 - INFO - IO: 120 -2024-12-19 23:25:00 - INFO - ҡ -2024-12-19 23:25:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:00 - INFO - IO: 120 -2024-12-19 23:25:00 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:00 - INFO - IO: 110 -2024-12-19 23:25:00 - INFO - ҡ -2024-12-19 23:25:00 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:01 - INFO - ƶӿմ -2024-12-19 23:25:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:01 - INFO - IO: 80 -2024-12-19 23:25:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:01 - INFO - IO: 111 -2024-12-19 23:25:01 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:01 - INFO - IO: 110 -2024-12-19 23:25:01 - INFO - ƶӿմ -2024-12-19 23:25:01 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:01 - INFO - ʣͶϴ998 -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:01 - INFO - ƶλ -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:01 - INFO - ƶλλ -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:01 - INFO - ƶλλ -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:01 - INFO - ƶλλ -2024-12-19 23:25:01 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:01 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:02 - INFO - ƶץλ -2024-12-19 23:25:02 - INFO - ץϵλ -2024-12-19 23:25:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:02 - INFO - IO: 81 -2024-12-19 23:25:02 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:02 - INFO - IO: 110 -2024-12-19 23:25:02 - INFO - ƶץλ -2024-12-19 23:25:02 - INFO - ץϵλ -2024-12-19 23:25:02 - INFO - ץϳɹ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - INFO - ƶλλ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - INFO - ƶλλ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:02 - INFO - ƶλλ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - INFO - ƶƴλ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:02 - INFO - ƶƴλ -2024-12-19 23:25:02 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:02 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 120 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 121 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 121 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 120 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 120 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 121 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:03 - INFO - IO: 121 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:03 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:03 - INFO - IO: 120 -2024-12-19 23:25:03 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 120 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 121 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 121 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 120 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 120 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 121 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 120 -2024-12-19 23:25:04 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:04 - INFO - IO: 110 -2024-12-19 23:25:04 - INFO - ҡ -2024-12-19 23:25:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:05 - INFO - ƶӿմ -2024-12-19 23:25:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:05 - INFO - IO: 80 -2024-12-19 23:25:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:05 - INFO - IO: 111 -2024-12-19 23:25:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:05 - INFO - IO: 110 -2024-12-19 23:25:05 - INFO - ƶӿմ -2024-12-19 23:25:06 - INFO - ʣͶϴ997 -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:06 - INFO - ƶλ -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:06 - INFO - ƶλλ -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:06 - INFO - ƶλλ -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:06 - INFO - ƶλλ -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:06 - INFO - ƶץλ -2024-12-19 23:25:06 - INFO - ץϵλ -2024-12-19 23:25:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:06 - INFO - IO: 81 -2024-12-19 23:25:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:06 - INFO - IO: 110 -2024-12-19 23:25:06 - INFO - ƶץλ -2024-12-19 23:25:06 - INFO - ץϵλ -2024-12-19 23:25:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:06 - INFO - ץϳɹ -2024-12-19 23:25:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - INFO - ƶλλ -2024-12-19 23:25:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - INFO - ƶλλ -2024-12-19 23:25:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - INFO - ƶλλ -2024-12-19 23:25:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - INFO - ƶƴλ -2024-12-19 23:25:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:07 - INFO - ƶƴλ -2024-12-19 23:25:07 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:07 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:07 - INFO - ҡ -2024-12-19 23:25:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:07 - INFO - IO: 121 -2024-12-19 23:25:07 - INFO - ҡ -2024-12-19 23:25:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:07 - INFO - IO: 120 -2024-12-19 23:25:07 - INFO - ҡ -2024-12-19 23:25:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:07 - INFO - IO: 120 -2024-12-19 23:25:07 - INFO - ҡ -2024-12-19 23:25:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 121 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 121 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 120 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 120 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 121 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:08 - INFO - IO: 121 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 120 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 120 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:08 - INFO - IO: 121 -2024-12-19 23:25:08 - INFO - ҡ -2024-12-19 23:25:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:09 - INFO - IO: 121 -2024-12-19 23:25:09 - INFO - ҡ -2024-12-19 23:25:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:09 - INFO - IO: 120 -2024-12-19 23:25:09 - INFO - ҡ -2024-12-19 23:25:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:09 - INFO - IO: 120 -2024-12-19 23:25:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:09 - INFO - IO: 110 -2024-12-19 23:25:09 - INFO - ҡ -2024-12-19 23:25:09 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:10 - INFO - ƶӿմ -2024-12-19 23:25:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:10 - INFO - IO: 80 -2024-12-19 23:25:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:10 - INFO - IO: 111 -2024-12-19 23:25:10 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:10 - INFO - IO: 110 -2024-12-19 23:25:10 - INFO - ƶӿմ -2024-12-19 23:25:10 - INFO - ʣͶϴ996 -2024-12-19 23:25:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:10 - INFO - ƶλ -2024-12-19 23:25:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:10 - INFO - ƶλλ -2024-12-19 23:25:10 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:10 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - INFO - ƶλλ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:11 - INFO - ƶλλ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - INFO - ƶץλ -2024-12-19 23:25:11 - INFO - ץϵλ -2024-12-19 23:25:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:11 - INFO - IO: 81 -2024-12-19 23:25:11 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:11 - INFO - IO: 110 -2024-12-19 23:25:11 - INFO - ƶץλ -2024-12-19 23:25:11 - INFO - ץϵλ -2024-12-19 23:25:11 - INFO - ץϳɹ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:11 - INFO - ƶλλ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - INFO - ƶλλ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:11 - INFO - ƶλλ -2024-12-19 23:25:11 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:11 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:12 - INFO - ƶƴλ -2024-12-19 23:25:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:12 - INFO - ƶƴλ -2024-12-19 23:25:12 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:12 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 120 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 121 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 121 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 120 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 120 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:12 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:12 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:12 - INFO - IO: 121 -2024-12-19 23:25:12 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 121 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 120 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 120 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 121 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 121 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 120 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 120 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 121 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 120 -2024-12-19 23:25:13 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:13 - INFO - IO: 110 -2024-12-19 23:25:13 - INFO - ҡ -2024-12-19 23:25:14 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:14 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶӿմ -2024-12-19 23:25:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:15 - INFO - IO: 80 -2024-12-19 23:25:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:15 - INFO - IO: 111 -2024-12-19 23:25:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:15 - INFO - IO: 110 -2024-12-19 23:25:15 - INFO - ƶӿմ -2024-12-19 23:25:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:15 - INFO - ʣͶϴ995 -2024-12-19 23:25:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶλ -2024-12-19 23:25:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶλλ -2024-12-19 23:25:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶλλ -2024-12-19 23:25:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶλλ -2024-12-19 23:25:15 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:15 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:15 - INFO - ƶץλ -2024-12-19 23:25:15 - INFO - ץϵλ -2024-12-19 23:25:15 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:15 - INFO - IO: 81 -2024-12-19 23:25:15 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:15 - INFO - IO: 110 -2024-12-19 23:25:15 - INFO - ƶץλ -2024-12-19 23:25:15 - INFO - ץϵλ -2024-12-19 23:25:16 - INFO - ץϳɹ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - INFO - ƶλλ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - INFO - ƶλλ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:16 - INFO - ƶλλ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - INFO - ƶƴλ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - INFO - ƶƴλ -2024-12-19 23:25:16 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:16 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:16 - INFO - ҡ -2024-12-19 23:25:16 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:16 - INFO - IO: 121 -2024-12-19 23:25:16 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 120 -2024-12-19 23:25:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 120 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 121 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 121 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 120 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 120 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 121 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 121 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:17 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:17 - INFO - IO: 120 -2024-12-19 23:25:17 - INFO - ҡ -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 120 -2024-12-19 23:25:18 - INFO - ҡ -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 121 -2024-12-19 23:25:18 - INFO - ҡ -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 121 -2024-12-19 23:25:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:18 - INFO - ҡ -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 120 -2024-12-19 23:25:18 - INFO - ҡ -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 120 -2024-12-19 23:25:18 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:18 - INFO - IO: 110 -2024-12-19 23:25:18 - INFO - ҡ -2024-12-19 23:25:18 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:19 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:19 - INFO - ƶӿմ -2024-12-19 23:25:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:19 - INFO - IO: 80 -2024-12-19 23:25:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:19 - INFO - IO: 111 -2024-12-19 23:25:19 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:19 - INFO - IO: 110 -2024-12-19 23:25:19 - INFO - ƶӿմ -2024-12-19 23:25:19 - INFO - ʣͶϴ994 -2024-12-19 23:25:19 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:19 - INFO - ƶλ -2024-12-19 23:25:19 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:19 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:20 - INFO - ƶλλ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - INFO - ƶλλ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - INFO - ƶλλ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - INFO - ƶץλ -2024-12-19 23:25:20 - INFO - ץϵλ -2024-12-19 23:25:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:20 - INFO - IO: 81 -2024-12-19 23:25:20 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:20 - INFO - IO: 110 -2024-12-19 23:25:20 - INFO - ƶץλ -2024-12-19 23:25:20 - INFO - ץϵλ -2024-12-19 23:25:20 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:20 - INFO - ץϳɹ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - INFO - ƶλλ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:20 - INFO - ƶλλ -2024-12-19 23:25:20 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:20 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:21 - INFO - ƶλλ -2024-12-19 23:25:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:21 - INFO - ƶƴλ -2024-12-19 23:25:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:21 - INFO - ƶƴλ -2024-12-19 23:25:21 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:21 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:21 - INFO - IO: 120 -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:21 - INFO - IO: 121 -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:21 - INFO - IO: 121 -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:21 - INFO - IO: 120 -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:21 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:21 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:21 - INFO - IO: 120 -2024-12-19 23:25:21 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 121 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 121 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 120 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 120 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 121 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 121 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 120 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 120 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:22 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:22 - INFO - IO: 121 -2024-12-19 23:25:22 - INFO - ҡ -2024-12-19 23:25:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:23 - INFO - IO: 120 -2024-12-19 23:25:23 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:23 - INFO - IO: 110 -2024-12-19 23:25:23 - INFO - ҡ -2024-12-19 23:25:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - INFO - ƶӿմ -2024-12-19 23:25:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:24 - INFO - IO: 80 -2024-12-19 23:25:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:24 - INFO - IO: 111 -2024-12-19 23:25:24 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:24 - INFO - IO: 110 -2024-12-19 23:25:24 - INFO - ƶӿմ -2024-12-19 23:25:24 - INFO - ʣͶϴ993 -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - INFO - ƶλ -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - INFO - ƶλλ -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - INFO - ƶλλ -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - INFO - ƶλλ -2024-12-19 23:25:24 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:24 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:24 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:24 - INFO - ƶץλ -2024-12-19 23:25:24 - INFO - ץϵλ -2024-12-19 23:25:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:25 - INFO - IO: 81 -2024-12-19 23:25:25 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:25 - INFO - IO: 110 -2024-12-19 23:25:25 - INFO - ƶץλ -2024-12-19 23:25:25 - INFO - ץϵλ -2024-12-19 23:25:25 - INFO - ץϳɹ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - INFO - ƶλλ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:25 - INFO - ƶλλ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - INFO - ƶλλ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - INFO - ƶƴλ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - INFO - ƶƴλ -2024-12-19 23:25:25 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:25 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:25 - INFO - ҡ -2024-12-19 23:25:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 121 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 120 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 120 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 121 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 121 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 120 -2024-12-19 23:25:26 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 120 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 121 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:26 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:26 - INFO - IO: 121 -2024-12-19 23:25:26 - INFO - ҡ -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 120 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 120 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 121 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 121 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 120 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 120 -2024-12-19 23:25:27 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:27 - INFO - IO: 110 -2024-12-19 23:25:27 - INFO - ҡ -2024-12-19 23:25:27 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:28 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:28 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:28 - INFO - ƶӿմ -2024-12-19 23:25:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:28 - INFO - IO: 80 -2024-12-19 23:25:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:28 - INFO - IO: 111 -2024-12-19 23:25:28 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:28 - INFO - IO: 110 -2024-12-19 23:25:28 - INFO - ƶӿմ -2024-12-19 23:25:29 - INFO - ʣͶϴ992 -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:29 - INFO - ƶλ -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:29 - INFO - ƶλλ -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:29 - INFO - ƶλλ -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:29 - INFO - ƶλλ -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:29 - INFO - ƶץλ -2024-12-19 23:25:29 - INFO - ץϵλ -2024-12-19 23:25:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:29 - INFO - IO: 81 -2024-12-19 23:25:29 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:29 - INFO - IO: 110 -2024-12-19 23:25:29 - INFO - ƶץλ -2024-12-19 23:25:29 - INFO - ץϵλ -2024-12-19 23:25:29 - INFO - ץϳɹ -2024-12-19 23:25:29 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:29 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ƶλλ -2024-12-19 23:25:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ƶλλ -2024-12-19 23:25:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ƶλλ -2024-12-19 23:25:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ƶƴλ -2024-12-19 23:25:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ƶƴλ -2024-12-19 23:25:30 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:30 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:30 - INFO - ҡ -2024-12-19 23:25:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:30 - INFO - IO: 120 -2024-12-19 23:25:30 - INFO - ҡ -2024-12-19 23:25:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:30 - INFO - IO: 121 -2024-12-19 23:25:30 - INFO - ҡ -2024-12-19 23:25:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:30 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:30 - INFO - IO: 121 -2024-12-19 23:25:30 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 120 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 120 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 121 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 121 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 120 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 120 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 121 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 121 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:31 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:31 - INFO - IO: 120 -2024-12-19 23:25:31 - INFO - ҡ -2024-12-19 23:25:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:32 - INFO - IO: 120 -2024-12-19 23:25:32 - INFO - ҡ -2024-12-19 23:25:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:32 - INFO - IO: 121 -2024-12-19 23:25:32 - INFO - ҡ -2024-12-19 23:25:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:32 - INFO - IO: 120 -2024-12-19 23:25:32 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:32 - INFO - IO: 110 -2024-12-19 23:25:32 - INFO - ҡ -2024-12-19 23:25:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:33 - INFO - ƶӿմ -2024-12-19 23:25:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:33 - INFO - IO: 80 -2024-12-19 23:25:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:33 - INFO - IO: 111 -2024-12-19 23:25:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:33 - INFO - IO: 110 -2024-12-19 23:25:33 - INFO - ƶӿմ -2024-12-19 23:25:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:33 - INFO - ʣͶϴ991 -2024-12-19 23:25:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:33 - INFO - ƶλ -2024-12-19 23:25:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:33 - INFO - ƶλλ -2024-12-19 23:25:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:33 - INFO - ƶλλ -2024-12-19 23:25:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - INFO - ƶλλ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - INFO - ƶץλ -2024-12-19 23:25:34 - INFO - ץϵλ -2024-12-19 23:25:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:25:34 - INFO - IO: 81 -2024-12-19 23:25:34 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:34 - INFO - IO: 110 -2024-12-19 23:25:34 - INFO - ƶץλ -2024-12-19 23:25:34 - INFO - ץϵλ -2024-12-19 23:25:34 - INFO - ץϳɹ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - INFO - ƶλλ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:34 - INFO - ƶλλ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - INFO - ƶλλ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:34 - INFO - ƶƴλ -2024-12-19 23:25:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:35 - INFO - ƶƴλ -2024-12-19 23:25:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 121 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 120 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 120 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 121 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 121 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:35 - INFO - IO: 120 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:35 - INFO - IO: 120 -2024-12-19 23:25:35 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 121 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 121 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 120 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 120 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 121 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 121 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 120 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 120 -2024-12-19 23:25:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:36 - INFO - IO: 110 -2024-12-19 23:25:36 - INFO - ҡ -2024-12-19 23:25:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:37 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:37 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:37 - INFO - ƶӿմ -2024-12-19 23:25:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:25:38 - INFO - IO: 80 -2024-12-19 23:25:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:25:38 - INFO - IO: 111 -2024-12-19 23:25:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:25:38 - INFO - IO: 110 -2024-12-19 23:25:38 - INFO - ƶӿմ -2024-12-19 23:25:38 - INFO - ʣͶϴ990 -2024-12-19 23:25:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:25:38 - INFO - ƶλ -2024-12-19 23:25:38 - ERROR - ͶϽ -2024-12-19 23:25:38 - INFO - ƶλ -2024-12-19 23:25:38 - INFO - ͶϽ -2024-12-19 23:25:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:25:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:25:38 - INFO - λɹ -2024-12-19 23:25:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:26:40 - INFO - л -2024-12-19 23:26:40 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:26:40 - INFO - лԶ״̬ -2024-12-19 23:26:41 - INFO - һȷ -2024-12-19 23:26:41 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:26:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-19 23:26:41 - INFO - IO: 31 -2024-12-19 23:26:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:44 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-19 23:26:44 - INFO - л -2024-12-19 23:26:44 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-19 23:26:44 - INFO - лԶ״̬ -2024-12-19 23:26:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:45 - INFO - һȷ -2024-12-19 23:26:45 - INFO - Ӧ1:ͶϿʼ -2024-12-19 23:26:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-19 23:26:46 - INFO - IO: 30 -2024-12-19 23:26:46 - INFO - ͶϿʼ -2024-12-19 23:26:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:46 - INFO - ͶϿʼ -2024-12-19 23:26:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:46 - INFO - ƶλλ -2024-12-19 23:26:46 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:46 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:47 - INFO - ƶλλ -2024-12-19 23:26:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:47 - INFO - ǷȫͶ -2024-12-19 23:26:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:47 - INFO - ǷȫͶ -2024-12-19 23:26:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:47 - INFO - ƶλ -2024-12-19 23:26:47 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:47 - INFO - ƶλ -2024-12-19 23:26:48 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:26:53 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:26:53 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:26:53 - INFO - ƶλ -2024-12-19 23:26:54 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:05 - INFO - ƶλλ -2024-12-19 23:27:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:05 - INFO - ƶλλ -2024-12-19 23:27:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:05 - INFO - ƶλλ -2024-12-19 23:27:05 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:05 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:05 - INFO - ƶץλ -2024-12-19 23:27:05 - INFO - ץϵλ -2024-12-19 23:27:05 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:27:05 - INFO - IO: 81 -2024-12-19 23:27:05 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:05 - INFO - IO: 110 -2024-12-19 23:27:05 - INFO - ƶץλ -2024-12-19 23:27:05 - INFO - ץϵλ -2024-12-19 23:27:06 - INFO - ץϳɹ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - INFO - ƶλλ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - INFO - ƶλλ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:06 - INFO - ƶλλ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - INFO - ƶƴλ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - INFO - ƶƴλ -2024-12-19 23:27:06 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:06 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:06 - INFO - ҡ -2024-12-19 23:27:06 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:06 - INFO - IO: 120 -2024-12-19 23:27:06 - INFO - ҡ -2024-12-19 23:27:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 121 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 121 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 120 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 120 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 121 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:07 - INFO - IO: 121 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 120 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 120 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:07 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:07 - INFO - IO: 121 -2024-12-19 23:27:07 - INFO - ҡ -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 121 -2024-12-19 23:27:08 - INFO - ҡ -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 120 -2024-12-19 23:27:08 - INFO - ҡ -2024-12-19 23:27:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 120 -2024-12-19 23:27:08 - INFO - ҡ -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 121 -2024-12-19 23:27:08 - INFO - ҡ -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 120 -2024-12-19 23:27:08 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:08 - INFO - IO: 110 -2024-12-19 23:27:08 - INFO - ҡ -2024-12-19 23:27:08 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:09 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:09 - INFO - ƶӿմ -2024-12-19 23:27:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:27:09 - INFO - IO: 80 -2024-12-19 23:27:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:27:09 - INFO - IO: 111 -2024-12-19 23:27:09 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:09 - INFO - IO: 110 -2024-12-19 23:27:09 - INFO - ƶӿմ -2024-12-19 23:27:09 - INFO - ʣͶϴ998 -2024-12-19 23:27:09 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:09 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:09 - INFO - ƶλ -2024-12-19 23:27:10 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:33 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:33 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:34 - INFO - ƶλλ -2024-12-19 23:27:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:34 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:34 - INFO - ƶλλ -2024-12-19 23:27:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:34 - INFO - ƶλλ -2024-12-19 23:27:34 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:34 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:35 - INFO - ƶץλ -2024-12-19 23:27:35 - INFO - ץϵλ -2024-12-19 23:27:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-19 23:27:35 - INFO - IO: 81 -2024-12-19 23:27:35 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:35 - INFO - IO: 110 -2024-12-19 23:27:35 - INFO - ƶץλ -2024-12-19 23:27:35 - INFO - ץϵλ -2024-12-19 23:27:35 - INFO - ץϳɹ -2024-12-19 23:27:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:35 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:35 - INFO - ƶλλ -2024-12-19 23:27:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:35 - INFO - ƶλλ -2024-12-19 23:27:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:35 - INFO - ƶλλ -2024-12-19 23:27:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:35 - INFO - ƶƴλ -2024-12-19 23:27:35 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:35 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:36 - INFO - ƶƴλ -2024-12-19 23:27:36 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:36 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 121 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 120 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 120 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 121 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 121 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 120 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:36 - INFO - IO: 120 -2024-12-19 23:27:36 - INFO - ҡ -2024-12-19 23:27:36 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 121 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 121 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 120 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 120 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 121 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 121 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 120 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 120 -2024-12-19 23:27:37 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:37 - INFO - IO: 110 -2024-12-19 23:27:37 - INFO - ҡ -2024-12-19 23:27:37 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:38 - INFO - ƶӿմ -2024-12-19 23:27:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-19 23:27:39 - INFO - IO: 80 -2024-12-19 23:27:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-19 23:27:39 - INFO - IO: 111 -2024-12-19 23:27:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-19 23:27:39 - INFO - IO: 110 -2024-12-19 23:27:39 - INFO - ƶӿմ -2024-12-19 23:27:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-19 23:27:39 - INFO - ʣͶϴ997 -2024-12-19 23:27:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-19 23:27:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-19 23:27:39 - INFO - ƶλ -2024-12-19 23:27:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-20 20:25:43 - INFO - ϵͳ -2024-12-20 20:25:59 - INFO - û˳ -2024-12-20 20:26:02 - ERROR - ¼ʧ -2024-12-20 20:26:02 - INFO - ˳ϵͳ -2024-12-21 14:14:48 - INFO - ϵͳ -2024-12-21 14:15:20 - ERROR - ޻ظ -2024-12-21 14:15:20 - INFO - -2024-12-21 14:15:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:23 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:29 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:29 - INFO - Ͷϴ:1 -2024-12-21 14:15:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:30 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-21 14:15:30 - INFO - л -2024-12-21 14:15:30 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-21 14:15:30 - INFO - лԶ״̬ -2024-12-21 14:15:30 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["switchTool","2"]} -2024-12-21 14:15:32 - INFO - л -2024-12-21 14:15:32 - INFO - {"dsID":"www.hc-system.com.RemoteMonitor","reqType":"command","cmdData":["startButton","1"]} -2024-12-21 14:15:32 - INFO - лԶ״̬ -2024-12-21 14:15:32 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:33 - INFO - һȷ -2024-12-21 14:15:33 - INFO - Ӧ1:ͶϿʼ -2024-12-21 14:15:33 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"3","delay":"0"}]} -2024-12-21 14:15:33 - INFO - IO: 31 -2024-12-21 14:15:33 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:38 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"3","delay":"0"}]} -2024-12-21 14:15:38 - INFO - IO: 30 -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ͶϿʼ -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ͶϿʼ -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ƶλλ -2024-12-21 14:15:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ƶλλ -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - ǷȫͶ -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ǷȫͶ -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:38 - INFO - ƶλ -2024-12-21 14:15:38 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:38 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:38 - INFO - ƶλ -2024-12-21 14:15:38 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - INFO - ƶλ -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλ -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλλ -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλλ -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλλ -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:39 - INFO - ƶץλ -2024-12-21 14:15:39 - INFO - ץϵλ -2024-12-21 14:15:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-21 14:15:39 - INFO - IO: 81 -2024-12-21 14:15:39 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-21 14:15:39 - INFO - IO: 110 -2024-12-21 14:15:39 - INFO - ƶץλ -2024-12-21 14:15:39 - INFO - ץϵλ -2024-12-21 14:15:39 - INFO - ץϳɹ -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:39 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:39 - INFO - ƶλλ -2024-12-21 14:15:39 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:40 - INFO - ƶλλ -2024-12-21 14:15:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:40 - INFO - ƶλλ -2024-12-21 14:15:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:40 - INFO - ƶƴλ -2024-12-21 14:15:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:40 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:40 - INFO - ƶƴλ -2024-12-21 14:15:40 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:40 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:40 - INFO - ҡ -2024-12-21 14:15:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:40 - INFO - IO: 121 -2024-12-21 14:15:40 - INFO - ҡ -2024-12-21 14:15:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:40 - INFO - IO: 120 -2024-12-21 14:15:40 - INFO - ҡ -2024-12-21 14:15:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:40 - INFO - IO: 120 -2024-12-21 14:15:40 - INFO - ҡ -2024-12-21 14:15:40 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:40 - INFO - IO: 121 -2024-12-21 14:15:40 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 121 -2024-12-21 14:15:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 120 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 120 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 121 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 121 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 120 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 120 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 121 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:41 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:41 - INFO - IO: 121 -2024-12-21 14:15:41 - INFO - ҡ -2024-12-21 14:15:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:42 - INFO - IO: 120 -2024-12-21 14:15:42 - INFO - ҡ -2024-12-21 14:15:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:42 - INFO - IO: 120 -2024-12-21 14:15:42 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-21 14:15:42 - INFO - IO: 110 -2024-12-21 14:15:42 - INFO - ҡ -2024-12-21 14:15:42 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:43 - INFO - ƶӿմ -2024-12-21 14:15:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"8","delay":"0"}]} -2024-12-21 14:15:43 - INFO - IO: 80 -2024-12-21 14:15:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"11","delay":"0"}]} -2024-12-21 14:15:43 - INFO - IO: 111 -2024-12-21 14:15:43 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-21 14:15:43 - INFO - IO: 110 -2024-12-21 14:15:43 - INFO - ƶӿմ -2024-12-21 14:15:43 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ʣͶϴ998 -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ƶλ -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ƶλλ -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ƶλλ -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:43 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:43 - INFO - ƶλλ -2024-12-21 14:15:43 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:44 - INFO - ƶץλ -2024-12-21 14:15:44 - INFO - ץϵλ -2024-12-21 14:15:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"8","delay":"0"}]} -2024-12-21 14:15:44 - INFO - IO: 81 -2024-12-21 14:15:44 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-21 14:15:44 - INFO - IO: 110 -2024-12-21 14:15:44 - INFO - ƶץλ -2024-12-21 14:15:44 - INFO - ץϵλ -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ץϳɹ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ƶλλ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ƶλλ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ƶλλ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ƶƴλ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:44 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:44 - INFO - ƶƴλ -2024-12-21 14:15:44 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 120 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:45 - INFO - IO: 121 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 121 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 120 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 120 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 121 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 121 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:45 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:45 - INFO - IO: 120 -2024-12-21 14:15:45 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 120 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 121 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 121 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 120 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 120 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"1","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 121 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"12","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 120 -2024-12-21 14:15:46 - INFO - {"dsID":"HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"200","type":"0","io_status":"0","point":"11","delay":"0"}]} -2024-12-21 14:15:46 - INFO - IO: 110 -2024-12-21 14:15:46 - INFO - ҡ -2024-12-21 14:15:46 - WARNING - json{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]}{"dsID":"www.hc-system.com.RemoteMonitor","reqType":"query","queryData":["0","7","50","1","12","0","1","10","48","1","12","0","1","0","0","0","2","0","0","0","0","0"]} -2024-12-21 14:15:47 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"12.0","m4":"0.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"4","tool":"2"}]} -2024-12-21 14:15:47 - INFO - ƶλ:ֱߣX:7.0-Y:50.0-Z:1.0-U:12.0-V:0.0-W:1.0 -2024-12-21 14:15:47 - INFO - ˳ϵͳ +2025-01-11 16:55:33 - INFO - ϵͳ +2025-01-11 16:56:07 - INFO - ϵͳ +2025-01-11 16:56:39 - ERROR - ޻ظ +2025-01-11 16:56:39 - INFO - +2025-01-11 16:56:45 - ERROR - ޻ظ +2025-01-11 16:56:45 - INFO - +2025-01-11 16:56:50 - ERROR - ޻ظ +2025-01-11 16:56:50 - INFO - +2025-01-11 16:56:55 - ERROR - ޻ظ +2025-01-11 16:56:55 - INFO - +2025-01-11 16:57:01 - ERROR - ޻ظ +2025-01-11 16:57:01 - INFO - +2025-01-11 16:57:06 - ERROR - ޻ظ +2025-01-11 16:57:06 - INFO - +2025-01-11 16:57:12 - ERROR - ޻ظ +2025-01-11 16:57:12 - INFO - +2025-01-11 16:57:14 - INFO - ƶλ:ֱߣm0:7.0-m2:50.0-m3:1.0-m4:7.0-m5:50.0-m6:1.0 +2025-01-11 16:57:14 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"50.0","m2":"1.0","m3":"7.0","m4":"50.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"0","tool":"2"}]} +2025-01-11 16:57:17 - ERROR - ޻ظ +2025-01-11 16:57:17 - INFO - +2025-01-11 16:57:22 - ERROR - ޻ظ +2025-01-11 16:57:23 - INFO - +2025-01-11 16:57:28 - ERROR - ޻ظ +2025-01-11 16:57:28 - INFO - +2025-01-11 16:57:33 - ERROR - ޻ظ +2025-01-11 16:57:33 - INFO - +2025-01-11 16:57:39 - ERROR - ޻ظ +2025-01-11 16:57:39 - INFO - +2025-01-11 16:57:44 - ERROR - ޻ظ +2025-01-11 16:57:44 - INFO - +2025-01-11 16:57:50 - ERROR - ޻ظ +2025-01-11 16:57:50 - INFO - +2025-01-11 16:57:52 - INFO - ƶλ:ֱߣm0:7.0-m2:51.0-m3:1.0-m4:7.0-m5:51.0-m6:1.0 +2025-01-11 16:57:52 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"51.0","m2":"1.0","m3":"7.0","m4":"51.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"0","tool":"2"}]} +2025-01-11 16:57:55 - ERROR - ޻ظ +2025-01-11 16:57:55 - INFO - +2025-01-11 16:58:00 - ERROR - ޻ظ +2025-01-11 16:58:01 - INFO - +2025-01-11 16:58:06 - ERROR - ޻ظ +2025-01-11 16:58:06 - INFO - +2025-01-11 16:58:11 - ERROR - ޻ظ +2025-01-11 16:58:11 - INFO - +2025-01-11 16:58:17 - ERROR - ޻ظ +2025-01-11 16:58:17 - INFO - +2025-01-11 16:58:22 - ERROR - ޻ظ +2025-01-11 16:58:22 - INFO - +2025-01-11 16:58:28 - ERROR - ޻ظ +2025-01-11 16:58:28 - INFO - +2025-01-11 16:58:33 - ERROR - ޻ظ +2025-01-11 16:58:33 - INFO - +2025-01-11 16:58:39 - ERROR - ޻ظ +2025-01-11 16:58:39 - INFO - +2025-01-11 16:58:44 - ERROR - ޻ظ +2025-01-11 16:58:44 - INFO - +2025-01-11 16:58:49 - ERROR - ޻ظ +2025-01-11 16:58:49 - INFO - +2025-01-11 16:58:55 - ERROR - ޻ظ +2025-01-11 16:58:55 - INFO - +2025-01-11 16:59:00 - ERROR - ޻ظ +2025-01-11 16:59:00 - INFO - +2025-01-11 16:59:06 - ERROR - ޻ظ +2025-01-11 16:59:06 - INFO - +2025-01-11 16:59:11 - ERROR - ޻ظ +2025-01-11 16:59:11 - INFO - +2025-01-11 16:59:16 - ERROR - ޻ظ +2025-01-11 16:59:17 - INFO - +2025-01-11 16:59:22 - ERROR - ޻ظ +2025-01-11 16:59:22 - INFO - +2025-01-11 16:59:27 - ERROR - ޻ظ +2025-01-11 16:59:27 - INFO - +2025-01-11 16:59:33 - ERROR - ޻ظ +2025-01-11 16:59:33 - INFO - +2025-01-11 16:59:38 - ERROR - ޻ظ +2025-01-11 16:59:38 - INFO - +2025-01-11 16:59:44 - ERROR - ޻ظ +2025-01-11 16:59:44 - INFO - +2025-01-11 16:59:49 - ERROR - ޻ظ +2025-01-11 16:59:49 - INFO - +2025-01-11 16:59:54 - ERROR - ޻ظ +2025-01-11 16:59:55 - INFO - +2025-01-11 17:00:00 - ERROR - ޻ظ +2025-01-11 17:00:00 - INFO - +2025-01-11 17:00:05 - ERROR - ޻ظ +2025-01-11 17:00:05 - INFO - +2025-01-11 17:00:11 - ERROR - ޻ظ +2025-01-11 17:00:11 - INFO - +2025-01-11 17:00:16 - ERROR - ޻ظ +2025-01-11 17:00:16 - INFO - +2025-01-11 17:00:17 - INFO - ƶλ:ֱߣm0:7.0-m2:456.0-m3:1.0-m4:7.0-m5:456.0-m6:1.0 +2025-01-11 17:00:18 - INFO - {"dsID":"www.hc-system.com.HCRemoteCommand","reqType":"AddRCC","emptyList":"1","instructions":[{"oneshot":"1","action":"10","m0":"7.0","m1":"456.0","m2":"1.0","m3":"7.0","m4":"456.0","m5":"1.0","ckStatus":"0x3F","speed":"50","delay":"0","smooth":"0","tool":"2"}]} +2025-01-11 17:00:21 - ERROR - ޻ظ +2025-01-11 17:00:22 - INFO - +2025-01-11 17:00:27 - ERROR - ޻ظ +2025-01-11 17:00:27 - INFO - +2025-01-11 17:00:32 - ERROR - ޻ظ +2025-01-11 17:00:32 - INFO - +2025-01-11 17:00:38 - ERROR - ޻ظ +2025-01-11 17:00:38 - INFO - +2025-01-11 17:00:43 - ERROR - ޻ظ +2025-01-11 17:00:43 - INFO - +2025-01-11 17:00:49 - ERROR - ޻ظ +2025-01-11 17:00:49 - INFO - +2025-01-11 17:00:54 - ERROR - ޻ظ +2025-01-11 17:00:54 - INFO - +2025-01-11 17:00:59 - ERROR - ޻ظ +2025-01-11 17:01:00 - INFO - +2025-01-11 17:01:05 - ERROR - ޻ظ +2025-01-11 17:01:05 - INFO - +2025-01-11 17:01:10 - ERROR - ޻ظ +2025-01-11 17:01:10 - INFO - +2025-01-11 17:01:16 - ERROR - ޻ظ +2025-01-11 17:01:16 - INFO - +2025-01-11 17:01:21 - ERROR - ޻ظ +2025-01-11 17:01:21 - INFO - +2025-01-11 17:01:26 - ERROR - ޻ظ +2025-01-11 17:01:27 - INFO - +2025-01-11 17:01:32 - ERROR - ޻ظ +2025-01-11 17:01:32 - INFO - +2025-01-11 17:01:37 - ERROR - ޻ظ +2025-01-11 17:01:37 - INFO - +2025-01-11 17:01:43 - ERROR - ޻ظ +2025-01-11 17:01:43 - INFO - +2025-01-11 17:01:48 - ERROR - ޻ظ +2025-01-11 17:01:48 - INFO - +2025-01-11 17:01:54 - ERROR - ޻ظ +2025-01-11 17:01:54 - INFO - +2025-01-11 17:01:59 - ERROR - ޻ظ +2025-01-11 17:01:59 - INFO - +2025-01-11 17:02:04 - ERROR - ޻ظ +2025-01-11 17:02:05 - INFO - +2025-01-11 17:02:10 - ERROR - ޻ظ +2025-01-11 17:02:10 - INFO - +2025-01-11 17:02:15 - ERROR - ޻ظ +2025-01-11 17:02:15 - INFO - +2025-01-11 17:02:21 - ERROR - ޻ظ +2025-01-11 17:02:21 - INFO - +2025-01-11 17:02:26 - ERROR - ޻ظ +2025-01-11 17:02:26 - INFO - +2025-01-11 17:02:32 - ERROR - ޻ظ +2025-01-11 17:02:32 - INFO - +2025-01-11 17:02:37 - ERROR - ޻ظ +2025-01-11 17:02:37 - INFO - +2025-01-11 17:02:42 - ERROR - ޻ظ +2025-01-11 17:02:42 - INFO - +2025-01-11 17:02:48 - ERROR - ޻ظ +2025-01-11 17:02:48 - INFO - +2025-01-11 17:02:53 - ERROR - ޻ظ +2025-01-11 17:02:53 - INFO - +2025-01-11 17:02:59 - ERROR - ޻ظ +2025-01-11 17:02:59 - INFO - +2025-01-11 17:03:04 - ERROR - ޻ظ +2025-01-11 17:03:04 - INFO - +2025-01-11 17:03:09 - ERROR - ޻ظ +2025-01-11 17:03:10 - INFO - +2025-01-11 17:03:15 - ERROR - ޻ظ +2025-01-11 17:03:15 - INFO - +2025-01-11 17:03:20 - ERROR - ޻ظ +2025-01-11 17:03:20 - INFO - +2025-01-11 17:03:26 - ERROR - ޻ظ +2025-01-11 17:03:26 - INFO - +2025-01-11 17:03:31 - ERROR - ޻ظ +2025-01-11 17:03:31 - INFO - +2025-01-11 17:03:37 - ERROR - ޻ظ +2025-01-11 17:03:37 - INFO - +2025-01-11 17:03:42 - ERROR - ޻ظ +2025-01-11 17:03:42 - INFO - +2025-01-11 17:03:47 - ERROR - ޻ظ +2025-01-11 17:03:48 - INFO - +2025-01-11 17:03:53 - ERROR - ޻ظ +2025-01-11 17:03:53 - INFO - +2025-01-11 17:03:58 - ERROR - ޻ظ +2025-01-11 17:03:58 - INFO - +2025-01-11 17:04:04 - ERROR - ޻ظ +2025-01-11 17:04:04 - INFO - +2025-01-11 17:04:09 - ERROR - ޻ظ +2025-01-11 17:04:09 - INFO - +2025-01-11 17:04:15 - ERROR - ޻ظ +2025-01-11 17:04:15 - INFO - +2025-01-11 17:04:20 - ERROR - ޻ظ +2025-01-11 17:04:20 - INFO - +2025-01-11 17:04:25 - ERROR - ޻ظ +2025-01-11 17:04:26 - INFO - +2025-01-11 17:04:31 - ERROR - ޻ظ +2025-01-11 17:04:31 - INFO - +2025-01-11 17:04:36 - ERROR - ޻ظ +2025-01-11 17:04:36 - INFO - +2025-01-11 17:04:42 - ERROR - ޻ظ +2025-01-11 17:04:42 - INFO - +2025-01-11 17:04:47 - ERROR - ޻ظ +2025-01-11 17:04:47 - INFO - +2025-01-11 17:04:52 - ERROR - ޻ظ +2025-01-11 17:04:53 - INFO - +2025-01-11 17:04:58 - ERROR - ޻ظ +2025-01-11 17:04:58 - INFO - +2025-01-11 17:05:03 - ERROR - ޻ظ +2025-01-11 17:05:03 - INFO - +2025-01-11 17:05:09 - ERROR - ޻ظ +2025-01-11 17:05:09 - INFO - +2025-01-11 17:05:14 - ERROR - ޻ظ +2025-01-11 17:05:14 - INFO - +2025-01-11 17:05:20 - ERROR - ޻ظ +2025-01-11 17:05:20 - INFO - +2025-01-11 17:05:25 - ERROR - ޻ظ +2025-01-11 17:05:25 - INFO - +2025-01-11 17:05:30 - ERROR - ޻ظ +2025-01-11 17:05:31 - INFO - +2025-01-11 17:05:36 - ERROR - ޻ظ +2025-01-11 17:05:36 - INFO - +2025-01-11 17:05:41 - ERROR - ޻ظ +2025-01-11 17:05:41 - INFO - +2025-01-11 17:05:47 - ERROR - ޻ظ +2025-01-11 17:05:47 - INFO - +2025-01-11 17:05:52 - ERROR - ޻ظ +2025-01-11 17:05:52 - INFO - +2025-01-11 17:05:58 - ERROR - ޻ظ +2025-01-11 17:05:58 - INFO - +2025-01-11 17:06:03 - ERROR - ޻ظ +2025-01-11 17:06:03 - INFO - +2025-01-11 17:06:08 - ERROR - ޻ظ +2025-01-11 17:06:08 - INFO - +2025-01-11 17:06:14 - ERROR - ޻ظ +2025-01-11 17:06:14 - INFO - +2025-01-11 17:06:19 - ERROR - ޻ظ +2025-01-11 17:06:19 - INFO - +2025-01-11 17:06:25 - ERROR - ޻ظ +2025-01-11 17:06:25 - INFO - +2025-01-11 17:06:30 - ERROR - ޻ظ +2025-01-11 17:06:30 - INFO - +2025-01-11 17:06:35 - ERROR - ޻ظ +2025-01-11 17:06:36 - INFO - +2025-01-11 17:06:41 - ERROR - ޻ظ +2025-01-11 17:06:41 - INFO - +2025-01-11 17:06:46 - ERROR - ޻ظ +2025-01-11 17:06:46 - INFO - +2025-01-11 17:06:52 - ERROR - ޻ظ +2025-01-11 17:06:52 - INFO - +2025-01-11 17:06:57 - ERROR - ޻ظ +2025-01-11 17:06:57 - INFO - +2025-01-11 17:07:03 - ERROR - ޻ظ +2025-01-11 17:07:03 - INFO - +2025-01-11 17:07:08 - ERROR - ޻ظ +2025-01-11 17:07:08 - INFO - +2025-01-11 17:07:13 - ERROR - ޻ظ +2025-01-11 17:07:14 - INFO - +2025-01-11 17:07:19 - ERROR - ޻ظ +2025-01-11 17:07:19 - INFO - +2025-01-11 17:07:24 - ERROR - ޻ظ +2025-01-11 17:07:24 - INFO - +2025-01-11 17:07:30 - ERROR - ޻ظ +2025-01-11 17:07:30 - INFO - +2025-01-11 17:07:35 - ERROR - ޻ظ +2025-01-11 17:07:35 - INFO - +2025-01-11 17:07:40 - ERROR - ޻ظ +2025-01-11 17:07:41 - INFO - +2025-01-11 17:07:46 - ERROR - ޻ظ +2025-01-11 17:07:46 - INFO - +2025-01-11 17:07:51 - ERROR - ޻ظ +2025-01-11 17:07:51 - INFO - +2025-01-11 17:07:57 - ERROR - ޻ظ +2025-01-11 17:07:57 - INFO - +2025-01-11 17:08:02 - ERROR - ޻ظ +2025-01-11 17:08:02 - INFO - +2025-01-11 17:08:08 - ERROR - ޻ظ +2025-01-11 17:08:08 - INFO - +2025-01-11 17:08:13 - ERROR - ޻ظ +2025-01-11 17:08:13 - INFO - +2025-01-11 17:08:18 - ERROR - ޻ظ +2025-01-11 17:08:19 - INFO - +2025-01-11 17:08:24 - ERROR - ޻ظ +2025-01-11 17:08:24 - INFO - +2025-01-11 17:08:29 - ERROR - ޻ظ +2025-01-11 17:08:29 - INFO - +2025-01-11 17:08:35 - ERROR - ޻ظ +2025-01-11 17:08:35 - INFO - +2025-01-11 17:08:40 - ERROR - ޻ظ +2025-01-11 17:08:40 - INFO - +2025-01-11 17:08:46 - ERROR - ޻ظ +2025-01-11 17:08:46 - INFO - +2025-01-11 17:08:51 - ERROR - ޻ظ +2025-01-11 17:08:51 - INFO - +2025-01-11 17:08:56 - ERROR - ޻ظ +2025-01-11 17:08:57 - INFO - +2025-01-11 17:09:02 - ERROR - ޻ظ +2025-01-11 17:09:02 - INFO - +2025-01-11 17:09:07 - ERROR - ޻ظ +2025-01-11 17:09:07 - INFO - +2025-01-11 17:09:13 - ERROR - ޻ظ +2025-01-11 17:09:13 - INFO - +2025-01-11 17:09:18 - ERROR - ޻ظ +2025-01-11 17:09:18 - INFO - +2025-01-11 17:09:24 - ERROR - ޻ظ +2025-01-11 17:09:24 - INFO - +2025-01-11 17:09:29 - ERROR - ޻ظ +2025-01-11 17:09:29 - INFO - +2025-01-11 17:09:34 - ERROR - ޻ظ +2025-01-11 17:09:34 - INFO - +2025-01-11 17:09:40 - ERROR - ޻ظ +2025-01-11 17:09:40 - INFO - +2025-01-11 17:09:45 - ERROR - ޻ظ +2025-01-11 17:09:45 - INFO - +2025-01-11 17:09:51 - ERROR - ޻ظ +2025-01-11 17:09:51 - INFO - +2025-01-11 17:09:56 - ERROR - ޻ظ +2025-01-11 17:09:56 - INFO - +2025-01-11 17:10:01 - ERROR - ޻ظ +2025-01-11 17:10:02 - INFO - +2025-01-11 17:10:07 - ERROR - ޻ظ +2025-01-11 17:10:07 - INFO - +2025-01-11 17:10:12 - ERROR - ޻ظ +2025-01-11 17:10:12 - INFO - +2025-01-11 17:10:18 - ERROR - ޻ظ +2025-01-11 17:10:18 - INFO - +2025-01-11 17:10:23 - ERROR - ޻ظ +2025-01-11 17:10:23 - INFO - +2025-01-11 17:10:29 - ERROR - ޻ظ +2025-01-11 17:10:29 - INFO - +2025-01-11 17:10:34 - ERROR - ޻ظ +2025-01-11 17:10:34 - INFO - +2025-01-11 17:10:39 - ERROR - ޻ظ +2025-01-11 17:10:40 - INFO - +2025-01-11 17:10:45 - ERROR - ޻ظ +2025-01-11 17:10:45 - INFO - +2025-01-11 17:10:50 - ERROR - ޻ظ +2025-01-11 17:10:50 - INFO - +2025-01-11 17:10:56 - ERROR - ޻ظ +2025-01-11 17:10:56 - INFO - +2025-01-11 17:11:01 - ERROR - ޻ظ +2025-01-11 17:11:01 - INFO - +2025-01-11 17:11:07 - ERROR - ޻ظ +2025-01-11 17:11:07 - INFO - +2025-01-11 17:11:12 - ERROR - ޻ظ +2025-01-11 17:11:12 - INFO - +2025-01-11 17:11:17 - ERROR - ޻ظ +2025-01-11 17:11:17 - INFO - +2025-01-11 17:11:23 - ERROR - ޻ظ +2025-01-11 17:11:23 - INFO - +2025-01-11 17:11:28 - ERROR - ޻ظ +2025-01-11 17:11:28 - INFO - +2025-01-11 17:11:34 - ERROR - ޻ظ +2025-01-11 17:11:34 - INFO - +2025-01-11 17:11:39 - ERROR - ޻ظ +2025-01-11 17:11:39 - INFO - +2025-01-11 17:11:44 - ERROR - ޻ظ +2025-01-11 17:11:45 - INFO - +2025-01-11 17:11:50 - ERROR - ޻ظ +2025-01-11 17:11:50 - INFO - +2025-01-11 17:11:55 - ERROR - ޻ظ +2025-01-11 17:11:55 - INFO - +2025-01-11 17:12:01 - ERROR - ޻ظ +2025-01-11 17:12:01 - INFO - +2025-01-11 17:12:06 - ERROR - ޻ظ +2025-01-11 17:12:06 - INFO - +2025-01-11 17:12:12 - ERROR - ޻ظ +2025-01-11 17:12:12 - INFO - +2025-01-11 17:12:17 - ERROR - ޻ظ +2025-01-11 17:12:17 - INFO - +2025-01-11 17:12:22 - ERROR - ޻ظ +2025-01-11 17:12:22 - INFO - +2025-01-11 17:12:28 - ERROR - ޻ظ +2025-01-11 17:12:28 - INFO - +2025-01-11 17:12:33 - ERROR - ޻ظ +2025-01-11 17:12:33 - INFO - +2025-01-11 17:12:39 - ERROR - ޻ظ +2025-01-11 17:12:39 - INFO - +2025-01-11 17:12:44 - ERROR - ޻ظ +2025-01-11 17:12:44 - INFO - +2025-01-11 17:12:49 - ERROR - ޻ظ +2025-01-11 17:12:50 - INFO - +2025-01-11 17:12:55 - ERROR - ޻ظ +2025-01-11 17:12:55 - INFO - +2025-01-11 17:13:00 - ERROR - ޻ظ +2025-01-11 17:13:00 - INFO - +2025-01-11 17:13:06 - ERROR - ޻ظ +2025-01-11 17:13:06 - INFO - +2025-01-11 17:13:11 - ERROR - ޻ظ +2025-01-11 17:13:11 - INFO - +2025-01-11 17:13:17 - ERROR - ޻ظ +2025-01-11 17:13:17 - INFO - +2025-01-11 17:13:22 - ERROR - ޻ظ +2025-01-11 17:13:22 - INFO - +2025-01-11 17:13:27 - ERROR - ޻ظ +2025-01-11 17:13:28 - INFO - +2025-01-11 17:13:33 - ERROR - ޻ظ +2025-01-11 17:13:33 - INFO - +2025-01-11 17:13:38 - ERROR - ޻ظ +2025-01-11 17:13:38 - INFO - +2025-01-11 17:13:44 - ERROR - ޻ظ +2025-01-11 17:13:44 - INFO - +2025-01-11 17:13:49 - ERROR - ޻ظ +2025-01-11 17:13:49 - INFO - +2025-01-11 17:13:55 - ERROR - ޻ظ +2025-01-11 17:13:55 - INFO - +2025-01-11 17:14:00 - ERROR - ޻ظ +2025-01-11 17:14:00 - INFO - +2025-01-11 17:14:05 - ERROR - ޻ظ +2025-01-11 17:14:05 - INFO - +2025-01-11 17:14:11 - ERROR - ޻ظ +2025-01-11 17:14:11 - INFO - +2025-01-11 17:14:16 - ERROR - ޻ظ +2025-01-11 17:14:16 - INFO - +2025-01-11 17:14:22 - ERROR - ޻ظ +2025-01-11 17:14:22 - INFO - +2025-01-11 17:14:27 - ERROR - ޻ظ +2025-01-11 17:14:27 - INFO - +2025-01-11 17:14:32 - ERROR - ޻ظ +2025-01-11 17:14:33 - INFO - +2025-01-11 17:14:38 - ERROR - ޻ظ +2025-01-11 17:14:38 - INFO - +2025-01-11 17:14:43 - ERROR - ޻ظ +2025-01-11 17:14:43 - INFO - +2025-01-11 17:14:49 - ERROR - ޻ظ +2025-01-11 17:14:49 - INFO - +2025-01-11 17:14:54 - ERROR - ޻ظ +2025-01-11 17:14:54 - INFO - +2025-01-11 17:15:00 - ERROR - ޻ظ +2025-01-11 17:15:00 - INFO - +2025-01-11 17:15:05 - ERROR - ޻ظ +2025-01-11 17:15:05 - INFO - +2025-01-11 17:15:10 - ERROR - ޻ظ +2025-01-11 17:15:11 - INFO - +2025-01-11 17:15:16 - ERROR - ޻ظ +2025-01-11 17:15:16 - INFO - +2025-01-11 17:15:21 - ERROR - ޻ظ +2025-01-11 17:15:21 - INFO - +2025-01-11 17:15:27 - ERROR - ޻ظ +2025-01-11 17:15:27 - INFO - +2025-01-11 17:15:32 - ERROR - ޻ظ +2025-01-11 17:15:32 - INFO - +2025-01-11 17:15:38 - ERROR - ޻ظ +2025-01-11 17:15:38 - INFO - +2025-01-11 17:15:43 - ERROR - ޻ظ +2025-01-11 17:15:43 - INFO - +2025-01-11 17:15:48 - ERROR - ޻ظ +2025-01-11 17:15:48 - INFO - +2025-01-11 17:15:54 - ERROR - ޻ظ +2025-01-11 17:15:54 - INFO - +2025-01-11 17:15:59 - ERROR - ޻ظ +2025-01-11 17:15:59 - INFO - +2025-01-11 17:16:05 - ERROR - ޻ظ +2025-01-11 17:16:05 - INFO - +2025-01-11 17:16:10 - ERROR - ޻ظ +2025-01-11 17:16:10 - INFO - +2025-01-11 17:16:15 - ERROR - ޻ظ +2025-01-11 17:16:16 - INFO - +2025-01-11 17:16:21 - ERROR - ޻ظ +2025-01-11 17:16:21 - INFO - +2025-01-11 17:16:26 - ERROR - ޻ظ +2025-01-11 17:16:26 - INFO - +2025-01-11 17:16:32 - ERROR - ޻ظ +2025-01-11 17:16:32 - INFO - +2025-01-11 17:16:37 - ERROR - ޻ظ +2025-01-11 17:16:37 - INFO - +2025-01-11 17:16:43 - ERROR - ޻ظ +2025-01-11 17:16:43 - INFO - +2025-01-11 17:16:48 - ERROR - ޻ظ +2025-01-11 17:16:48 - INFO - +2025-01-11 17:16:53 - ERROR - ޻ظ +2025-01-11 17:16:54 - INFO - +2025-01-11 17:16:59 - ERROR - ޻ظ +2025-01-11 17:16:59 - INFO - +2025-01-11 17:17:04 - ERROR - ޻ظ +2025-01-11 17:17:04 - INFO - +2025-01-11 17:17:10 - ERROR - ޻ظ +2025-01-11 17:17:10 - INFO - +2025-01-11 17:17:15 - ERROR - ޻ظ +2025-01-11 17:17:15 - INFO - +2025-01-11 17:17:21 - ERROR - ޻ظ +2025-01-11 17:17:21 - INFO - +2025-01-11 17:17:26 - ERROR - ޻ظ +2025-01-11 17:17:26 - INFO - +2025-01-11 17:17:31 - ERROR - ޻ظ +2025-01-11 17:17:31 - INFO - +2025-01-11 17:17:37 - ERROR - ޻ظ +2025-01-11 17:17:37 - INFO - +2025-01-11 17:17:42 - ERROR - ޻ظ +2025-01-11 17:17:42 - INFO - +2025-01-11 17:17:48 - ERROR - ޻ظ +2025-01-11 17:17:48 - INFO - +2025-01-11 17:17:53 - ERROR - ޻ظ +2025-01-11 17:17:53 - INFO - +2025-01-11 17:17:58 - ERROR - ޻ظ +2025-01-11 17:17:59 - INFO - +2025-01-11 17:18:04 - ERROR - ޻ظ +2025-01-11 17:18:04 - INFO - +2025-01-11 17:18:09 - ERROR - ޻ظ +2025-01-11 17:18:09 - INFO - +2025-01-11 17:18:15 - ERROR - ޻ظ +2025-01-11 17:18:15 - INFO - +2025-01-11 17:18:20 - ERROR - ޻ظ +2025-01-11 17:18:20 - INFO - +2025-01-11 17:18:26 - ERROR - ޻ظ +2025-01-11 17:18:26 - INFO - +2025-01-11 17:18:31 - ERROR - ޻ظ +2025-01-11 17:18:31 - INFO - +2025-01-11 17:18:36 - ERROR - ޻ظ +2025-01-11 17:18:37 - INFO - +2025-01-11 17:18:42 - ERROR - ޻ظ +2025-01-11 17:18:42 - INFO - +2025-01-11 17:18:47 - ERROR - ޻ظ +2025-01-11 17:18:47 - INFO - +2025-01-11 17:18:53 - ERROR - ޻ظ +2025-01-11 17:18:53 - INFO - +2025-01-11 17:18:58 - ERROR - ޻ظ +2025-01-11 17:18:58 - INFO - +2025-01-11 17:19:04 - ERROR - ޻ظ +2025-01-11 17:19:04 - INFO - +2025-01-11 17:19:09 - ERROR - ޻ظ +2025-01-11 17:19:09 - INFO - +2025-01-11 17:19:14 - ERROR - ޻ظ +2025-01-11 17:19:14 - INFO - +2025-01-11 17:19:20 - ERROR - ޻ظ +2025-01-11 17:19:20 - INFO - +2025-01-11 17:19:25 - ERROR - ޻ظ +2025-01-11 17:19:25 - INFO - +2025-01-11 17:19:31 - ERROR - ޻ظ +2025-01-11 17:19:31 - INFO - +2025-01-11 17:19:36 - ERROR - ޻ظ +2025-01-11 17:19:36 - INFO - +2025-01-11 17:19:41 - ERROR - ޻ظ +2025-01-11 17:19:42 - INFO - +2025-01-11 17:19:47 - ERROR - ޻ظ +2025-01-11 17:19:47 - INFO - +2025-01-11 17:19:52 - ERROR - ޻ظ +2025-01-11 17:19:52 - INFO - +2025-01-11 17:19:58 - ERROR - ޻ظ +2025-01-11 17:19:58 - INFO - +2025-01-11 17:20:03 - ERROR - ޻ظ +2025-01-11 17:20:03 - INFO - +2025-01-11 17:20:09 - ERROR - ޻ظ +2025-01-11 17:20:09 - INFO - +2025-01-11 17:20:14 - ERROR - ޻ظ +2025-01-11 17:20:14 - INFO - +2025-01-11 17:20:19 - ERROR - ޻ظ +2025-01-11 17:20:20 - INFO - +2025-01-11 17:20:25 - ERROR - ޻ظ +2025-01-11 17:20:25 - INFO - +2025-01-11 17:20:30 - ERROR - ޻ظ +2025-01-11 17:20:30 - INFO - +2025-01-11 17:20:36 - ERROR - ޻ظ +2025-01-11 17:20:36 - INFO - +2025-01-11 17:20:41 - ERROR - ޻ظ +2025-01-11 17:20:41 - INFO - +2025-01-11 17:20:47 - ERROR - ޻ظ +2025-01-11 17:20:47 - INFO - +2025-01-11 17:20:52 - ERROR - ޻ظ +2025-01-11 17:20:52 - INFO - +2025-01-11 17:20:57 - ERROR - ޻ظ +2025-01-11 17:20:57 - INFO - +2025-01-11 17:21:03 - ERROR - ޻ظ +2025-01-11 17:21:03 - INFO - +2025-01-11 17:21:08 - ERROR - ޻ظ +2025-01-11 17:21:08 - INFO - +2025-01-11 17:21:14 - ERROR - ޻ظ +2025-01-11 17:21:14 - INFO - +2025-01-11 17:21:19 - ERROR - ޻ظ +2025-01-11 17:21:19 - INFO - +2025-01-11 17:21:24 - ERROR - ޻ظ +2025-01-11 17:21:25 - INFO - +2025-01-11 17:21:30 - ERROR - ޻ظ +2025-01-11 17:21:30 - INFO - +2025-01-11 17:21:35 - ERROR - ޻ظ +2025-01-11 17:21:35 - INFO - +2025-01-11 17:21:41 - ERROR - ޻ظ +2025-01-11 17:21:41 - INFO - +2025-01-11 17:21:46 - ERROR - ޻ظ +2025-01-11 17:21:46 - INFO - +2025-01-11 17:21:52 - ERROR - ޻ظ +2025-01-11 17:21:52 - INFO - +2025-01-11 17:21:57 - ERROR - ޻ظ +2025-01-11 17:21:57 - INFO - +2025-01-11 17:22:02 - ERROR - ޻ظ +2025-01-11 17:22:03 - INFO - +2025-01-11 17:22:08 - ERROR - ޻ظ +2025-01-11 17:22:08 - INFO - +2025-01-11 17:22:13 - ERROR - ޻ظ +2025-01-11 17:22:13 - INFO - +2025-01-11 17:22:19 - ERROR - ޻ظ +2025-01-11 17:22:19 - INFO - +2025-01-11 17:22:24 - ERROR - ޻ظ +2025-01-11 17:22:24 - INFO - +2025-01-11 17:22:30 - ERROR - ޻ظ +2025-01-11 17:22:30 - INFO - +2025-01-11 17:22:35 - ERROR - ޻ظ +2025-01-11 17:22:35 - INFO - +2025-01-11 17:22:40 - ERROR - ޻ظ +2025-01-11 17:22:40 - INFO - +2025-01-11 17:22:46 - ERROR - ޻ظ +2025-01-11 17:22:46 - INFO - +2025-01-11 17:22:51 - ERROR - ޻ظ +2025-01-11 17:22:51 - INFO - +2025-01-11 17:22:57 - ERROR - ޻ظ +2025-01-11 17:22:57 - INFO - +2025-01-11 17:23:02 - ERROR - ޻ظ +2025-01-11 17:23:02 - INFO - +2025-01-11 17:23:07 - ERROR - ޻ظ +2025-01-11 17:23:08 - INFO - +2025-01-11 17:23:13 - ERROR - ޻ظ +2025-01-11 17:23:13 - INFO - +2025-01-11 17:23:18 - ERROR - ޻ظ +2025-01-11 17:23:18 - INFO - +2025-01-11 17:23:24 - ERROR - ޻ظ +2025-01-11 17:23:24 - INFO - +2025-01-11 17:23:29 - ERROR - ޻ظ +2025-01-11 17:23:29 - INFO - +2025-01-11 17:23:35 - ERROR - ޻ظ +2025-01-11 17:23:35 - INFO - +2025-01-11 17:23:40 - ERROR - ޻ظ +2025-01-11 17:23:40 - INFO - +2025-01-11 17:23:45 - ERROR - ޻ظ +2025-01-11 17:23:46 - INFO - +2025-01-11 17:23:51 - ERROR - ޻ظ +2025-01-11 17:23:51 - INFO - +2025-01-11 17:23:56 - ERROR - ޻ظ +2025-01-11 17:23:56 - INFO - +2025-01-11 17:24:02 - ERROR - ޻ظ +2025-01-11 17:24:02 - INFO - +2025-01-11 17:24:07 - ERROR - ޻ظ +2025-01-11 17:24:07 - INFO - +2025-01-11 17:24:13 - ERROR - ޻ظ +2025-01-11 17:24:13 - INFO - +2025-01-11 17:24:18 - ERROR - ޻ظ +2025-01-11 17:24:18 - INFO - +2025-01-11 17:24:23 - ERROR - ޻ظ +2025-01-11 17:24:23 - INFO - +2025-01-11 17:24:29 - ERROR - ޻ظ +2025-01-11 17:24:29 - INFO - +2025-01-11 17:24:34 - ERROR - ޻ظ +2025-01-11 17:24:34 - INFO - +2025-01-11 17:24:40 - ERROR - ޻ظ +2025-01-11 17:24:40 - INFO - +2025-01-11 17:24:45 - ERROR - ޻ظ +2025-01-11 17:24:45 - INFO - +2025-01-11 17:24:50 - ERROR - ޻ظ +2025-01-11 17:24:51 - INFO - +2025-01-11 17:24:56 - ERROR - ޻ظ +2025-01-11 17:24:56 - INFO - +2025-01-11 17:25:01 - ERROR - ޻ظ +2025-01-11 17:25:01 - INFO - +2025-01-11 17:25:07 - ERROR - ޻ظ +2025-01-11 17:25:07 - INFO - +2025-01-11 17:25:12 - ERROR - ޻ظ +2025-01-11 17:25:12 - INFO - +2025-01-11 17:25:18 - ERROR - ޻ظ +2025-01-11 17:25:18 - INFO - +2025-01-11 17:25:23 - ERROR - ޻ظ +2025-01-11 17:25:23 - INFO - +2025-01-11 17:25:28 - ERROR - ޻ظ +2025-01-11 17:25:29 - INFO - +2025-01-11 17:25:34 - ERROR - ޻ظ +2025-01-11 17:25:34 - INFO - +2025-01-11 17:25:39 - ERROR - ޻ظ +2025-01-11 17:25:39 - INFO - +2025-01-11 17:25:45 - ERROR - ޻ظ +2025-01-11 17:25:45 - INFO - +2025-01-11 17:25:50 - ERROR - ޻ظ +2025-01-11 17:25:50 - INFO - +2025-01-11 17:25:56 - ERROR - ޻ظ +2025-01-11 17:25:56 - INFO - +2025-01-11 17:26:01 - ERROR - ޻ظ +2025-01-11 17:26:01 - INFO - +2025-01-11 17:26:06 - ERROR - ޻ظ +2025-01-11 17:26:06 - INFO - +2025-01-11 17:26:12 - ERROR - ޻ظ +2025-01-11 17:26:12 - INFO - +2025-01-11 17:26:17 - ERROR - ޻ظ +2025-01-11 17:26:17 - INFO - +2025-01-11 17:26:23 - ERROR - ޻ظ +2025-01-11 17:26:23 - INFO - +2025-01-11 17:26:28 - ERROR - ޻ظ +2025-01-11 17:26:28 - INFO - +2025-01-11 17:26:33 - ERROR - ޻ظ +2025-01-11 17:26:34 - INFO - +2025-01-11 17:26:39 - ERROR - ޻ظ +2025-01-11 17:26:39 - INFO - +2025-01-11 17:26:44 - ERROR - ޻ظ +2025-01-11 17:26:44 - INFO - +2025-01-11 17:26:50 - ERROR - ޻ظ +2025-01-11 17:26:50 - INFO - +2025-01-11 17:26:55 - ERROR - ޻ظ +2025-01-11 17:26:55 - INFO - +2025-01-11 17:27:01 - ERROR - ޻ظ +2025-01-11 17:27:01 - INFO - +2025-01-11 17:27:06 - ERROR - ޻ظ +2025-01-11 17:27:06 - INFO - +2025-01-11 17:27:11 - ERROR - ޻ظ +2025-01-11 17:27:12 - INFO - +2025-01-11 17:27:17 - ERROR - ޻ظ +2025-01-11 17:27:17 - INFO - +2025-01-11 17:27:22 - ERROR - ޻ظ +2025-01-11 17:27:22 - INFO - +2025-01-11 17:27:28 - ERROR - ޻ظ +2025-01-11 17:27:28 - INFO - +2025-01-11 17:27:33 - ERROR - ޻ظ +2025-01-11 17:27:33 - INFO - +2025-01-11 17:27:39 - ERROR - ޻ظ +2025-01-11 17:27:39 - INFO - +2025-01-11 17:27:44 - ERROR - ޻ظ +2025-01-11 17:27:44 - INFO - +2025-01-11 17:27:49 - ERROR - ޻ظ +2025-01-11 17:27:49 - INFO - +2025-01-11 17:27:55 - ERROR - ޻ظ +2025-01-11 17:27:55 - INFO - +2025-01-11 17:28:00 - ERROR - ޻ظ +2025-01-11 17:28:00 - INFO - +2025-01-11 17:28:06 - ERROR - ޻ظ +2025-01-11 17:28:06 - INFO - +2025-01-11 17:28:11 - ERROR - ޻ظ +2025-01-11 17:28:11 - INFO - +2025-01-11 17:28:16 - ERROR - ޻ظ +2025-01-11 17:28:17 - INFO - +2025-01-11 17:28:22 - ERROR - ޻ظ +2025-01-11 17:28:22 - INFO - +2025-01-11 17:28:27 - ERROR - ޻ظ +2025-01-11 17:28:27 - INFO - +2025-01-11 17:28:33 - ERROR - ޻ظ +2025-01-11 17:28:33 - INFO - +2025-01-11 17:28:38 - ERROR - ޻ظ +2025-01-11 17:28:38 - INFO - +2025-01-11 17:28:44 - ERROR - ޻ظ +2025-01-11 17:28:44 - INFO - +2025-01-11 17:28:49 - ERROR - ޻ظ +2025-01-11 17:28:49 - INFO - +2025-01-11 17:28:54 - ERROR - ޻ظ +2025-01-11 17:28:55 - INFO - +2025-01-11 17:29:00 - ERROR - ޻ظ +2025-01-11 17:29:00 - INFO - +2025-01-11 17:29:05 - ERROR - ޻ظ +2025-01-11 17:29:05 - INFO - +2025-01-11 17:29:11 - ERROR - ޻ظ +2025-01-11 17:29:11 - INFO - +2025-01-11 17:29:16 - ERROR - ޻ظ +2025-01-11 17:29:16 - INFO - +2025-01-11 17:29:21 - ERROR - ޻ظ +2025-01-11 17:29:22 - INFO - +2025-01-11 17:29:27 - ERROR - ޻ظ +2025-01-11 17:29:27 - INFO - +2025-01-11 17:29:32 - ERROR - ޻ظ +2025-01-11 17:29:32 - INFO - +2025-01-11 17:29:38 - ERROR - ޻ظ +2025-01-11 17:29:38 - INFO - +2025-01-11 17:29:43 - ERROR - ޻ظ +2025-01-11 17:29:43 - INFO - +2025-01-11 17:29:49 - ERROR - ޻ظ +2025-01-11 17:29:49 - INFO - +2025-01-11 17:29:54 - ERROR - ޻ظ +2025-01-11 17:29:54 - INFO - +2025-01-11 17:29:59 - ERROR - ޻ظ +2025-01-11 17:30:00 - INFO - +2025-01-11 17:30:05 - ERROR - ޻ظ +2025-01-11 17:30:05 - INFO - +2025-01-11 17:30:10 - ERROR - ޻ظ +2025-01-11 17:30:10 - INFO - +2025-01-11 17:30:16 - ERROR - ޻ظ +2025-01-11 17:30:16 - INFO - +2025-01-11 17:30:21 - ERROR - ޻ظ +2025-01-11 17:30:21 - INFO - +2025-01-11 17:30:27 - ERROR - ޻ظ +2025-01-11 17:30:27 - INFO - +2025-01-11 17:30:32 - ERROR - ޻ظ +2025-01-11 17:30:32 - INFO - +2025-01-11 17:30:37 - ERROR - ޻ظ +2025-01-11 17:30:37 - INFO - +2025-01-11 17:30:43 - ERROR - ޻ظ +2025-01-11 17:30:43 - INFO - +2025-01-11 17:30:48 - ERROR - ޻ظ +2025-01-11 17:30:48 - INFO - +2025-01-11 17:30:54 - ERROR - ޻ظ +2025-01-11 17:30:54 - INFO - +2025-01-11 17:30:59 - ERROR - ޻ظ +2025-01-11 17:30:59 - INFO - +2025-01-11 17:31:04 - ERROR - ޻ظ +2025-01-11 17:31:05 - INFO - +2025-01-11 17:31:10 - ERROR - ޻ظ +2025-01-11 17:31:10 - INFO - +2025-01-11 17:31:15 - ERROR - ޻ظ +2025-01-11 17:31:15 - INFO - +2025-01-11 17:31:21 - ERROR - ޻ظ +2025-01-11 17:31:21 - INFO - +2025-01-11 17:31:26 - ERROR - ޻ظ +2025-01-11 17:31:26 - INFO - +2025-01-11 17:31:32 - ERROR - ޻ظ +2025-01-11 17:31:32 - INFO - +2025-01-11 17:31:37 - ERROR - ޻ظ +2025-01-11 17:31:37 - INFO - +2025-01-11 17:31:42 - ERROR - ޻ظ +2025-01-11 17:31:42 - INFO - +2025-01-11 17:31:48 - ERROR - ޻ظ +2025-01-11 17:31:48 - INFO - +2025-01-11 17:31:53 - ERROR - ޻ظ +2025-01-11 17:31:53 - INFO - +2025-01-11 17:31:59 - ERROR - ޻ظ +2025-01-11 17:31:59 - INFO - +2025-01-11 17:32:04 - ERROR - ޻ظ +2025-01-11 17:32:04 - INFO - +2025-01-11 17:32:09 - ERROR - ޻ظ +2025-01-11 17:32:10 - INFO - +2025-01-11 17:32:15 - ERROR - ޻ظ +2025-01-11 17:32:15 - INFO - +2025-01-11 17:32:20 - ERROR - ޻ظ +2025-01-11 17:32:20 - INFO - +2025-01-11 17:32:26 - ERROR - ޻ظ +2025-01-11 17:32:26 - INFO - +2025-01-11 17:32:31 - ERROR - ޻ظ +2025-01-11 17:32:31 - INFO - +2025-01-11 17:32:37 - ERROR - ޻ظ +2025-01-11 17:32:37 - INFO - +2025-01-11 17:32:42 - ERROR - ޻ظ +2025-01-11 17:32:42 - INFO - +2025-01-11 17:32:47 - ERROR - ޻ظ +2025-01-11 17:32:48 - INFO - +2025-01-11 17:32:53 - ERROR - ޻ظ +2025-01-11 17:32:53 - INFO - +2025-01-11 17:32:58 - ERROR - ޻ظ +2025-01-11 17:32:58 - INFO - +2025-01-11 17:33:04 - ERROR - ޻ظ +2025-01-11 17:33:04 - INFO - +2025-01-11 17:33:09 - ERROR - ޻ظ +2025-01-11 17:33:09 - INFO - +2025-01-11 17:33:15 - ERROR - ޻ظ +2025-01-11 17:33:15 - INFO - +2025-01-11 17:33:20 - ERROR - ޻ظ +2025-01-11 17:33:20 - INFO - +2025-01-11 17:33:25 - ERROR - ޻ظ +2025-01-11 17:33:25 - INFO - +2025-01-11 17:33:31 - ERROR - ޻ظ +2025-01-11 17:33:31 - INFO - +2025-01-11 17:33:36 - ERROR - ޻ظ +2025-01-11 17:33:36 - INFO - +2025-01-11 17:33:42 - ERROR - ޻ظ +2025-01-11 17:33:42 - INFO - +2025-01-11 17:33:47 - ERROR - ޻ظ +2025-01-11 17:33:47 - INFO - +2025-01-11 17:33:52 - ERROR - ޻ظ +2025-01-11 17:33:53 - INFO - +2025-01-11 17:33:58 - ERROR - ޻ظ +2025-01-11 17:33:58 - INFO - +2025-01-11 17:34:03 - ERROR - ޻ظ +2025-01-11 17:34:03 - INFO - +2025-01-11 17:34:09 - ERROR - ޻ظ +2025-01-11 17:34:09 - INFO - +2025-01-11 17:34:14 - ERROR - ޻ظ +2025-01-11 17:34:14 - INFO - +2025-01-11 17:34:20 - ERROR - ޻ظ +2025-01-11 17:34:20 - INFO - +2025-01-11 17:34:25 - ERROR - ޻ظ +2025-01-11 17:34:25 - INFO - +2025-01-11 17:34:30 - ERROR - ޻ظ +2025-01-11 17:34:31 - INFO - +2025-01-11 17:34:36 - ERROR - ޻ظ +2025-01-11 17:34:36 - INFO - +2025-01-11 17:34:41 - ERROR - ޻ظ +2025-01-11 17:34:41 - INFO - +2025-01-11 17:34:47 - ERROR - ޻ظ +2025-01-11 17:34:47 - INFO - +2025-01-11 17:34:52 - ERROR - ޻ظ +2025-01-11 17:34:52 - INFO - +2025-01-11 17:34:57 - ERROR - ޻ظ +2025-01-11 17:34:58 - INFO - +2025-01-11 17:35:03 - ERROR - ޻ظ +2025-01-11 17:35:03 - INFO - +2025-01-11 17:35:08 - ERROR - ޻ظ +2025-01-11 17:35:08 - INFO - +2025-01-11 17:35:14 - ERROR - ޻ظ +2025-01-11 17:35:14 - INFO - +2025-01-11 17:35:19 - ERROR - ޻ظ +2025-01-11 17:35:19 - INFO - +2025-01-11 17:35:25 - ERROR - ޻ظ +2025-01-11 17:35:25 - INFO - +2025-01-11 17:35:30 - ERROR - ޻ظ +2025-01-11 17:35:30 - INFO - +2025-01-11 17:35:35 - ERROR - ޻ظ +2025-01-11 17:35:36 - INFO - +2025-01-11 17:35:41 - ERROR - ޻ظ +2025-01-11 17:35:41 - INFO - +2025-01-11 17:35:46 - ERROR - ޻ظ +2025-01-11 17:35:46 - INFO - +2025-01-11 17:35:52 - ERROR - ޻ظ +2025-01-11 17:35:52 - INFO - +2025-01-11 17:35:57 - ERROR - ޻ظ +2025-01-11 17:35:57 - INFO - +2025-01-11 17:36:03 - ERROR - ޻ظ +2025-01-11 17:36:03 - INFO - +2025-01-11 17:36:08 - ERROR - ޻ظ +2025-01-11 17:36:08 - INFO - +2025-01-11 17:36:13 - ERROR - ޻ظ +2025-01-11 17:36:13 - INFO - +2025-01-11 17:36:19 - ERROR - ޻ظ +2025-01-11 17:36:19 - INFO - +2025-01-11 17:36:24 - ERROR - ޻ظ +2025-01-11 17:36:24 - INFO - +2025-01-11 17:36:30 - ERROR - ޻ظ +2025-01-11 17:36:30 - INFO - +2025-01-11 17:36:35 - ERROR - ޻ظ +2025-01-11 17:36:35 - INFO - +2025-01-11 17:36:40 - ERROR - ޻ظ +2025-01-11 17:36:41 - INFO - +2025-01-11 17:36:46 - ERROR - ޻ظ +2025-01-11 17:36:46 - INFO - +2025-01-11 17:36:51 - ERROR - ޻ظ +2025-01-11 17:36:51 - INFO - +2025-01-11 17:36:57 - ERROR - ޻ظ +2025-01-11 17:36:57 - INFO - +2025-01-11 17:37:02 - ERROR - ޻ظ +2025-01-11 17:37:02 - INFO - +2025-01-11 17:37:08 - ERROR - ޻ظ +2025-01-11 17:37:08 - INFO - +2025-01-11 17:37:13 - ERROR - ޻ظ +2025-01-11 17:37:13 - INFO - +2025-01-11 17:37:18 - ERROR - ޻ظ +2025-01-11 17:37:18 - INFO - +2025-01-11 17:37:24 - ERROR - ޻ظ +2025-01-11 17:37:24 - INFO - +2025-01-11 17:37:29 - ERROR - ޻ظ +2025-01-11 17:37:29 - INFO - +2025-01-11 17:37:35 - ERROR - ޻ظ +2025-01-11 17:37:35 - INFO - +2025-01-11 17:37:40 - ERROR - ޻ظ +2025-01-11 17:37:40 - INFO - +2025-01-11 17:37:45 - ERROR - ޻ظ +2025-01-11 17:37:46 - INFO - +2025-01-11 17:37:51 - ERROR - ޻ظ +2025-01-11 17:37:51 - INFO - +2025-01-11 17:37:56 - ERROR - ޻ظ +2025-01-11 17:37:56 - INFO - +2025-01-11 17:38:02 - ERROR - ޻ظ +2025-01-11 17:38:02 - INFO - +2025-01-11 17:38:07 - ERROR - ޻ظ +2025-01-11 17:38:07 - INFO - +2025-01-11 17:38:13 - ERROR - ޻ظ +2025-01-11 17:38:13 - INFO - +2025-01-11 17:38:18 - ERROR - ޻ظ +2025-01-11 17:38:18 - INFO - +2025-01-11 17:38:23 - ERROR - ޻ظ +2025-01-11 17:38:24 - INFO - +2025-01-11 17:38:29 - ERROR - ޻ظ +2025-01-11 17:38:29 - INFO - +2025-01-11 17:38:34 - ERROR - ޻ظ +2025-01-11 17:38:34 - INFO - +2025-01-11 17:38:40 - ERROR - ޻ظ +2025-01-11 17:38:40 - INFO - +2025-01-11 17:38:45 - ERROR - ޻ظ +2025-01-11 17:38:45 - INFO - +2025-01-11 17:38:50 - ERROR - ޻ظ +2025-01-11 17:38:51 - INFO - +2025-01-11 17:38:56 - ERROR - ޻ظ +2025-01-11 17:38:56 - INFO - +2025-01-11 17:39:01 - ERROR - ޻ظ +2025-01-11 17:39:01 - INFO - +2025-01-11 17:39:07 - ERROR - ޻ظ +2025-01-11 17:39:07 - INFO - +2025-01-11 17:39:12 - ERROR - ޻ظ +2025-01-11 17:39:12 - INFO - +2025-01-11 17:39:18 - ERROR - ޻ظ +2025-01-11 17:39:18 - INFO - +2025-01-11 17:39:23 - ERROR - ޻ظ +2025-01-11 17:39:23 - INFO - +2025-01-11 17:39:28 - ERROR - ޻ظ +2025-01-11 17:39:29 - INFO - +2025-01-11 17:39:34 - ERROR - ޻ظ +2025-01-11 17:39:34 - INFO - +2025-01-11 17:39:39 - ERROR - ޻ظ +2025-01-11 17:39:39 - INFO - +2025-01-11 17:39:45 - ERROR - ޻ظ +2025-01-11 17:39:45 - INFO - +2025-01-11 17:39:50 - ERROR - ޻ظ +2025-01-11 17:39:50 - INFO - +2025-01-11 17:39:56 - ERROR - ޻ظ +2025-01-11 17:39:56 - INFO - +2025-01-11 17:40:01 - ERROR - ޻ظ +2025-01-11 17:40:01 - INFO - +2025-01-11 17:40:06 - ERROR - ޻ظ +2025-01-11 17:40:06 - INFO - +2025-01-11 17:40:12 - ERROR - ޻ظ +2025-01-11 17:40:12 - INFO - +2025-01-11 17:40:17 - ERROR - ޻ظ +2025-01-11 17:40:17 - INFO - +2025-01-11 17:40:23 - ERROR - ޻ظ +2025-01-11 17:40:23 - INFO - +2025-01-11 17:40:28 - ERROR - ޻ظ +2025-01-11 17:40:28 - INFO - +2025-01-11 17:40:33 - ERROR - ޻ظ +2025-01-11 17:40:34 - INFO - +2025-01-11 17:40:39 - ERROR - ޻ظ +2025-01-11 17:40:39 - INFO - +2025-01-11 17:40:44 - ERROR - ޻ظ +2025-01-11 17:40:44 - INFO - +2025-01-11 17:40:50 - ERROR - ޻ظ +2025-01-11 17:40:50 - INFO - +2025-01-11 17:40:55 - ERROR - ޻ظ +2025-01-11 17:40:55 - INFO - +2025-01-11 17:41:01 - ERROR - ޻ظ +2025-01-11 17:41:01 - INFO - +2025-01-11 17:41:06 - ERROR - ޻ظ +2025-01-11 17:41:06 - INFO - +2025-01-11 17:41:11 - ERROR - ޻ظ +2025-01-11 17:41:11 - INFO - +2025-01-11 17:41:17 - ERROR - ޻ظ +2025-01-11 17:41:17 - INFO - +2025-01-11 17:41:22 - ERROR - ޻ظ +2025-01-11 17:41:22 - INFO - +2025-01-11 17:41:28 - ERROR - ޻ظ +2025-01-11 17:41:28 - INFO - +2025-01-11 17:41:33 - ERROR - ޻ظ +2025-01-11 17:41:33 - INFO - +2025-01-11 17:41:38 - ERROR - ޻ظ +2025-01-11 17:41:39 - INFO - +2025-01-11 17:41:44 - ERROR - ޻ظ +2025-01-11 17:41:44 - INFO - +2025-01-11 17:41:49 - ERROR - ޻ظ +2025-01-11 17:41:49 - INFO - +2025-01-11 17:41:55 - ERROR - ޻ظ +2025-01-11 17:41:55 - INFO - +2025-01-11 17:42:00 - ERROR - ޻ظ +2025-01-11 17:42:00 - INFO - +2025-01-11 17:42:06 - ERROR - ޻ظ +2025-01-11 17:42:06 - INFO - +2025-01-11 17:42:11 - ERROR - ޻ظ +2025-01-11 17:42:11 - INFO - +2025-01-11 17:42:16 - ERROR - ޻ظ +2025-01-11 17:42:17 - INFO - +2025-01-11 17:42:22 - ERROR - ޻ظ +2025-01-11 17:42:22 - INFO - +2025-01-11 17:42:27 - ERROR - ޻ظ +2025-01-11 17:42:27 - INFO - +2025-01-11 17:42:33 - ERROR - ޻ظ +2025-01-11 17:42:33 - INFO - +2025-01-11 17:42:38 - ERROR - ޻ظ +2025-01-11 17:42:38 - INFO - +2025-01-11 17:42:43 - ERROR - ޻ظ +2025-01-11 17:42:44 - INFO - +2025-01-11 17:42:49 - ERROR - ޻ظ +2025-01-11 17:42:49 - INFO - +2025-01-11 17:42:54 - ERROR - ޻ظ +2025-01-11 17:42:54 - INFO - +2025-01-11 17:43:00 - ERROR - ޻ظ +2025-01-11 17:43:00 - INFO - +2025-01-11 17:43:05 - ERROR - ޻ظ +2025-01-11 17:43:05 - INFO - +2025-01-11 17:43:11 - ERROR - ޻ظ +2025-01-11 17:43:11 - INFO - +2025-01-11 17:43:16 - ERROR - ޻ظ +2025-01-11 17:43:16 - INFO - +2025-01-11 17:43:21 - ERROR - ޻ظ +2025-01-11 17:43:22 - INFO - +2025-01-11 17:43:27 - ERROR - ޻ظ +2025-01-11 17:43:27 - INFO - +2025-01-11 17:43:32 - ERROR - ޻ظ +2025-01-11 17:43:32 - INFO - +2025-01-11 17:43:38 - ERROR - ޻ظ +2025-01-11 17:43:38 - INFO - +2025-01-11 17:43:43 - ERROR - ޻ظ +2025-01-11 17:43:43 - INFO - +2025-01-11 17:43:49 - ERROR - ޻ظ +2025-01-11 17:43:49 - INFO - +2025-01-11 17:43:54 - ERROR - ޻ظ +2025-01-11 17:43:54 - INFO - +2025-01-11 17:43:59 - ERROR - ޻ظ +2025-01-11 17:43:59 - INFO - +2025-01-11 17:44:05 - ERROR - ޻ظ +2025-01-11 17:44:05 - INFO - +2025-01-11 17:44:10 - ERROR - ޻ظ +2025-01-11 17:44:10 - INFO - +2025-01-11 17:44:16 - ERROR - ޻ظ +2025-01-11 17:44:16 - INFO - +2025-01-11 17:44:21 - ERROR - ޻ظ +2025-01-11 17:44:21 - INFO - +2025-01-11 17:44:26 - ERROR - ޻ظ +2025-01-11 17:44:27 - INFO - +2025-01-11 17:44:32 - ERROR - ޻ظ +2025-01-11 17:44:32 - INFO - +2025-01-11 17:44:37 - ERROR - ޻ظ +2025-01-11 17:44:37 - INFO - +2025-01-11 17:44:43 - ERROR - ޻ظ +2025-01-11 17:44:43 - INFO - +2025-01-11 17:44:48 - ERROR - ޻ظ +2025-01-11 17:44:48 - INFO - +2025-01-11 17:44:54 - ERROR - ޻ظ +2025-01-11 17:44:54 - INFO - +2025-01-11 17:44:59 - ERROR - ޻ظ +2025-01-11 17:44:59 - INFO - +2025-01-11 17:45:04 - ERROR - ޻ظ +2025-01-11 17:45:05 - INFO - +2025-01-11 17:45:10 - ERROR - ޻ظ +2025-01-11 17:45:10 - INFO - +2025-01-11 17:45:15 - ERROR - ޻ظ +2025-01-11 17:45:15 - INFO - +2025-01-11 17:45:21 - ERROR - ޻ظ +2025-01-11 17:45:21 - INFO - +2025-01-11 17:45:26 - ERROR - ޻ظ +2025-01-11 17:45:26 - INFO - +2025-01-11 17:45:32 - ERROR - ޻ظ +2025-01-11 17:45:32 - INFO - +2025-01-11 17:45:37 - ERROR - ޻ظ +2025-01-11 17:45:37 - INFO - +2025-01-11 17:45:42 - ERROR - ޻ظ +2025-01-11 17:45:43 - INFO - +2025-01-11 17:45:48 - ERROR - ޻ظ +2025-01-11 17:45:48 - INFO - +2025-01-11 17:45:53 - ERROR - ޻ظ +2025-01-11 17:45:53 - INFO - +2025-01-11 17:45:59 - ERROR - ޻ظ +2025-01-11 17:45:59 - INFO - +2025-01-11 17:46:04 - ERROR - ޻ظ +2025-01-11 17:46:04 - INFO - +2025-01-11 17:46:10 - ERROR - ޻ظ +2025-01-11 17:46:10 - INFO - +2025-01-11 17:46:15 - ERROR - ޻ظ +2025-01-11 17:46:15 - INFO - +2025-01-11 17:46:20 - ERROR - ޻ظ +2025-01-11 17:46:20 - INFO - +2025-01-11 17:46:26 - ERROR - ޻ظ +2025-01-11 17:46:26 - INFO - +2025-01-11 17:46:31 - ERROR - ޻ظ +2025-01-11 17:46:31 - INFO - +2025-01-11 17:46:37 - ERROR - ޻ظ +2025-01-11 17:46:37 - INFO - +2025-01-11 17:46:42 - ERROR - ޻ظ +2025-01-11 17:46:42 - INFO - +2025-01-11 17:46:47 - ERROR - ޻ظ +2025-01-11 17:46:48 - INFO - +2025-01-11 17:46:53 - ERROR - ޻ظ +2025-01-11 17:46:53 - INFO - +2025-01-11 17:46:58 - ERROR - ޻ظ +2025-01-11 17:46:58 - INFO - +2025-01-11 17:47:04 - ERROR - ޻ظ +2025-01-11 17:47:04 - INFO - +2025-01-11 17:47:09 - ERROR - ޻ظ +2025-01-11 17:47:09 - INFO - +2025-01-11 17:47:15 - ERROR - ޻ظ +2025-01-11 17:47:15 - INFO - +2025-01-11 17:47:20 - ERROR - ޻ظ +2025-01-11 17:47:20 - INFO - +2025-01-11 17:47:25 - ERROR - ޻ظ +2025-01-11 17:47:25 - INFO - +2025-01-11 17:47:31 - ERROR - ޻ظ +2025-01-11 17:47:31 - INFO - +2025-01-11 17:47:36 - ERROR - ޻ظ +2025-01-11 17:47:36 - INFO - +2025-01-11 17:47:42 - ERROR - ޻ظ +2025-01-11 17:47:42 - INFO - +2025-01-11 17:47:47 - ERROR - ޻ظ +2025-01-11 17:47:47 - INFO - +2025-01-11 17:47:52 - ERROR - ޻ظ +2025-01-11 17:47:53 - INFO - +2025-01-11 17:47:58 - ERROR - ޻ظ +2025-01-11 17:47:58 - INFO - +2025-01-11 17:48:03 - ERROR - ޻ظ +2025-01-11 17:48:03 - INFO - +2025-01-11 17:48:09 - ERROR - ޻ظ +2025-01-11 17:48:09 - INFO - +2025-01-11 17:48:14 - ERROR - ޻ظ +2025-01-11 17:48:14 - INFO - +2025-01-11 17:48:20 - ERROR - ޻ظ +2025-01-11 17:48:20 - INFO - +2025-01-11 17:48:25 - ERROR - ޻ظ +2025-01-11 17:48:25 - INFO - +2025-01-11 17:48:30 - ERROR - ޻ظ +2025-01-11 17:48:31 - INFO - +2025-01-11 17:48:36 - ERROR - ޻ظ +2025-01-11 17:48:36 - INFO - +2025-01-11 17:48:41 - ERROR - ޻ظ +2025-01-11 17:48:41 - INFO - +2025-01-11 17:48:47 - ERROR - ޻ظ +2025-01-11 17:48:47 - INFO - +2025-01-11 17:48:52 - ERROR - ޻ظ +2025-01-11 17:48:52 - INFO - +2025-01-11 17:48:58 - ERROR - ޻ظ +2025-01-11 17:48:58 - INFO - +2025-01-11 17:49:03 - ERROR - ޻ظ +2025-01-11 17:49:03 - INFO - +2025-01-11 17:49:08 - ERROR - ޻ظ +2025-01-11 17:49:08 - INFO - +2025-01-11 17:49:14 - ERROR - ޻ظ +2025-01-11 17:49:14 - INFO - +2025-01-11 17:49:19 - ERROR - ޻ظ +2025-01-11 17:49:19 - INFO - +2025-01-11 17:49:25 - ERROR - ޻ظ +2025-01-11 17:49:25 - INFO - +2025-01-11 17:49:30 - ERROR - ޻ظ +2025-01-11 17:49:30 - INFO - +2025-01-11 17:49:35 - ERROR - ޻ظ +2025-01-11 17:49:36 - INFO - +2025-01-11 17:49:41 - ERROR - ޻ظ +2025-01-11 17:49:41 - INFO - +2025-01-11 17:49:46 - ERROR - ޻ظ +2025-01-11 17:49:46 - INFO - +2025-01-11 17:49:52 - ERROR - ޻ظ +2025-01-11 17:49:52 - INFO - +2025-01-11 17:49:57 - ERROR - ޻ظ +2025-01-11 17:49:57 - INFO - +2025-01-11 17:50:03 - ERROR - ޻ظ +2025-01-11 17:50:03 - INFO - +2025-01-11 17:50:08 - ERROR - ޻ظ +2025-01-11 17:50:08 - INFO - +2025-01-11 17:50:13 - ERROR - ޻ظ +2025-01-11 17:50:13 - INFO - +2025-01-11 17:50:19 - ERROR - ޻ظ +2025-01-11 17:50:19 - INFO - +2025-01-11 17:50:24 - ERROR - ޻ظ +2025-01-11 17:50:24 - INFO - +2025-01-11 17:50:30 - ERROR - ޻ظ +2025-01-11 17:50:30 - INFO - +2025-01-11 17:50:35 - ERROR - ޻ظ +2025-01-11 17:50:35 - INFO - +2025-01-11 17:50:40 - ERROR - ޻ظ +2025-01-11 17:50:41 - INFO - +2025-01-11 17:50:46 - ERROR - ޻ظ +2025-01-11 17:50:46 - INFO - +2025-01-11 17:50:51 - ERROR - ޻ظ +2025-01-11 17:50:51 - INFO - +2025-01-11 17:50:57 - ERROR - ޻ظ +2025-01-11 17:50:57 - INFO - +2025-01-11 17:51:02 - ERROR - ޻ظ +2025-01-11 17:51:02 - INFO - +2025-01-11 17:51:08 - ERROR - ޻ظ +2025-01-11 17:51:08 - INFO - +2025-01-11 17:51:13 - ERROR - ޻ظ +2025-01-11 17:51:13 - INFO - +2025-01-11 17:51:18 - ERROR - ޻ظ +2025-01-11 17:51:18 - INFO - +2025-01-11 17:51:24 - ERROR - ޻ظ +2025-01-11 17:51:24 - INFO - +2025-01-11 17:51:29 - ERROR - ޻ظ +2025-01-11 17:51:29 - INFO - +2025-01-11 17:51:35 - ERROR - ޻ظ +2025-01-11 17:51:35 - INFO - +2025-01-11 17:51:40 - ERROR - ޻ظ +2025-01-11 17:51:40 - INFO - +2025-01-11 17:51:45 - ERROR - ޻ظ +2025-01-11 17:51:46 - INFO - +2025-01-11 17:51:51 - ERROR - ޻ظ +2025-01-11 17:51:51 - INFO - +2025-01-11 17:51:56 - ERROR - ޻ظ +2025-01-11 17:51:56 - INFO - +2025-01-11 17:52:02 - ERROR - ޻ظ +2025-01-11 17:52:02 - INFO - +2025-01-11 17:52:07 - ERROR - ޻ظ +2025-01-11 17:52:07 - INFO - +2025-01-11 17:52:13 - ERROR - ޻ظ +2025-01-11 17:52:13 - INFO - +2025-01-11 17:52:18 - ERROR - ޻ظ +2025-01-11 17:52:18 - INFO - +2025-01-11 17:52:23 - ERROR - ޻ظ +2025-01-11 17:52:23 - INFO - +2025-01-11 17:52:29 - ERROR - ޻ظ +2025-01-11 17:52:29 - INFO - +2025-01-11 17:52:34 - ERROR - ޻ظ +2025-01-11 17:52:34 - INFO - +2025-01-11 17:52:40 - ERROR - ޻ظ +2025-01-11 17:52:40 - INFO - +2025-01-11 17:52:45 - ERROR - ޻ظ +2025-01-11 17:52:45 - INFO - +2025-01-11 17:52:50 - ERROR - ޻ظ +2025-01-11 17:52:51 - INFO - +2025-01-11 17:52:56 - ERROR - ޻ظ +2025-01-11 17:52:56 - INFO - +2025-01-11 17:53:01 - ERROR - ޻ظ +2025-01-11 17:53:01 - INFO - +2025-01-11 17:53:07 - ERROR - ޻ظ +2025-01-11 17:53:07 - INFO - +2025-01-11 17:53:12 - ERROR - ޻ظ +2025-01-11 17:53:12 - INFO - +2025-01-11 17:53:18 - ERROR - ޻ظ +2025-01-11 17:53:18 - INFO - +2025-01-11 17:53:23 - ERROR - ޻ظ +2025-01-11 17:53:23 - INFO - +2025-01-11 17:53:28 - ERROR - ޻ظ +2025-01-11 17:53:28 - INFO - +2025-01-11 17:53:34 - ERROR - ޻ظ +2025-01-11 17:53:34 - INFO - +2025-01-11 17:53:39 - ERROR - ޻ظ +2025-01-11 17:53:39 - INFO - +2025-01-11 17:53:45 - ERROR - ޻ظ +2025-01-11 17:53:45 - INFO - +2025-01-11 17:53:50 - ERROR - ޻ظ +2025-01-11 17:53:50 - INFO - +2025-01-11 17:53:55 - ERROR - ޻ظ +2025-01-11 17:53:56 - INFO - +2025-01-11 17:54:01 - ERROR - ޻ظ +2025-01-11 17:54:01 - INFO - +2025-01-11 17:54:06 - ERROR - ޻ظ +2025-01-11 17:54:06 - INFO - +2025-01-11 17:54:12 - ERROR - ޻ظ +2025-01-11 17:54:12 - INFO - +2025-01-11 17:54:17 - ERROR - ޻ظ +2025-01-11 17:54:17 - INFO - +2025-01-11 17:54:23 - ERROR - ޻ظ +2025-01-11 17:54:23 - INFO - +2025-01-11 17:54:28 - ERROR - ޻ظ +2025-01-11 17:54:28 - INFO - +2025-01-11 17:54:33 - ERROR - ޻ظ +2025-01-11 17:54:34 - INFO - +2025-01-11 17:54:39 - ERROR - ޻ظ +2025-01-11 17:54:39 - INFO - +2025-01-11 17:54:44 - ERROR - ޻ظ +2025-01-11 17:54:44 - INFO - +2025-01-11 17:54:50 - ERROR - ޻ظ +2025-01-11 17:54:50 - INFO - +2025-01-11 17:54:55 - ERROR - ޻ظ +2025-01-11 17:54:55 - INFO - +2025-01-11 17:55:00 - ERROR - ޻ظ +2025-01-11 17:55:01 - INFO - +2025-01-11 17:55:06 - ERROR - ޻ظ +2025-01-11 17:55:06 - INFO - +2025-01-11 17:55:11 - ERROR - ޻ظ +2025-01-11 17:55:11 - INFO - +2025-01-11 17:55:17 - ERROR - ޻ظ +2025-01-11 17:55:17 - INFO - +2025-01-11 17:55:22 - ERROR - ޻ظ +2025-01-11 17:55:22 - INFO - +2025-01-11 17:55:28 - ERROR - ޻ظ +2025-01-11 17:55:28 - INFO - +2025-01-11 17:55:33 - ERROR - ޻ظ +2025-01-11 17:55:33 - INFO - +2025-01-11 17:55:38 - ERROR - ޻ظ +2025-01-11 17:55:39 - INFO - +2025-01-11 17:55:44 - ERROR - ޻ظ +2025-01-11 17:55:44 - INFO - +2025-01-11 17:55:49 - ERROR - ޻ظ +2025-01-11 17:55:49 - INFO - +2025-01-11 17:55:55 - ERROR - ޻ظ +2025-01-11 17:55:55 - INFO - +2025-01-11 17:56:00 - ERROR - ޻ظ +2025-01-11 17:56:00 - INFO - +2025-01-11 17:56:06 - ERROR - ޻ظ +2025-01-11 17:56:06 - INFO - +2025-01-11 17:56:11 - ERROR - ޻ظ +2025-01-11 17:56:11 - INFO - +2025-01-11 17:56:16 - ERROR - ޻ظ +2025-01-11 17:56:16 - INFO - +2025-01-11 17:56:22 - ERROR - ޻ظ +2025-01-11 17:56:22 - INFO - +2025-01-11 17:56:27 - ERROR - ޻ظ +2025-01-11 17:56:27 - INFO - +2025-01-11 17:56:33 - ERROR - ޻ظ +2025-01-11 17:56:33 - INFO - +2025-01-11 17:56:38 - ERROR - ޻ظ +2025-01-11 17:56:38 - INFO - +2025-01-11 17:56:43 - ERROR - ޻ظ +2025-01-11 17:56:44 - INFO - +2025-01-11 17:56:49 - ERROR - ޻ظ +2025-01-11 17:56:49 - INFO - +2025-01-11 17:56:54 - ERROR - ޻ظ +2025-01-11 17:56:54 - INFO - +2025-01-11 17:57:00 - ERROR - ޻ظ +2025-01-11 17:57:00 - INFO - +2025-01-11 17:57:05 - ERROR - ޻ظ +2025-01-11 17:57:05 - INFO - +2025-01-11 17:57:11 - ERROR - ޻ظ +2025-01-11 17:57:11 - INFO - +2025-01-11 17:57:16 - ERROR - ޻ظ +2025-01-11 17:57:16 - INFO - +2025-01-11 17:57:21 - ERROR - ޻ظ +2025-01-11 17:57:21 - INFO - +2025-01-11 17:57:27 - ERROR - ޻ظ +2025-01-11 17:57:27 - INFO - +2025-01-11 17:57:32 - ERROR - ޻ظ +2025-01-11 17:57:32 - INFO - +2025-01-11 17:57:38 - ERROR - ޻ظ +2025-01-11 17:57:38 - INFO - +2025-01-11 17:57:43 - ERROR - ޻ظ +2025-01-11 17:57:43 - INFO - +2025-01-11 17:57:48 - ERROR - ޻ظ +2025-01-11 17:57:49 - INFO - +2025-01-11 17:57:54 - ERROR - ޻ظ +2025-01-11 17:57:54 - INFO - +2025-01-11 17:57:59 - ERROR - ޻ظ +2025-01-11 17:57:59 - INFO - +2025-01-11 17:58:05 - ERROR - ޻ظ +2025-01-11 17:58:05 - INFO - +2025-01-11 17:58:10 - ERROR - ޻ظ +2025-01-11 17:58:10 - INFO - +2025-01-11 17:58:16 - ERROR - ޻ظ +2025-01-11 17:58:16 - INFO - +2025-01-11 17:58:21 - ERROR - ޻ظ +2025-01-11 17:58:21 - INFO - +2025-01-11 17:58:26 - ERROR - ޻ظ +2025-01-11 17:58:26 - INFO - +2025-01-11 17:58:32 - ERROR - ޻ظ +2025-01-11 17:58:32 - INFO - +2025-01-11 17:58:37 - ERROR - ޻ظ +2025-01-11 17:58:37 - INFO - +2025-01-11 17:58:43 - ERROR - ޻ظ +2025-01-11 17:58:43 - INFO - +2025-01-11 17:58:48 - ERROR - ޻ظ +2025-01-11 17:58:48 - INFO - +2025-01-11 17:58:53 - ERROR - ޻ظ +2025-01-11 17:58:54 - INFO - +2025-01-11 17:58:59 - ERROR - ޻ظ +2025-01-11 17:58:59 - INFO - +2025-01-11 17:59:04 - ERROR - ޻ظ +2025-01-11 17:59:04 - INFO - +2025-01-11 17:59:10 - ERROR - ޻ظ +2025-01-11 17:59:10 - INFO - +2025-01-11 17:59:15 - ERROR - ޻ظ +2025-01-11 17:59:15 - INFO - +2025-01-11 17:59:21 - ERROR - ޻ظ +2025-01-11 17:59:21 - INFO - +2025-01-11 17:59:26 - ERROR - ޻ظ +2025-01-11 17:59:26 - INFO - +2025-01-11 17:59:31 - ERROR - ޻ظ +2025-01-11 17:59:32 - INFO - +2025-01-11 17:59:37 - ERROR - ޻ظ +2025-01-11 17:59:37 - INFO - +2025-01-11 17:59:42 - ERROR - ޻ظ +2025-01-11 17:59:42 - INFO - +2025-01-11 17:59:48 - ERROR - ޻ظ +2025-01-11 17:59:48 - INFO - +2025-01-11 17:59:53 - ERROR - ޻ظ +2025-01-11 17:59:53 - INFO - +2025-01-11 17:59:58 - ERROR - ޻ظ +2025-01-11 17:59:59 - INFO - +2025-01-11 18:00:04 - ERROR - ޻ظ +2025-01-11 18:00:04 - INFO - +2025-01-11 18:00:09 - ERROR - ޻ظ +2025-01-11 18:00:09 - INFO - +2025-01-11 18:00:15 - ERROR - ޻ظ +2025-01-11 18:00:15 - INFO - +2025-01-11 18:00:20 - ERROR - ޻ظ +2025-01-11 18:00:20 - INFO - +2025-01-11 18:00:26 - ERROR - ޻ظ +2025-01-11 18:00:26 - INFO - +2025-01-11 18:00:31 - ERROR - ޻ظ +2025-01-11 18:00:31 - INFO - +2025-01-11 18:00:36 - ERROR - ޻ظ +2025-01-11 18:00:37 - INFO - +2025-01-11 18:00:42 - ERROR - ޻ظ +2025-01-11 18:00:42 - INFO - +2025-01-11 18:00:47 - ERROR - ޻ظ +2025-01-11 18:00:47 - INFO - +2025-01-11 18:00:53 - ERROR - ޻ظ +2025-01-11 18:00:53 - INFO - +2025-01-11 18:00:58 - ERROR - ޻ظ +2025-01-11 18:00:58 - INFO - +2025-01-11 18:01:04 - ERROR - ޻ظ +2025-01-11 18:01:04 - INFO - +2025-01-11 18:01:09 - ERROR - ޻ظ +2025-01-11 18:01:09 - INFO - +2025-01-11 18:01:14 - ERROR - ޻ظ +2025-01-11 18:01:14 - INFO - +2025-01-11 18:01:20 - ERROR - ޻ظ +2025-01-11 18:01:20 - INFO - +2025-01-11 18:01:25 - ERROR - ޻ظ +2025-01-11 18:01:25 - INFO - +2025-01-11 18:01:31 - ERROR - ޻ظ +2025-01-11 18:01:31 - INFO - +2025-01-11 18:01:36 - ERROR - ޻ظ +2025-01-11 18:01:36 - INFO - +2025-01-11 18:01:41 - ERROR - ޻ظ +2025-01-11 18:01:42 - INFO - +2025-01-11 18:01:47 - ERROR - ޻ظ +2025-01-11 18:01:47 - INFO - +2025-01-11 18:01:52 - ERROR - ޻ظ +2025-01-11 18:01:52 - INFO - +2025-01-11 18:01:58 - ERROR - ޻ظ +2025-01-11 18:01:58 - INFO - +2025-01-11 18:02:03 - ERROR - ޻ظ +2025-01-11 18:02:03 - INFO - +2025-01-11 18:02:09 - ERROR - ޻ظ +2025-01-11 18:02:09 - INFO - +2025-01-11 18:02:14 - ERROR - ޻ظ +2025-01-11 18:02:14 - INFO - +2025-01-11 18:02:19 - ERROR - ޻ظ +2025-01-11 18:02:19 - INFO - +2025-01-11 18:02:25 - ERROR - ޻ظ +2025-01-11 18:02:25 - INFO - +2025-01-11 18:02:30 - ERROR - ޻ظ +2025-01-11 18:02:30 - INFO - +2025-01-11 18:02:36 - ERROR - ޻ظ +2025-01-11 18:02:36 - INFO - +2025-01-11 18:02:41 - ERROR - ޻ظ +2025-01-11 18:02:41 - INFO - +2025-01-11 18:02:46 - ERROR - ޻ظ +2025-01-11 18:02:47 - INFO - +2025-01-11 18:02:52 - ERROR - ޻ظ +2025-01-11 18:02:52 - INFO - +2025-01-11 18:02:57 - ERROR - ޻ظ +2025-01-11 18:02:57 - INFO - +2025-01-11 18:03:03 - ERROR - ޻ظ +2025-01-11 18:03:03 - INFO - +2025-01-11 18:03:08 - ERROR - ޻ظ +2025-01-11 18:03:08 - INFO - +2025-01-11 18:03:14 - ERROR - ޻ظ +2025-01-11 18:03:14 - INFO - +2025-01-11 18:03:19 - ERROR - ޻ظ +2025-01-11 18:03:19 - INFO - +2025-01-11 18:03:24 - ERROR - ޻ظ +2025-01-11 18:03:25 - INFO - +2025-01-11 18:03:30 - ERROR - ޻ظ +2025-01-11 18:03:30 - INFO - +2025-01-11 18:03:35 - ERROR - ޻ظ +2025-01-11 18:03:35 - INFO - +2025-01-11 18:03:41 - ERROR - ޻ظ +2025-01-11 18:03:41 - INFO - +2025-01-11 18:03:46 - ERROR - ޻ظ +2025-01-11 18:03:46 - INFO - +2025-01-11 18:03:51 - ERROR - ޻ظ +2025-01-11 18:03:52 - INFO - +2025-01-11 18:03:57 - ERROR - ޻ظ +2025-01-11 18:03:57 - INFO - +2025-01-11 18:04:02 - ERROR - ޻ظ +2025-01-11 18:04:02 - INFO - +2025-01-11 18:04:08 - ERROR - ޻ظ +2025-01-11 18:04:08 - INFO - +2025-01-11 18:04:13 - ERROR - ޻ظ +2025-01-11 18:04:13 - INFO - +2025-01-11 18:04:19 - ERROR - ޻ظ +2025-01-11 18:04:19 - INFO - +2025-01-11 18:04:24 - ERROR - ޻ظ +2025-01-11 18:04:24 - INFO - +2025-01-11 18:04:29 - ERROR - ޻ظ +2025-01-11 18:04:30 - INFO - +2025-01-11 18:04:35 - ERROR - ޻ظ +2025-01-11 18:04:35 - INFO - +2025-01-11 18:04:40 - ERROR - ޻ظ +2025-01-11 18:04:40 - INFO - +2025-01-11 18:04:46 - ERROR - ޻ظ +2025-01-11 18:04:46 - INFO - +2025-01-11 18:04:51 - ERROR - ޻ظ +2025-01-11 18:04:51 - INFO - +2025-01-11 18:04:56 - ERROR - ޻ظ +2025-01-11 18:04:57 - INFO - +2025-01-11 18:05:02 - ERROR - ޻ظ +2025-01-11 18:05:02 - INFO - +2025-01-11 18:05:07 - ERROR - ޻ظ +2025-01-11 18:05:07 - INFO - +2025-01-11 18:05:13 - ERROR - ޻ظ +2025-01-11 18:05:13 - INFO - +2025-01-11 18:05:18 - ERROR - ޻ظ +2025-01-11 18:05:18 - INFO - +2025-01-11 18:05:24 - ERROR - ޻ظ +2025-01-11 18:05:24 - INFO - +2025-01-11 18:05:29 - ERROR - ޻ظ +2025-01-11 18:05:29 - INFO - +2025-01-11 18:05:34 - ERROR - ޻ظ +2025-01-11 18:05:35 - INFO - +2025-01-11 18:05:40 - ERROR - ޻ظ +2025-01-11 18:05:40 - INFO - +2025-01-11 18:05:45 - ERROR - ޻ظ +2025-01-11 18:05:45 - INFO - +2025-01-11 18:05:51 - ERROR - ޻ظ +2025-01-11 18:05:51 - INFO - +2025-01-11 18:05:56 - ERROR - ޻ظ +2025-01-11 18:05:56 - INFO - +2025-01-11 18:06:02 - ERROR - ޻ظ +2025-01-11 18:06:02 - INFO - +2025-01-11 18:06:07 - ERROR - ޻ظ +2025-01-11 18:06:07 - INFO - +2025-01-11 18:06:12 - ERROR - ޻ظ +2025-01-11 18:06:12 - INFO - +2025-01-11 18:06:18 - ERROR - ޻ظ +2025-01-11 18:06:18 - INFO - +2025-01-11 18:06:23 - ERROR - ޻ظ +2025-01-11 18:06:23 - INFO - +2025-01-11 18:06:29 - ERROR - ޻ظ +2025-01-11 18:06:29 - INFO - +2025-01-11 18:06:34 - ERROR - ޻ظ +2025-01-11 18:06:34 - INFO - +2025-01-11 18:06:39 - ERROR - ޻ظ +2025-01-11 18:06:40 - INFO - +2025-01-11 18:06:45 - ERROR - ޻ظ +2025-01-11 18:06:45 - INFO - +2025-01-11 18:06:50 - ERROR - ޻ظ +2025-01-11 18:06:50 - INFO - diff --git a/main.py b/main.py index 10eec5a..a45839e 100644 --- a/main.py +++ b/main.py @@ -449,12 +449,12 @@ class MainWindow(QMainWindow, Ui_MainWindow): float(self.tableWidget_line_positions.item(row_i-1, 5).text()), float(self.tableWidget_line_positions.item(row_i-1, 6).text()), ) - self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.X, x5=p1.Y, x6=p1.Z, move_type=MoveType.Cure, speed=self.robotClient.debug_speed, p2=p2) + self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.U, x5=p1.V, x6=p1.W, move_type=MoveType.Cure, speed=self.robotClient.debug_speed, p2=p2) return - self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.X, x5=p1.Y, x6=p1.Z, move_type=MoveType.WORLD,speed=self.robotClient.debug_speed) + self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.U, x5=p1.V, x6=p1.W, move_type=MoveType.WORLD,speed=self.robotClient.debug_speed) return if lineType == 4: # 自由路径 - self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.X, x5=p1.Y, x6=p1.Z,move_type=MoveType.AXIS,speed=self.robotClient.debug_speed) + self.send_position_command(x1=p1.X, x2=p1.Y, x3=p1.Z, x4=p1.U, x5=p1.V, x6=p1.W, move_type=MoveType.AXIS,speed=self.robotClient.debug_speed) return def tabel_get_position(self,row_i): @@ -1653,6 +1653,7 @@ class MainWindow(QMainWindow, Ui_MainWindow): def send_clear_auto_command(self): clear_command = CMDInstructRequest() + clear_command.emptyList = '1' request_command = clear_command.toString() log.log_message(logging.INFO, Constant.str_sys_clearAlarm) self.robotClient.add_sendQuene(request_command)